I have some problems with seting my entire layer to rotate on keyboard.
1. I'w managed to create rotation per 45� in arrow keys but i have problem if key is pressed again until first 45� transitiion is not yet finished... than mine 45� become eg. 45�+ 15� and everything falls apart.
im usnig this formula:
left arrow: set rotate to target angle to (immage.Angle + 45) % 360 , clockwise
right arrow: set rotate to target angle to (immage.Angle - 45) % 360 , clockwise
how can i make that mine arrow key rotates immage 45� and if pressed twice it wont apply rotation again untill reached exactly 45th degree?
2. i cant make my particles rotate (once they are created) along with rest of the screen? I'm assuming that i can only rotate point of origin and not each particle on the fly... is that correct?
Can particle rotation be even achieved at all in this manner?
Thank you!