Hello team, do you know of a script that could help me with the following: I want an object to be 3D or 2D; when touched, an object that is deactivated in the scene is activated. I have tried but I have not found anything in the documentation that could help me. To make objects disappear or destroy them, I have a script, but when creating a script to make an object appear, it is not possible.
2D objects like UI need to use a event listener with the click event from standard Javascript.
3D objects need to use the SCREEN_TOUCH_START event.
To delete an object you can pass it into world.deleteEntity(eid).