DeleteVariables();
by Yue -Rookie Torque 3D- · in Torque 3D Beginner · 08/29/2013 (11:16 am) · 2 replies
Hi, not quite understand if this should work this way.
I thought that deletes the contents of the variable.
$Message = "Hello"; DeleteVariables(); echo($Message); //Message displayed in console
I thought that deletes the contents of the variable.
About the author
http://www.iris3d.tk -Games Studios- <<I do not speak English: I use the google translator>> My goal as a rookie is knowing Torque 3D
#2
08/29/2013 (11:38 am)
For your example that would be:$Message = "Hello";
DeleteVariables("$Message");
echo($Message); // Echoes nothing
Torque Owner Lukas Joergensen
WinterLeaf Entertainment