Flip 2d game object vertically

The solution that i found, and works, is flipping the sprite and the collision object.

		sprite.set_vflip("#sprite", true)
		physics.set_vflip("#collision_obj", true)

I consider this as a artial solution. It seems to work in my small example, but will prove impractical when dealing with complex game objects.

1 Like