diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-24 15:41:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 15:41:57 +0200 |
commit | a4a4402201ff3a9f2dc6be062c45840176812439 (patch) | |
tree | 71c97ee71f390507ef3296942ad1f27d393ab100 /modules/visual_script/doc_classes/VisualScriptInputAction.xml | |
parent | 78f3e4cb6a2bf6136caa63defa139e41d9b36953 (diff) | |
parent | b1f392c25e214b331f87737d9e27aad30e95f201 (diff) |
Merge pull request #64822 from akien-mga/sunset-visual-script
Diffstat (limited to 'modules/visual_script/doc_classes/VisualScriptInputAction.xml')
-rw-r--r-- | modules/visual_script/doc_classes/VisualScriptInputAction.xml | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/modules/visual_script/doc_classes/VisualScriptInputAction.xml b/modules/visual_script/doc_classes/VisualScriptInputAction.xml deleted file mode 100644 index 51c2eaf353..0000000000 --- a/modules/visual_script/doc_classes/VisualScriptInputAction.xml +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> -<class name="VisualScriptInputAction" inherits="VisualScriptNode" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd"> - <brief_description> - A Visual Script node returning a state of an action. - </brief_description> - <description> - [VisualScriptInputAction] can be used to check if an action is pressed or released. - </description> - <tutorials> - </tutorials> - <members> - <member name="action" type="StringName" setter="set_action_name" getter="get_action_name" default="&"""> - Name of the action. - </member> - <member name="mode" type="int" setter="set_action_mode" getter="get_action_mode" enum="VisualScriptInputAction.Mode" default="0"> - State of the action to check. See [enum Mode] for options. - </member> - </members> - <constants> - <constant name="MODE_PRESSED" value="0" enum="Mode"> - [code]True[/code] if action is pressed. - </constant> - <constant name="MODE_RELEASED" value="1" enum="Mode"> - [code]True[/code] if action is released (i.e. not pressed). - </constant> - <constant name="MODE_JUST_PRESSED" value="2" enum="Mode"> - [code]True[/code] on the frame the action was pressed. - </constant> - <constant name="MODE_JUST_RELEASED" value="3" enum="Mode"> - [code]True[/code] on the frame the action was released. - </constant> - </constants> -</class> |