Free video Tutorials
Updating every hour!
45476 online video tutorials and counting.
Video Tutorials

Blender Tutorial - On-screen timer


How to make a cool timer show on ur screen, this is great for those times when ur guy needs to run out of the building before it blows up lol.

Here is the script:

own = GameLogic.getCurrentController().getOwner()

minutes = int(own.timer/60)
seconds = int(own.timer%60)

own.Text = str(minutes) + “:” + str(”%02i”% seconds)

Here is the webstie:
http://www.blendenzo.com

then find the tut on timers.

And remember to go to ace24ace1224 vid on pick ups to see how to do the text thing.