PDA

View Full Version : Counter Animation ?


Hangs
07-05-2009, 11:35 AM
Hi,
i need some help do realize a Counter Animation. What i need are Numbers counting from 0 to 151.
I tryed to realize it in Max but there is a bug so when i try to Render the counter didnt refresh. Anyway now i need a workaround, right now i have 3ds Max, combustion, Liquid and Photoshop.

Is there any way to do a Tga-sequence or .avi with the mentiont Programms (or any others) ?

Thanks alot ;)

Nukie
07-05-2009, 01:27 PM
Isnt there a max script available for that? Take a look at http://www.scriptspot.com/ to see if you can find it there.

Hangs
07-05-2009, 01:46 PM
for a counter or to fix the Max bug ? I did the counter per script wich fills a spline with int numbers

csaez
07-05-2009, 04:26 PM
Maybe something like this?
(
textGrp = point()
for i=0 to 151 do
(
theText = text()
theText.parent = textGrp
theText.wireColor = [0,0,0]
theText.text = i as string
animate on
(
at time (sliderTime+i) theText.scale = [1,1,1]
at time ((sliderTime+i) + 1) theText.scale = [0,0,0]
at time ((sliderTime+i) - 1) theText.scale = [0,0,0]
if (sliderTime+i) > 0 then
at time 0 theText.scale = [0,0,0]
)
)
)

Hangs
07-05-2009, 10:22 PM
Wow cool that works, Thank you !

Just a little change:
(
textGrp = point()
for i=0 to 151 do
(
theText = text()
theText.parent = textGrp
theText.wireColor = [0,0,0]
theText.scale = [0,0,0]
theText.text = i as string
animate on
(
at time (sliderTime+i) theText.scale = [1,1,1]
at time ((sliderTime+i) + 1) theText.scale = [0,0,0]
at time ((sliderTime+i) - 1) theText.scale = [0,0,0]
)
)
)