Coordinates of this texture on the root texture, inverting the X axis

Property definitions

gamnit :: flat_core $ Texture :: texture_coords_invert_x
	# Coordinates of this texture on the `root` texture, inverting the X axis
	private var texture_coords_invert_x: Array[Float] is lazy do
		var l = offset_left
		var r = offset_right
		var b = offset_bottom
		var t = offset_top
		return [r, t,
		        l, t,
		        r, b,
		        l, b]
	end
lib/gamnit/flat/flat_core.nit:593,2--603,4