1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- @echo off
- REM
- REM Copyright (c) Contributors to the Open 3D Engine Project.
- REM For complete copyright and license terms please see the LICENSE at the root of this distribution.
- REM
- REM SPDX-License-Identifier: Apache-2.0 OR MIT
- REM
- REM
- :: Set up and run LY Python CMD prompt
- :: Sets up the DccScriptingInterface_Env,
- :: Puts you in the CMD within the dev environment
- :: Set up window
- TITLE O3DE DCC Scripting Interface Cmd
- :: Use obvious color to prevent confusion (Grey with Yellow Text)
- COLOR 8E
- echo.
- echo _____________________________________________________________________
- echo.
- echo ~ O3DE DCCsi CMD ...
- echo _____________________________________________________________________
- echo.
- %~d0
- cd %~dp0
- PUSHD %~dp0
- SETLOCAL ENABLEDELAYEDEXPANSION
- CALL %~dp0\Env_Core.bat
- CALL %~dp0\Env_Python.bat
- CALL %~dp0\Env_Qt.bat
- CALL %~dp0\Env_Maya.bat
- CALL %~dp0\Env_Substance.bat
- CALL %~dp0\Env_WingIDE.bat
- :: if the user has set up a custom env call it
- IF EXIST "%~dp0Env_Dev.bat" CALL %~dp0Env_Dev.bat
- :: Change to root dir
- CD /D %O3DE_PROJECT_PATH%
- :: Create command prompt with environment
- CALL %windir%\system32\cmd.exe
- ENDLOCAL
- :: Return to starting directory
- POPD
- :END_OF_FILE
|