ParadoxTR Posted August 12, 2015 Share Posted August 12, 2015 How can continuously rotate a picture(StaticImage), and then I stop it? Help Me Link to comment
Wumbaloo Posted August 12, 2015 Share Posted August 12, 2015 http://www.lua.org/pil/4.3.2.html Link to comment
KariiiM Posted August 12, 2015 Share Posted August 12, 2015 You want let the image spinning ? Link to comment
ParadoxTR Posted August 13, 2015 Author Share Posted August 13, 2015 You want let the image spinning ? yes. Link to comment
KariiiM Posted August 13, 2015 Share Posted August 13, 2015 local rotation = 0 rotation = rotation + 1 if ( rotation >= 359 ) then rotation = 0 end Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now