What single player features are there in Torque?
by Arko · in Torque 3D Beginner · 05/11/2013 (8:57 am) · 1 replies
Last year I spent a long time learning about Torque and building levels.. It was very enjoyable.. All I really achieved though was creating models, importing them into Torque and building big maps.
Just wondering, are there any tutorials on single player features and events so that I could potentially make an actual game?
Things such as:
- Bringing up dialog to state what to do.
- Making collectible items which show up on the screen HUD, for example: "Coins found: 14/100"
Has anyone succeeded in making simple single player games using Torque like this?
Thanks
Just wondering, are there any tutorials on single player features and events so that I could potentially make an actual game?
Things such as:
- Bringing up dialog to state what to do.
- Making collectible items which show up on the screen HUD, for example: "Coins found: 14/100"
Has anyone succeeded in making simple single player games using Torque like this?
Thanks
About the author
Ahsan Muzaheed
Default Studio Name
- Making collectible items which show up on the screen HUD, for example: "Coins found: 14/100""
that is very very simple.5 minute's task.
look into the function like:
function XXXX::onPickup(%this, %obj, %shape, %amount)
for bringing up dialogue u have to use pushDialogue().
Canvas.pushDialog(XXXGui);
better look into chat hud input.