I have an object that when it collides with a certain object does something, so for each object it collides with it has a different response. What would be the bes way of doing this. I could probably figure it out on my own but, this just seemed easier :P. [import]uid: 12041 topic_id: 4431 reply_id: 304431[/import]
Give each object a custom property. Check the DragPlatform included example
Eg
platform1.myName = “platform”
or
platform1.isPlatform = true
Then check this for your 2 objects in collision
[import]uid: 6645 topic_id: 4431 reply_id: 13817[/import]