can anyone tell me how to do a animate kids clap hand ? [import]uid: 22631 topic_id: 28224 reply_id: 328224[/import]
That’s a very vague question my friend.
If you just want to make an object move back and forth rapidly you could use this in an enterframe loop:
lefthand.x = 200 + math.sin(event.time/50)*20
In the above line 50 is the speed of the motion, 20 is the size of the motion and 200 is the offset. Experiment with these values according to your needs.
thomas [import]uid: 70134 topic_id: 28224 reply_id: 114040[/import]