Function
Boolean Math.IsEqual(Object x, Object y)
<step condition="Math.IsEqual(Playbacks.Editor.Times.ChaseSpeed, 0.0)">...</step>
This step is only executed if the property Playbacks.Editor.Times.ChaseSpeed equals 0.0
As of version 10, it is possible to write conditions in a more modern way, which integrates such functions and logic operations as control structures:
<step> { if(Playbacks.Editor.Times.ChaseSpeed == 0.0) { ActionScript.SetProperty.Float("Playbacks.Editor.Times.ChaseSpeed", 1.0); } } </step>