On 20/12/2013 at 08:39, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R15
Platform: Windows ; Mac ; Mac OSX ;
Language(s) : C++ ;
---------
Hi there,
I have created a PolygonObject :
int nbPts(8);
int nbFaces(12);
_melange_::BaseObject* c4dMesh = _melange_::BaseObject::Alloc(Opolygon);
((_melange_::PolygonObject* )c4dMesh)->ResizeObject(nbPts, nbFaces, 0);
How should I proceed to add PLA to my object?
Should I create a CTrack? But this requires a tag to be created and there is no PLA tag. Indeed when importing a FBX file with vertex cache, no PLA tag is created.
Should I then add a CCurve?
Any help would be appreciated, I couldn't find an example of creating PLA from scratch.
Regards