mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Better format arguments in variant parser
This commit is contained in:
committed by
Michael Alexsander
parent
407229aeeb
commit
0ff4095b36
@@ -260,28 +260,28 @@
|
||||
<constant name="AXIS_Z" value="2">
|
||||
Enumerated value for the Z axis.
|
||||
</constant>
|
||||
<constant name="ZERO" value="Vector3i( 0, 0, 0 )">
|
||||
<constant name="ZERO" value="Vector3i(0, 0, 0)">
|
||||
Zero vector, a vector with all components set to [code]0[/code].
|
||||
</constant>
|
||||
<constant name="ONE" value="Vector3i( 1, 1, 1 )">
|
||||
<constant name="ONE" value="Vector3i(1, 1, 1)">
|
||||
One vector, a vector with all components set to [code]1[/code].
|
||||
</constant>
|
||||
<constant name="LEFT" value="Vector3i( -1, 0, 0 )">
|
||||
<constant name="LEFT" value="Vector3i(-1, 0, 0)">
|
||||
Left unit vector. Represents the local direction of left, and the global direction of west.
|
||||
</constant>
|
||||
<constant name="RIGHT" value="Vector3i( 1, 0, 0 )">
|
||||
<constant name="RIGHT" value="Vector3i(1, 0, 0)">
|
||||
Right unit vector. Represents the local direction of right, and the global direction of east.
|
||||
</constant>
|
||||
<constant name="UP" value="Vector3i( 0, 1, 0 )">
|
||||
<constant name="UP" value="Vector3i(0, 1, 0)">
|
||||
Up unit vector.
|
||||
</constant>
|
||||
<constant name="DOWN" value="Vector3i( 0, -1, 0 )">
|
||||
<constant name="DOWN" value="Vector3i(0, -1, 0)">
|
||||
Down unit vector.
|
||||
</constant>
|
||||
<constant name="FORWARD" value="Vector3i( 0, 0, -1 )">
|
||||
<constant name="FORWARD" value="Vector3i(0, 0, -1)">
|
||||
Forward unit vector. Represents the local direction of forward, and the global direction of north.
|
||||
</constant>
|
||||
<constant name="BACK" value="Vector3i( 0, 0, 1 )">
|
||||
<constant name="BACK" value="Vector3i(0, 0, 1)">
|
||||
Back unit vector. Represents the local direction of back, and the global direction of south.
|
||||
</constant>
|
||||
</constants>
|
||||
|
||||
Reference in New Issue
Block a user