Skip to content

Commit b8273ed

Browse files
authored
Merge pull request #159 from Unity-Technologies/Uni-25868-release
Uni-25868-release
2 parents aa55f0b + 8038bda commit b8273ed

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

Assets/FbxExporters/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Copyright (c) 2017 Unity Technologies. All rights reserved.
55

66
See LICENSE.txt file for full license information.
77

8-
VERSION: build20170921001
8+
VERSION: sprint26
99

1010
Requirements
1111
------------

Assets/Integrations/Autodesk/maya/scripts/unityOneClick/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@defgroup UnityOneClickPluginVersion Plugin Version
2020
@ingroup UnityOneClickPlugin
2121
"""
22-
VERSION = 'build20170921001'
22+
VERSION = 'sprint26'
2323

2424
def pluginPrefix():
2525
"""

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,13 @@ file(GLOB PYC_FILES "${CMAKE_SOURCE_DIR}/Assets/Integrations/Autodesk/maya/scrip
115115
IF( PYC_FILES )
116116
file(REMOVE ${PYC_FILES})
117117
ENDIF()
118+
# remove .meta files from Integrations
119+
file(GLOB_RECURSE META_FILES "${CMAKE_SOURCE_DIR}/Assets/Integrations/*.meta")
118120

119121
add_custom_command(OUTPUT ${MAYA_INTEGRATION_ZIP_NAME}
122+
IF(META_FILES)
123+
COMMAND ${CMAKE_COMMAND} -E remove ${META_FILES}
124+
ENDIF
120125
COMMAND ${CMAKE_COMMAND} -E tar "cfv" ${CMAKE_SOURCE_DIR}/Assets/FbxExporters/${MAYA_INTEGRATION_ZIP_NAME} --format=zip
121126
"${CMAKE_SOURCE_DIR}/Assets/Integrations"
122127
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/Assets

RELEASE_NOTES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
RELEASE NOTES
22

3+
**Version**: sprint26
4+
5+
NEW FEATURES
6+
7+
* Fbx Export: add support for installing a zipped version of the Maya Unity Integration
8+
9+
FIXES
10+
11+
* Fbx Prefab: Properly handle updating Linked Prefab Instances that get nested inside other Prefabs.
12+
313
**Version**: 0.0.14a
414

515
NEW FEATURES
@@ -296,4 +306,4 @@ FIXES
296306
* Convert to Model : ensure only called once from context menu with multiple selection.
297307
* Convert to Model: ensure instanced prefab linked to prefab on disk
298308
* Convert to Model: don’t overwrite existing files for example, if “Sphere.fbx” exists then the file will be called “Sphere1.fbx”
299-
* Convert to Model: ensure order of copied siblings in matches original; ensure all GameObjects have unique names before export
309+
* Convert to Model: ensure order of copied siblings in matches original; ensure all GameObjects have unique names before export

scripts/file-search-replace.py

100755100644
File mode changed.

0 commit comments

Comments
 (0)