Launch_Cmd.bat 941 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @echo off
  2. REM
  3. REM Copyright (c) Contributors to the Open 3D Engine Project.
  4. REM For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. REM
  6. REM SPDX-License-Identifier: Apache-2.0 OR MIT
  7. REM
  8. REM
  9. :: Set up and run project CMD prompt for TAtomTressFX Gem
  10. :: Puts you in the CMD within the dev environment
  11. :: Set up window
  12. TITLE AtomTressFX (Hair) Interface Cmd
  13. :: Use obvious color to prevent confusion (Grey with Yellow Text)
  14. COLOR 8E
  15. %~d0
  16. cd %~dp0
  17. PUSHD %~dp0
  18. :: Keep changes local
  19. SETLOCAL enableDelayedExpansion
  20. CALL %~dp0\Project_Env.bat
  21. echo.
  22. echo _____________________________________________________________________
  23. echo.
  24. echo ~ AtomTressFX (Hair) Interface CMD ...
  25. echo _____________________________________________________________________
  26. echo.
  27. :: Create command prompt with environment
  28. CALL %windir%\system32\cmd.exe
  29. ENDLOCAL
  30. :: Return to starting directory
  31. POPD
  32. :END_OF_FILE