Can I do something like actions queue? For example, I have rotate action on click, but if user clicked 10 times, it’s must do all rotations step by step (Now it’s cancel last rotation action and starting do new by list clicking)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As i’m concerned there is no functionality in the SDK for that. But you can write a method which is when ever called pushing the action in an array. When done the finished-notification of the animation should return with an delegate a success state. Then you can pop the action from the array and look up if there was pushed another action meanwhile and start over again.
Hope this helps.