Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 25/09/2012 at 03:10, xxxxxxxx wrote:
User Information: Cinema 4D Version: 13 Platform: Windows ; Language(s) : C++ ;
--------- Hi everybody,
I have a Deformer Plugin that deforming a object based on data in file. ObjectData::ModifyObject(........)
ObjectData::
It all works fine.
but , CINEMA 4D call ModifyObject(......) function only when modifier's parameter be changed.
I want call ModifyObject(.....) every frame.
It is similar to that below link.
http://www.animationsnippets.com/downloads.html MDDReader (v1.2)
On 25/09/2012 at 04:20, xxxxxxxx wrote:
You have to override ObjectData::CheckDirty(). The documentation of ObjectData::CheckDirty() contains an example code showing how to update a deformer every frame.
On 25/09/2012 at 04:49, xxxxxxxx wrote:
thx, Yannick Puech I have some mistake. It works perfectly fine.