Unique string identifier for the object
Set true
to make this object invisible to mouse click and hover picking events.
This can be useful if you use this object as a marker that you move to mouse coordinates, but don't want the object itself to affect future mouse events.
Whether this object is rendered
Location vector x component
Location vector y component
Location vector z component
Name of this object
Rotation quaternion w component
Rotation quaternion x component
Rotation quaternion y component
Rotation quaternion z component
Scale vector x component
Scale vector y component
Scale vector z component
Refresh object values to their current states in the embed. This might be needed if object is animated and you want to read its properties as it moves around.
(Normally values are updated only after calling listAnimations()
)
Using via then() callback:
object.refresh().then(() => {
// Log current location
console.log(object.locationY);
});
Or in async function:
await object.refresh();
// Log current location
console.log(object.locationY);
Whether this object has a mesh attached to it