I never made very complex animations using POV - until now.
Because of my last one
http://www.emco-systems.de/trash/pinball1.avi
I got the idea of a program which is able to create a functional timeline in
POV.
look at this example:
/******************************************
 * timeline clock = 0.0 - 11.0
 ******************************************
 * 0-|-1-|-2-|-3-|-4-|-5-|-6-|-7...
 * |-----walk------|-stop--|
 * |--look around--|
 * |   |   |   |   |camzoom|
 * ...
 ******************************************/
The programm should be able to create something like this :
#switch (clock)
# range(0,4)
  walk(clock-0)
  look_around(clock-0)
#break
#range (4,6)
  ...
#break
....
#end
/************* MACROS ****************/
#macro walk(myclk)
 /*place code here */
#end
#macro look_around(myclk)
 /*place code here */
#end
Do you think this kind program is useful? If so, is there anyone who'll help
me to program this?
 
 Post a reply to this message 
 |