diff options
| author | Chris Bradfield | 2017-10-14 20:11:00 -0700 |
|---|---|---|
| committer | Chris Bradfield | 2017-10-15 08:59:38 -0700 |
| commit | 6172f09703847aeac556abf2fca5169e73d22f97 (patch) | |
| tree | 93b7fe8c4e1f84f7cc35081011d85f7ad8de0e13 /doc/classes/VisualScriptClassConstant.xml | |
| parent | b005c5fcec2a1bb6d0ed4ae9637012b3f15ac837 (diff) | |
| download | godot-6172f09703847aeac556abf2fca5169e73d22f97.tar.gz godot-6172f09703847aeac556abf2fca5169e73d22f97.tar.zst godot-6172f09703847aeac556abf2fca5169e73d22f97.zip | |
[DOCS] Update 12 VisualScript* nodes
Diffstat (limited to 'doc/classes/VisualScriptClassConstant.xml')
| -rw-r--r-- | doc/classes/VisualScriptClassConstant.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/doc/classes/VisualScriptClassConstant.xml b/doc/classes/VisualScriptClassConstant.xml index 70e7de5dd..0377fa8f0 100644 --- a/doc/classes/VisualScriptClassConstant.xml +++ b/doc/classes/VisualScriptClassConstant.xml @@ -1,10 +1,14 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="VisualScriptClassConstant" inherits="VisualScriptNode" category="Core" version="3.0.alpha.custom_build"> <brief_description> - A Visual Script node representing a constant from a class. + Gets a constant from a given class. </brief_description> <description> - A Visual Script node representing a constant from the classes, such as [@GlobalScope.TYPE_INT]. + This node returns a constant from a given class, such as [@GlobalScope.TYPE_INT]. See the given class' documentation for available constants. + [b]Input Ports:[/b] + none + [b]Output Ports:[/b] + - Data (variant): [code]value[/code] </description> <tutorials> </tutorials> @@ -42,10 +46,10 @@ </methods> <members> <member name="base_type" type="String" setter="set_base_type" getter="get_base_type"> - The type to get the constant from. + The constant's parent class. </member> <member name="constant" type="String" setter="set_class_constant" getter="get_class_constant"> - The name of the constant to return. + The constant to return. See the given class for its available constants. </member> </members> <constants> |
