We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bf145e commit 516a0a3Copy full SHA for 516a0a3
Assets/FbxExporters/README.txt
@@ -20,9 +20,13 @@ You can install the package and integrations from the command-line using the fol
20
MacOS:
21
22
# 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
+UNITY3D_VERSION=" 2017.1.0f3"
+
+# 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
30
fi
31
32
# Configure where unitypackage is located
0 commit comments