THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 10/08/2004 at 22:00, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.100
Platform: Windows ;
Language(s) : C.O.F.F.E.E ;
---------
Hey all. I'm writing a tutorial on C.O.F.F.E.E. that includes a method for holding on to object level data from one iteration to another. In this case, it is the falling speed of the object that increases as time progresses.
To remember the falling speed at the object level, I poke the last know value into the object's contatiner using:
the_object_container->SetData(32000, drop_speed);
On the next iteration, I read out that value, update it, and the cycle continues. Now, what I'd like to know is what data ID number range should I be using? I picked 32000 out of the air which is dangerous but ok for testing/learning. Suggestions?
Thanks.