-
Notifications
You must be signed in to change notification settings - Fork 155
cameraHelper
Wiki » Internal Components » Objects » Helpers » cameraHelper
Creates a THREE.CameraHelper
string
required
: The name of the camera to visualize.
string
: Name for the 3D Object.
Default: ''
THREE.Vector3
: The position of the 3D object relative to the parent.
Default: new THREE.Vector3()
THREE.Euler
: The rotation of the 3D object relative to the parent, in euler form.
Default: new THREE.Euler()
THREE.Quaternion
: The rotation of the 3D object relative to the parent, in quaternion form.
Default: new THREE.Quaternion()
THREE.Vector3
: The scale of the 3D object relative to the parent.
Default: new THREE.Vector3(1, 1, 1)
THREE.Vector3
: The target position for the 3D object to look at.
If this property is set, THREE.Object3D#lookAt
will be called every time the value changes or the position of the object changes.
THREE.Matrix4
Default: new THREE.Matrix4()
bool
: Whether the 3D object will be culled by the camera frustum or not.
Default: true
bool
: Whether the 3D object will be visible or not.
Default: true
number
: The render order override for the 3D object.
bool
: Whether the 3D object will cast shadows or not.
Default: false
bool
: Whether the 3D object will receive shadows or not.
WARNING: This will trigger a refresh for any materials the object is using.
WARNING: If you use the same material for multiple objects and some of them receive shadows and some do not, it may cause adverse side effects. In that case, it is recommended to use different materials.
Default: false
===
View Source |
---|
Home | Usage | API Reference | Examples