diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-11-29 02:03:04 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-29 02:03:04 +0700 |
commit | 8ef4fc586a5731482618174d170c02ee7de6ca0a (patch) | |
tree | bad7820773cac2f8429480738224e3eec94cca69 /doc/classes/ShortCut.xml | |
parent | 24baf79c5e30b75f8370c24239a00085d7ad803f (diff) | |
parent | 7b5076050bfe9e102fa28fe2d1ecc068ab988214 (diff) |
Merge pull request #13320 from TwistedTwigleg/documentation_additions_two
Added documentation (World, Theme, StreamTexture, Sky, and ShortCut)
[ci skip]
Diffstat (limited to 'doc/classes/ShortCut.xml')
-rw-r--r-- | doc/classes/ShortCut.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/ShortCut.xml b/doc/classes/ShortCut.xml index 8f28d20fc2..ce6a001279 100644 --- a/doc/classes/ShortCut.xml +++ b/doc/classes/ShortCut.xml @@ -1,8 +1,11 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="ShortCut" inherits="Resource" category="Core" version="3.0-beta"> <brief_description> + A shortcut for binding input. </brief_description> <description> + A shortcut for binding input. + Shortcuts are commonly used for interacting with a [Control] element from a [InputEvent]. </description> <tutorials> </tutorials> @@ -13,6 +16,7 @@ <return type="String"> </return> <description> + Returns the Shortcut's [InputEvent] as a [String]. </description> </method> <method name="is_shortcut" qualifiers="const"> @@ -21,17 +25,21 @@ <argument index="0" name="event" type="InputEvent"> </argument> <description> + Returns [code]true[/code] if the Shortcut's [InputEvent] equals [code]event[/code]. </description> </method> <method name="is_valid" qualifiers="const"> <return type="bool"> </return> <description> + If [code]true[/code] this Shortcut is valid. </description> </method> </methods> <members> <member name="shortcut" type="InputEvent" setter="set_shortcut" getter="get_shortcut"> + The Shortcut's [InputEvent]. + Generally the [InputEvent] is a keyboard key, though it can be any [InputEvent]. </member> </members> <constants> |