This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM ======================================== | |
REM EDITABLE PATHS - Edit these sections | |
REM ======================================== | |
REM Plugin name (.uplugin file name without extension) | |
set "PLUGIN_NAME=EDITHERE" | |
REM Engine directory | |
set "ENGINE_DIR=D:\Program Files\Epic Games\UE_EDITHERE" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
:: ======================================== | |
:: CONFIGURATION - Edit these variables | |
:: ======================================== | |
set "PROJECT_NAME=Darkisher" | |
set "UE_VERSION=5.6" | |
set "UE_PATH=D:\Program Files\Epic Games\UE_5.6" | |
:: ======================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Reset bind pose for selected joints.""" | |
import maya.cmds as cmds | |
cmds.dagPose(bindPose=True, reset=True) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Unity ## | |
*.cs diff=csharp text | |
*.cginc text | |
*.shader text | |
*.mat merge=unityyamlmerge eol=lf | |
*.anim merge=unityyamlmerge eol=lf | |
*.unity merge=unityyamlmerge eol=lf | |
*.prefab merge=unityyamlmerge eol=lf |