Syntax

$object.threejsAccess($property)

Description

Reflection access to the object.

Parameters

Object name Type Type Description Mandatory Default
object A 3D object Object from which information is required. yes
property string Name of the property to be accessed. yes

Return value

Type: Object

Examples

Example 1

tx = ...;
cp = threejsCP(tx: $tx, classifiers: "important);

cp.threejsAccess("tx") == $tx; // true

Output: true