Examining the 3D Game Studio Toolkit
By Clayton E. Crooks II, August 01, 2000
3D Game Studio from Conitec is a Win32-based authoring system for creating interactive 3D applications. Clayton uses it to build a typical three-room world that includes actor movements.
Aug00: Programmer's Toolchest
<b>(a)</b>
// some string definitions
STRING info "We are learning WDL";
<b>(b)</b>
ACTION info
{
SET msg.VISIBLE,ON //Sets message on
SET msg.STRING,info; //Sets message to "We are learning WDL"
}
ON_P show_info;
Example 2: (a) WDL example that creates a string; (b) using the Action command.