Game Development Community

Tutorial Script

by Bob · in Torque Game Builder · 03/19/2005 (2:05 pm) · 3 replies

Hi,
I was wondering if someone could email me the completed script from the tutorial.
I want to compare it to mine.
cheese1113@comast.net

Bob

Edit: I guess I should put my email address :-)

#1
03/19/2005 (5:21 pm)
Rofl... you know what, can't beleive I didn't include it in the FAQ ... later I might go through the tutorial again and recreate it for you if no one posts one :)
#2
03/20/2005 (8:01 am)
Sounds good.

Bob
#3
03/20/2005 (8:46 am)
Here's some of mine, written in Python ;)

datablock("fxImageMapDatablock2D",
          name = "playershipImageMap",
          mode = "FULL",
          textureName = "~/client/images/playerShip")
player = new("fxStaticSprite2D",
          scenegraph = "t2dSceneGraph")
player.setPosition(-35, 0)
player.setSize(14, 7)
player.setImageMap("playershipImageMap")