Hi all.
I need select different objects on scene and change character position for it(point and click). What best method for it? Make table with all selected objects coordiantes and detect using action coords or other method?
Hi all.
I need select different objects on scene and change character position for it(point and click). What best method for it? Make table with all selected objects coordiantes and detect using action coords or other method?
Hi!
It depends if you are doing it with gui or with game objects. If you do it with game objects I would recommend using collision.
Please see this post
Thank you.
I work with game objects. I read links thank you.
I’d recommend doing it with collision objects as in this example: https://github.com/britzl/publicexamples/tree/master/examples/click_and_drag
Thank you.
And new question - I can dynamicaly change collision form(box size for example)?
No, but you could have multiple collision objects with different shapes and only enable the on you need (using “enable” and “disable” messages).
Thank you. I try enable/disable collision objects.