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.
42 lines
1008 B
Plaintext
42 lines
1008 B
Plaintext
@echo off
|
|
|
|
REM
|
|
REM Copyright (c) Contributors to the Open 3D Engine Project
|
|
REM
|
|
REM SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
REM For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
REM
|
|
REM
|
|
|
|
:: copy this file, rename to User_Env.bat (remove .template)
|
|
:: use this file to override any local properties that differ from base
|
|
|
|
:: Skip initialization if already completed
|
|
IF "%O3DE_USER_ENV_INIT%"=="1" GOTO :END_OF_FILE
|
|
|
|
:: Store current dir
|
|
%~d0
|
|
cd %~dp0
|
|
PUSHD %~dp0
|
|
|
|
SET O3DE_DEV=C:\Depot\o3de-engine
|
|
::SET OCIO_APPS=C:\Depot\o3de-engine\Tools\ColorGrading\ocio\build\src\apps
|
|
SET TAG_LY_BUILD_PATH=build
|
|
SET DCCSI_GDEBUG=True
|
|
SET DCCSI_DEV_MODE=True
|
|
|
|
set DCCSI_MAYA_VERSION=2020
|
|
|
|
:: set the your user name here for windows path
|
|
SET TAG_USERNAME=NOT_SET
|
|
SET DCCSI_PY_REV=rev1
|
|
SET DCCSI_PY_PLATFORM=windows
|
|
|
|
:: Set flag so we don't initialize dccsi environment twice
|
|
SET O3DE_USER_ENV_INIT=1
|
|
GOTO END_OF_FILE
|
|
|
|
:: Return to starting directory
|
|
POPD
|
|
|
|
:END_OF_FILE |