Skip to content

Commit 80e99ec

Browse files
authored
Merge pull request #83 from Unity-Technologies/Uni-22952_Sprint20_auto_updating_instanced_prefab
Uni-22952_Sprint20_auto_updating_instanced_prefab
2 parents d285be7 + 07798dc commit 80e99ec

File tree

2 files changed

+29
-9
lines changed

2 files changed

+29
-9
lines changed

Assets/FbxExporters/README.txt

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
Copyright (c) 2017 Unity Technologies. All rights reserved.
44

5-
Licensed under the ##LICENSENAME##.
6-
See LICENSE.md file for full license information.
5+
See LICENSE.txt file for full license information.
76

8-
**Version**: 0.0.9a-sprint20
7+
**Version**: 0.0.9a
98

109
Requirements
1110
------------
@@ -20,14 +19,19 @@ You can install the package and integrations from the command-line using the fol
2019
MacOS:
2120

2221
# Configure where Unity is installed
23-
# UNITY3D_VERSION=" 2017.1.0f3"
24-
UNITY3D_PATH="/Applications/Unity${UNITY3D_VERSION}/Unity.app/Contents/MacOS/Unity"
25-
26-
# Configure where unitypackage is located
27-
PACKAGE_PATH=`ls -t ~/Development/FbxExporters/FbxExporters_*.unitypackage | head -1`
22+
if [ ! -f "${UNITY3D_PATH}" ]; then
23+
UNITY3D_PATH="/Applications/Unity/Unity.app/Contents/MacOS/Unity"
24+
fi
2825

2926
# Configure which Unity project to install package
30-
PROJECT_PATH=~/Development/FbxExporters
27+
if [ ! -d "${PROJECT_PATH}" ]; then
28+
PROJECT_PATH=~/Development/FbxExporters
29+
fi
30+
31+
# Configure where unitypackage is located
32+
if [ ! -f "${PACKAGE_PATH}" ]; then
33+
PACKAGE_PATH=`ls -t ${PROJECT_PATH}/FbxExporters_*.unitypackage | head -1`
34+
fi
3135

3236
if [ ! -f "${UNITY3D_PATH}" ]; then
3337
echo "Unity is not installed"

RELEASE_NOTES.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
RELEASE NOTES
22

3+
**Version**: 0.0.9a
4+
5+
* Auto updater for instanced prefabs
6+
7+
Convert To Prefab will now create both a .prefab file and a FBX file from the selected GameObject hierarchy. The newly instanced prefab will automatically update whenever the FBX file changes. The instanced prefab will now include updates whenever objects are added or removed from the source FBX file.
8+
9+
* Maya-to-Unity turntable review workflow
10+
11+
Unity One Click integration for Maya 2017 now includes a "Review in Unity" feature.
12+
13+
You can review how your Model looks in Unity by clicking "Unity->Review" menu Item. This will start Unity and your Model will be loaded into "FbxExporters_TurnTableReview" scene. If the scene cannot be found then an empty scene will be created for you. If the scene contains a "Turntable" object then your model will be parented under that object.
14+
15+
While Unity has the "FbxExporters_TurnTableReview" scene active it will automatically update each time you publish a Model. If you've changed the active scene and want to go back to the reviewing you can run the command "FbxExporters->Turntable Review->Auto Load Last Saved Prefab". If you have unmodified scene changes in a previously saved scene then you'll be prompted to save these changes before the active scene is switched for you. If the scene is an Untitled but modified scene then these changes will be left as-is and the active scene will be switched.
16+
17+
* FBXSDK C# unitypackage with docs ready for release
18+
319
**Version**: 0.0.8a
420

521
NEW FEATURES

0 commit comments

Comments
 (0)