|
|||||
|
|
#1 |
|
Registered User
Join Date: Jun 2006
Posts: 51
Thanks: 1
Thanked 0 Times in 0 Posts
|
Counter Animation ?
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 ![]() |
|
|
|
|
|
#2 |
|
Registered User
Join Date: Aug 2005
Location: Netherlands
Posts: 1,638
Thanks: 5
Thanked 23 Times in 22 Posts
|
Isnt there a max script available for that? Take a look at http://www.scriptspot.com/ to see if you can find it there.
|
|
|
|
|
|
#3 |
|
Registered User
Join Date: Jun 2006
Posts: 51
Thanks: 1
Thanked 0 Times in 0 Posts
|
for a counter or to fix the Max bug ? I did the counter per script wich fills a spline with int numbers
Last edited by Hangs; 07-05-2009 at 01:55 PM.. |
|
|
|
|
|
#4 |
|
pythonized
Join Date: Mar 2007
Location: Granada, Spain
Posts: 48
Thanks: 0
Thanked 0 Times in 0 Posts
|
Maybe something like this?
Code:
(
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]
)
)
)
Last edited by csaez; 07-05-2009 at 04:32 PM.. |
|
|
|
|
|
#5 |
|
Registered User
Join Date: Jun 2006
Posts: 51
Thanks: 1
Thanked 0 Times in 0 Posts
|
Wow cool that works, Thank you !
Just a little change: Code:
(
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]
)
)
)
|
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|