/// <summary> /// This function is used to call into sub classes of /// VisBasePropertyTrigger, in order for them to set their /// target property to the new value specified. /// </summary> /// <param name="propertyValue">The new value to set the property to.</param> public override void SetProperty(float propertyValue) { VisPropertyHelper.SetLightProperty(GetComponent <Light>(), targetProperty, propertyValue); }
/// <summary> /// This function is used to call into sub classes of /// VisBasePropertyModifer, in order for them to set their /// target property to the new value specified. /// </summary> /// <param name="propertyValue">The new value to set the property to.</param> public override void SetProperty(float propertyValue) { VisPropertyHelper.SetLightProperty(light, targetProperty, propertyValue); }