summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/vector_inf.gd
blob: 039d51d9ed053bd1628b244966e4e23379f56000 (plain)
1
2
3
4
5
6
func test():
	var vec2: = Vector2.INF
	var vec3: = Vector3.INF

	print(vec2.x == INF)
	print(vec3.z == INF)