You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
11 lines
330 B
Python
11 lines
330 B
Python
import maya.cmds as cmds
|
|
|
|
|
|
|
|
|
|
|
|
def setupScene():
|
|
|
|
#Setup scene to set timeline to 0-100 with current frame being 0 and the fps to be 30
|
|
|
|
cmds.currentUnit(time = 'ntsc')
|
|
|
|
cmds.playbackOptions(min = 0, max = 100, animationStartTime = 0, animationEndTime = 100)
|
|
|
|
cmds.currentTime(0)
|
|
|
|
|
|
|
|
|
|
|
|
setupScene() |