How to make an entity collide with ONLY water?
How to make an entity collide with ONLY water?
I have an entity that I want to be completely intangible and able to be built on, but still removed if water is placed over/under it. This appears to require being given the water-tile collision mask, but doing that also makes it collide with everything that collides with water, which is almost everything. Is there a way to make the entity only collide with water?
Re: How to make an entity collide with ONLY water?
Try collision_mask = { "colliding-with-tiles-only", "water-tile" }, but I am not sure if it'll work exactly the way you want.
Re: How to make an entity collide with ONLY water?
It works! Thank you!