Displaying output from engine
by Colossai Studios · in Torque Game Engine · 05/29/2005 (12:27 pm) · 3 replies
How can this easily be achieved?
Writing to the console somehow, or some other way?
Writing to the console somehow, or some other way?
About the author
Associate Simon Love
One easy way to test if your functions do what they're supposed to is to write
echo("This function works. Variable 1 equals " SPC %Var1);
this will output the text included between " " and any variable that you want to check up on, in this case %Var1.
Might not be the best way if you want to check constantly changing values, though, such as player position, speed, etc.
Hope this helps! If it doesn't, just clarify what data you want to output and the fine folks of this community will surely help you out :)