You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
doc: Fix wrong references found by new makerst.py
Thanks @PJB3005
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
A Visual Script node representing a constant from the base types.
|
||||
</brief_description>
|
||||
<description>
|
||||
A Visual Script node representing a constant from base types, such as [Vector3.AXIS_X].
|
||||
A Visual Script node representing a constant from base types, such as [constant Vector3.AXIS_X].
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
|
||||
@@ -193,13 +193,13 @@
|
||||
Serialize a [Variant] to a string.
|
||||
</constant>
|
||||
<constant name="STR_TO_VAR" value="59" enum="BuiltinFunc">
|
||||
Deserialize a [Variant] from a string serialized using [VAR_TO_STR].
|
||||
Deserialize a [Variant] from a string serialized using [code]VAR_TO_STR[/code].
|
||||
</constant>
|
||||
<constant name="VAR_TO_BYTES" value="60" enum="BuiltinFunc">
|
||||
Serialize a [Variant] to a [PoolByteArray].
|
||||
</constant>
|
||||
<constant name="BYTES_TO_VAR" value="61" enum="BuiltinFunc">
|
||||
Deserialize a [Variant] from a [PoolByteArray] serialized using [VAR_TO_BYTES].
|
||||
Deserialize a [Variant] from a [PoolByteArray] serialized using [code]VAR_TO_BYTES[/code].
|
||||
</constant>
|
||||
<constant name="COLORN" value="62" enum="BuiltinFunc">
|
||||
Return the [Color] with the given name and alpha ranging from 0 to 1. Note: names are defined in color_names.inc.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
Gets a constant from a given class.
|
||||
</brief_description>
|
||||
<description>
|
||||
This node returns a constant from a given class, such as [@GlobalScope.TYPE_INT]. See the given class' documentation for available constants.
|
||||
This node returns a constant from a given class, such as [constant @GlobalScope.TYPE_INT]. See the given class' documentation for available constants.
|
||||
[b]Input Ports:[/b]
|
||||
none
|
||||
[b]Output Ports:[/b]
|
||||
|
||||
Reference in New Issue
Block a user