Skip to content

Commit 516a0a3

Browse files
committed
CR change
1 parent 8bf145e commit 516a0a3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Assets/FbxExporters/README.txt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,13 @@ You can install the package and integrations from the command-line using the fol
2020
MacOS:
2121

2222
# Configure where Unity is installed
23-
UNITY3D_PATH=/Applications/Unity/Unity.app/Contents/MacOS/Unity
24-
if [ ! -f “${UNITY3D_PATH}” ]; then
25-
UNITY3D_PATH=/Applications/Unity\ 2017.1.0f3/Unity.app/Contents/MacOS/Unity
23+
UNITY3D_VERSION=" 2017.1.0f3"
24+
25+
# Try special versioned location
26+
UNITY3D_PATH="/Applications/Unity ${UNITY3D_VERSION}/Unity.app/Contents/MacOS/Unity"
27+
if [ ! -f "${UNITY3D_PATH}" ]; then
28+
# Fallback to standard location
29+
UNITY3D_PATH=/Applications/Unity/Unity.app/Contents/MacOS/Unity
2630
fi
2731

2832
# Configure where unitypackage is located

0 commit comments

Comments
 (0)