you forgot “rest cycle animation” usually it calls idle i know i just got bored and it was getting late.
how you might use a fsm to describe a walk and run animation file
you can have as many animations as you like in a single max file, the questions is how to tell them apart or how to indicate where each animation is i…
doh!!! just need s a sine wave with the correct period !
there’s the utilityinterface don’t know how you get there from c# .net
going by the c#.net flag wavers on here isn’t it suppose to be version independent ? perhaps that’s why versioning was never added to the wrapper ? :…
something odd with going via the definition I guess as it is shared across the structures maybe it’s changing the actual “definition”.
some get and set struct stuff here the long and the short of it would then be def_visible_primitive(setStructMember, “setStructMember”); Value* set…
setFaceSmoothGroup mesh face 0;
thinking about it a bit more that probably won’t grey the button out if it’s a standard rollout image button as it will still use it’s usual paint cal…
you need to find the HWnd of the control you want to disable then windows.sendMessage hwnd 10 0 0 may do the job, to enable windows.sendMessage hwn…
it’s probably using ICustomControl:Disable() which in turn probably calls the window api function EnableWindow(HWND hWnd, BOOL bEnable)
in coordsys world about $selection.center rotate $selection (EulerAngles 0 0 90)
to rotate around the origin you can use $.transform *= (EulerAngles 0 0 90) as Matrix3 or $selection.transform *= (EulerAngles 0 0 90) as Matrix3 …