MZ1
@mz1
New Member
Joined: Feb 14, 2024
Topics: 169 / Replies: 649
Reply
RE: C# biped interface

Now only problem is remained, the IIBipMaster class is deprecated in max 2022 and we should use new class IIBipDriver. Any idea how we can manage the …

3 years ago
Forum
Reply
RE: C# biped interface

After couple month struggling with this topic, I finally found a working solution (3dsmax 2022): using System.Windows; using Autodesk.Max; using Auto…

3 years ago
Forum
Reply
RE: C# biped interface

GetInterface will return null: using System.Windows; using Autodesk.Max; namespace TestLibrary { public static class TestClass { pri…

3 years ago
Forum
Reply
RE: C# biped interface

Following code should return “BipSlave_Control” (“BipDriven_Control” in 2022), but will return biped part name, for example “L Thigh”. using Autodesk…

3 years ago
Forum
Reply
RE: C# biped interface

Maybe IIBipDriver has different interface ID?

3 years ago
Forum
Reply
RE: C# biped interface

This should work right? private static readonly IInterface_ID I_BIPMASTER = globalInterface.Interface_ID.Create(0x9165, 0); private void Butt…

3 years ago
Forum
Reply
RE: C# biped interface

Thanks a lot! the TestApi,cpp is only exist in Max 2014 and below!

3 years ago
Forum
Reply
RE: C# biped interface

OK I found some classes like IIBipDriver, but I’m not sure how to use it. IIBipDriver iBipDriver = (IIBipDriver)coreInterface.GetSelNode(0); …

3 years ago
Forum
Topic
Forum
Replies: 10
Views: 57
Reply
RE: SDK-C# Set transform controller value

Klvnk: unsafe { object setXFormPacket = globalInterface.SetXFormPacket.Create(matrix,globalInterface.Matrix3.Create()); void* ptr = &setXFormPac…

3 years ago
Forum
Reply
RE: SDK-C# Set transform controller value

“object” type can not be declared as pointer.

3 years ago
Forum
Reply
RE: SDK-C# Set transform controller value

Klvnk: object* ptr = &setXFormPacket ; I got several errors for this: Compiler Error CS0214: Pointers and fixed size buffers may only be used…

3 years ago
Forum
Reply
3 years ago
Forum
Reply
RE: SDK-C# Set transform controller value

I tried something like this: ISetXFormPacket setXFormPacket2 = globalInterface.SetXFormPacket.Create(); setXFormPacket2.Aa = globalInterface….

3 years ago
Forum
Reply
RE: SDK-C# Set transform controller value

“&” in &pckt means we should send the pointer not variable, right? how we can do it in C#?

3 years ago
Forum
Page 9 / 55