You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The RCSS property transition does not support the all value correctly. Looking into the history of the PropertyParserAnimation, this must have broken when changing from property names to ids, since the parsing error arises here:
When i tried the small change of altering the parser validation to if ((!transition_list.all && target_property_ids.Empty()) || transition.duration <= 0.0f || transition.reverse_adjustment_factor < 0.0f || transition.reverse_adjustment_factor > 1.0f)
a vector out of bounds occurs as soon as we try to run the transition.
The text was updated successfully, but these errors were encountered:
The RCSS property
transition
does not support theall
value correctly. Looking into the history of the PropertyParserAnimation, this must have broken when changing from property names to ids, since the parsing error arises here:RmlUi/Source/Core/PropertyParserAnimation.cpp
Line 334 in 9f19544
Back when strings were used, a property with name "all" was added to the property list [1], which now is empty
[1] 93dd452#diff-563e418bcc69ad0b05163f26c0174b84ff59c845532cf151cbfc5c5e903d5427L266
When i tried the small change of altering the parser validation to
if ((!transition_list.all && target_property_ids.Empty()) || transition.duration <= 0.0f || transition.reverse_adjustment_factor < 0.0f || transition.reverse_adjustment_factor > 1.0f)
a vector out of bounds occurs as soon as we try to run the transition.
The text was updated successfully, but these errors were encountered: