Compatible With ScriptsCompatible With ExpressionsCompatible With The Command Line

object GetObject (string objName)

Return Value: The item named objName, or 0 if the item doesn't exist.

Arguments:

objName

The name of the object that you wish to select
 

This function selects the object with the specified name. If that object doesn't exist then 0 will be returned. You can test for failure with an if statement:

object obj  = GetObject("camera");
if( ! obj ) return(0);

NOTE: It is far more efficient to pass a script function an object than it is to use this function in the script. If your script will execute very often, every frame perhaps, then you will want to keep your use of GetObject to a minimum.

VERY IMPORTANT: DO NOT keep an object between calls to a script function, there is no guarantee that the object will still be there the next time the function is called. For example:

int someFunc( )
{
     static object obj = GetObject("Camera");
     // do something with obj
}

If the object "Camera" is deleted between calls to this function very bad things will happen. It is better to pass the Camera object as a variable to the function.

Converted from CHM to HTML with chm2web Pro 2.82 (unicode)