Purpose
Sets the value of an exposed property.
Syntax
void SetExposedPropertyValue(String ExposedUniqueIdentifier, float value);
- ExposedUniqueIdentifier : The unique identifier as set in the Exposed Parameter Settings.
- value: the float value to set to.
Example
function Update()
{
Document.SetExposedPropertyValue("Position Y::Transform::8a3535a2-ca67-11e5-9c04-184f32f761cc", 3.2);
}