Hiello.
With Maxscript in 3Ds Max, i can create an animation group, rename it, add nodes, but I can’t change the FrameStart and the FrameEnd parameters.
maxScriptManager = dotNetObject “Max2Babylon.MaxScriptManager”
aniGroup=maxScriptManager.CreateAnimationGroup()
maxScriptManager.RenameAnimationGroup aniGroup “TestAni”
testAni=maxScriptManager.GetAnimationGroupByName “TestAni”
testAni.framestart = 10 → this property exists but the value is not crorrectly stored by maxscript, it remains at 0 when i open the animation group window and also at the export ?
Any idea ?
Moreover, do you know where i can find all the properties/attributes of the dotNetObject “Max2Babylon.MaxScriptManager” ?(as “CreateAnimationGroup”, “RenameAnimationGroup”, etc.)
Thanks you.