User_Env.bat.template 1008 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @echo off
  2. REM
  3. REM Copyright (c) Contributors to the Open 3D Engine Project
  4. REM
  5. REM SPDX-License-Identifier: Apache-2.0 OR MIT
  6. REM For complete copyright and license terms please see the LICENSE at the root of this distribution.
  7. REM
  8. REM
  9. :: copy this file, rename to User_Env.bat (remove .template)
  10. :: use this file to override any local properties that differ from base
  11. :: Skip initialization if already completed
  12. IF "%O3DE_USER_ENV_INIT%"=="1" GOTO :END_OF_FILE
  13. :: Store current dir
  14. %~d0
  15. cd %~dp0
  16. PUSHD %~dp0
  17. SET O3DE_DEV=C:\Depot\o3de-engine
  18. ::SET OCIO_APPS=C:\Depot\o3de-engine\Tools\ColorGrading\ocio\build\src\apps
  19. SET TAG_LY_BUILD_PATH=build
  20. SET DCCSI_GDEBUG=True
  21. SET DCCSI_DEV_MODE=True
  22. set DCCSI_MAYA_VERSION=2020
  23. :: set the your user name here for windows path
  24. SET TAG_USERNAME=NOT_SET
  25. SET DCCSI_PY_REV=rev1
  26. SET DCCSI_PY_PLATFORM=windows
  27. :: Set flag so we don't initialize dccsi environment twice
  28. SET O3DE_USER_ENV_INIT=1
  29. GOTO END_OF_FILE
  30. :: Return to starting directory
  31. POPD
  32. :END_OF_FILE