I find another method which is even more functional: #include <maxscript/maxscript.h> #include <maxscript/macros/define_instantiation_functi…
Thank you, but the window will disappear when I set it’s parent. I’m looking for something like we do for the WPF window: (dotnetobject “System.Windo…
Thank you @Serejah, I will check it out.
Something like this? private IMatrix3 GetTMControllerValue(IINode node) { int time = coreInterface.Time; IInterval interval = globalInterface…
I tested on Max 2018 – 2022 and none of them is working. I can build and max will not crash, but nothing is changing in the scene.
aaandres: private static void SetTMControllerValue(IControl tMController, IMatrix3 matrix) { object matobj = (object)matrix; tMController.SetValue(i…
SetValue is the main problem
OK, I ended up with this, but super slow! private static string MatrixToString(IMatrix3 matrix) { string ss = “”; for (int i = 0; i < 4; i…
Serejah: GetAnimByHandle I couldn’t find that. where is it?
Maybe we can use that hack : ManagedServices.MaxscriptSDK.ExecuteStringMaxscriptQuery any idea how we can send transform controller handler value?
aaandres: public static unsafe void Test (IMatrix3 matrix, INode node) INode is not defined, so I used IINode instead. aaandres: void* na…
it should work, but actually got some errors.