SetExposedPropertyValue()
Updated: 4 Dec 2023
Updated: 4 Dec 2023
Sets the value of an exposed property.
void SetExposedPropertyValue(String exposed_unique_identifier, float value);
exposed_unique_identifier | The unique identifier as set in the Exposed Parameter Settings. |
value | the float value to set to. |
function Update()
{
Document.SetExposedPropertyValue("Position Y::Transform::8a3535a2-ca67-11e5-9c04-184f32f761cc", 3.2);
}
See Using JS to manipulate the scene for further details.