diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-24 23:16:30 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-24 23:16:30 +0100 |
commit | 7dfba3cda9f13427f9f10a6eefbec52aef62274c (patch) | |
tree | 37231b14dfe24e8597ca5c780bb151696cda9b57 /modules/visual_script/doc_classes/VisualScriptFunctionCall.xml | |
parent | 2bc6db65c14f00de5a0349e910037ca2db7fc103 (diff) | |
download | redot-engine-7dfba3cda9f13427f9f10a6eefbec52aef62274c.tar.gz |
doc: Fix enum tags thanks to 2bc6db6
Diffstat (limited to 'modules/visual_script/doc_classes/VisualScriptFunctionCall.xml')
-rw-r--r-- | modules/visual_script/doc_classes/VisualScriptFunctionCall.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/modules/visual_script/doc_classes/VisualScriptFunctionCall.xml b/modules/visual_script/doc_classes/VisualScriptFunctionCall.xml index 4f1ddc78c0..cc2360fc2e 100644 --- a/modules/visual_script/doc_classes/VisualScriptFunctionCall.xml +++ b/modules/visual_script/doc_classes/VisualScriptFunctionCall.xml @@ -35,25 +35,25 @@ </member> </members> <constants> - <constant name="CALL_MODE_SELF" value="0"> + <constant name="CALL_MODE_SELF" value="0" enum="CallMode"> </constant> - <constant name="CALL_MODE_NODE_PATH" value="1"> + <constant name="CALL_MODE_NODE_PATH" value="1" enum="CallMode"> </constant> - <constant name="CALL_MODE_INSTANCE" value="2"> + <constant name="CALL_MODE_INSTANCE" value="2" enum="CallMode"> </constant> - <constant name="CALL_MODE_BASIC_TYPE" value="3"> + <constant name="CALL_MODE_BASIC_TYPE" value="3" enum="CallMode"> </constant> - <constant name="CALL_MODE_SINGLETON" value="4"> + <constant name="CALL_MODE_SINGLETON" value="4" enum="CallMode"> </constant> - <constant name="RPC_DISABLED" value="0"> + <constant name="RPC_DISABLED" value="0" enum="RPCCallMode"> </constant> - <constant name="RPC_RELIABLE" value="1"> + <constant name="RPC_RELIABLE" value="1" enum="RPCCallMode"> </constant> - <constant name="RPC_UNRELIABLE" value="2"> + <constant name="RPC_UNRELIABLE" value="2" enum="RPCCallMode"> </constant> - <constant name="RPC_RELIABLE_TO_ID" value="3"> + <constant name="RPC_RELIABLE_TO_ID" value="3" enum="RPCCallMode"> </constant> - <constant name="RPC_UNRELIABLE_TO_ID" value="4"> + <constant name="RPC_UNRELIABLE_TO_ID" value="4" enum="RPCCallMode"> </constant> </constants> </class> |