Skip to content

Commit ad6fdde

Browse files
committed
Fixed the build scripts to point to unity 2019
1 parent eca773f commit ad6fdde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Build/python/mtm/util/UnityHelper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ def onUnityLog(self, logStr):
4747

4848
def _createUnityOpenCommand(self, args):
4949
if os.name == 'nt':
50-
return '"C:/Program Files/Unity/Hub/Editor/2018.1.0f2/Editor/Unity.exe" ' + args
50+
return '"C:/Program Files/Unity/Hub/Editor/2019.1.0f2/Editor/Unity.exe" ' + args
5151

52-
return 'open -n "/Applications/UnityInstalls/2018.1.0f2/Unity.app" --args ' + args
52+
return 'open -n "/Applications/UnityInstalls/2019.1.0f2/Unity.app" --args ' + args
5353

5454
def openUnity(self, projectPath, platform):
5555
args = '-buildTarget {0} -projectPath "{1}"'.format(self._getBuildTargetArg(platform), projectPath)

0 commit comments

Comments
 (0)