You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
886 B
Batchfile
46 lines
886 B
Batchfile
:: Need to set up
|
|
|
|
@echo off
|
|
|
|
REM
|
|
REM Copyright (c) Contributors to the Open 3D Engine Project
|
|
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 Lumberyard DCC Scripting Interface Cmd
|
|
:: Use obvious color to prevent confusion (Grey with Yellow Text)
|
|
COLOR 8E
|
|
|
|
%~d0
|
|
cd %~dp0
|
|
PUSHD %~dp0
|
|
|
|
:: Keep changes local
|
|
SETLOCAL enableDelayedExpansion
|
|
|
|
CALL %~dp0\Project_Env.bat
|
|
|
|
echo.
|
|
echo _____________________________________________________________________
|
|
echo.
|
|
echo ~ LY DCC Scripting Interface CMD ...
|
|
echo _____________________________________________________________________
|
|
echo.
|
|
|
|
:: Create command prompt with environment
|
|
CALL %windir%\system32\cmd.exe
|
|
|
|
ENDLOCAL
|
|
|
|
:: Return to starting directory
|
|
POPD
|
|
|
|
:END_OF_FILE
|