Hello!
Where also what function is responsible for rotate sprite in edititme if at me flag OF_ALLOWANGLES is established?
The layout editor handles all the rotations; if you enable the flag it just means that your plugin's angle can be changed (this can be accessed in the SDK the same as the x/y/width/height).
Develop games in your browser. Powerful, performant & highly capable.
When I enable flag OF_ALLOWANGLES TileBG looks so
<img src="http://i066.radikal.ru/0909/d1/cd17d8f1b8ad.png">
Canvas rotates and the picture is not present
i think enabling rotations just allows you to change the internal value of info.angle, but it does not handle actually drawing the rotations. if you want the tiled background to actually draw rotation, you would have to alter the ExtObject::Draw function to read info.angle and draw it differently according to the angle.
Thanks Lucid!