Input question - select game objects

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

2 Likes

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

1 Like

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.