Advertisement

Making objects move

Started by May 30, 2000 05:40 AM
0 comments, last by Castor3d 24 years, 8 months ago
So far I have only moved things linearly, but what I want to do is to define a ''path'' that I want the object(or light) follow. Is this possible? Does anyone have a solution? Btw I suck bigtime at maths.
All you need to do is just create an array contain the node of path. Like this :
Glint path[3][3] = {(1,1,1),(1,0,1),(0,0,1)};
Then write the code that move the object linearly follow the path defined in array.
That''s all.

This topic is closed to new replies.

Advertisement