+ some condition
-> Sprite: Set angle to Sprite.Value('xx')
if you want to set a private variable you can do it like this:
+ some condition
-> Sprite: Set 'xx' to Sprite.Angle
Or you can do the same in python
Sprite.SetValue('xx', Sprite.Angle)
and
Sprite.SetAngle(Sprite.Value('xx'))