I am struggling with the water tool. i have made a hole i wish to fill with water but i am not sure how. i want to be able to jump in the water and “swim” around in it. Anyone know how i can do this??
a water tool in unity ?
Water is generally done by placing a water-material plane where you want it to be.
You’ll need script to handle “in water” detection (could be as simple as a y-position check or as complex as a raycast towards the nearest water plane) and animations to visualize swimming.
Try searching the scripting forum for water and you should find a good number of results.