admin管理员组文章数量:1356522
Has anyone tried implementing a Core interface in the 3ds Max .NET SDK?
This is an example of the 3ds Max C++ SDK
#include "C:\Program Files\Autodesk\3ds Max 2025 SDK\maxsdk\include\ifnpub.h"
extern const Interface_ID MyInterface_Interface_ID;
class IMyInterface :
public FPInterfaceDesc
{
public:
IMyInterface():
FPInterfaceDesc(MyInterface_Interface_ID, _T("MyInterface"), 0, NULL, FP_CORE, p_end) { };
};
Do I need to inherit this interface in .NET?
using Autodesk.Max;
public class IMyInterface : IFPInterfaceDesc
{
...
}
本文标签: 3dsmaxHow to implement a FPInterfaceDesc Core interface in the 3ds Max NET SDKStack Overflow
版权声明:本文标题:3dsmax - How to implement a FPInterfaceDesc Core interface in the 3ds Max .NET SDK - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743995763a2572959.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论