I started to make simple operation program in CINEMA4D R16. CINEMA4D SDK description is polite, and it easy to build in Visual Studio 2013 Community. However, it need to be carefull to property change for project. Platform toolset is run in Visual Studio 2012(v110).
1 2 3 4 5 6 7 8 9 10 |
MessageDialog("MyPlugin Test"); // MessageDiarog GePrint("Hello World"); // Console BaseObject* obj = doc->GetActiveObject(); if(!obj){ GePrint("No active object"); return true; } GePrint(obj->GetName()); return true; |
First, I tryed typical program. mmm… very easy…
Next, I think that access to something parameters of object.