speedometer

Tagged with terms:
2
points
Date Updated: 
07/04/2008
Author Name: 
GiaNT
Version: 
0.1

So simple!
It tells you the speed of the selected object in [km/h] if your scene in meter unit.
You can easily modify to [mph] or [m/s].

If you would like, upgrade it and share for all of us! ;)
GiaNT

Version Requirement: 
I think all of Max
AttachmentSize
speedometer.ms844 bytes

Insidious83's picture

Thank you for your script

Thank you for your script post! I am still trying to learn MAXScript.
I have one question: what does the 25 mean in v = (a*3.6*25) ?

a = change in distance position
3.6 = conversion of m/s to km/h
25 = ?

Thank you for your time.

giant's picture

this is because of the 25

this is because of the 25 frame/second

thanks for your question !!!
at least one more people use my stuff

i will upload a newer version in a few minute :)

peace, Giant

defex's picture

for 30 FPS change it to v =

for 30 FPS change it to

v = (a*3.6*30)

and add

lbl3.text = (v as string)

right under it to see the speed in the script rollout instead of having to look at the listener.

very handy script thanks!

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.