|
frameStartframeStartgets/sets the frame the Ipo starts playing.Type: float Sample Code################ Get frameStart# get controllercontroller = GameLogic.getCurrentController()# get ipo actuator attached to the controller named WalkCycleact = controller.actuators["WalkCycle"]# get starting framestart = act.frameStart################ Set frameStart# get controllercontroller = GameLogic.getCurrentController()# get ipo actuator attached to the controller named WalkCycleact = controller.actuators["WalkCycle"]# set starting frameact.frameStart = 3.0 |