Hi
I want to move a script that has the physic behavior normally (like a script that isnt influenced by gravity)
like 100 balls game on appstore
how can I have the glasses that have the physic behavior and move like that?
Set the physics object to immovable (this will stop physics from moving the object but still allow you to change it's position through other events).
I knew it but when it is immovable and I move it , it is buggy in collision with other scripts that have physic behavior
Develop games in your browser. Powerful, performant & highly capable.
disable physics while being dragged?
Windwalker
If you take a look at the game "100 balls" you will see there are cups that move around the screen. These cups are what Heska is trying to duplicate. The cups hold balls in them as they move and dump them elsewhere. If Heska sets the the physics to disabled, then any physics object in/on/colliding with the cup would simply fall through. Turning off the physics behavior is not an option.
Pin the balls to the cup when they are in, disable phsyics. Later when you have to free the balls, unpin them maybe?