VisualScriptPropertySet.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="VisualScriptPropertySet" inherits="VisualScriptNode" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd">
  3. <brief_description>
  4. A Visual Script node that sets a property of an [Object].
  5. </brief_description>
  6. <description>
  7. [VisualScriptPropertySet] can set the value of any property from the current object or other objects.
  8. </description>
  9. <tutorials>
  10. </tutorials>
  11. <methods>
  12. </methods>
  13. <members>
  14. <member name="assign_op" type="int" setter="set_assign_op" getter="get_assign_op" enum="VisualScriptPropertySet.AssignOp" default="0">
  15. The additional operation to perform when assigning. See [enum AssignOp] for options.
  16. </member>
  17. <member name="base_script" type="String" setter="set_base_script" getter="get_base_script">
  18. The script to be used when [member set_mode] is set to [constant CALL_MODE_INSTANCE].
  19. </member>
  20. <member name="base_type" type="String" setter="set_base_type" getter="get_base_type" default="&quot;Object&quot;">
  21. The base type to be used when [member set_mode] is set to [constant CALL_MODE_INSTANCE].
  22. </member>
  23. <member name="basic_type" type="int" setter="set_basic_type" getter="get_basic_type" enum="Variant.Type">
  24. The type to be used when [member set_mode] is set to [constant CALL_MODE_BASIC_TYPE].
  25. </member>
  26. <member name="index" type="String" setter="set_index" getter="get_index">
  27. The indexed name of the property to set. See [method Object.set_indexed] for details.
  28. </member>
  29. <member name="node_path" type="NodePath" setter="set_base_path" getter="get_base_path">
  30. The node path to use when [member set_mode] is set to [constant CALL_MODE_NODE_PATH].
  31. </member>
  32. <member name="property" type="String" setter="set_property" getter="get_property" default="&quot;&quot;">
  33. The name of the property to set. Changing this will clear [member index].
  34. </member>
  35. <member name="set_mode" type="int" setter="set_call_mode" getter="get_call_mode" enum="VisualScriptPropertySet.CallMode" default="0">
  36. [code]set_mode[/code] determines the target object on which the property will be set. See [enum CallMode] for options.
  37. </member>
  38. </members>
  39. <constants>
  40. <constant name="CALL_MODE_SELF" value="0" enum="CallMode">
  41. The property will be set on this [Object].
  42. </constant>
  43. <constant name="CALL_MODE_NODE_PATH" value="1" enum="CallMode">
  44. The property will be set on the given [Node] in the scene tree.
  45. </constant>
  46. <constant name="CALL_MODE_INSTANCE" value="2" enum="CallMode">
  47. The property will be set on an instanced node with the given type and script.
  48. </constant>
  49. <constant name="CALL_MODE_BASIC_TYPE" value="3" enum="CallMode">
  50. The property will be set on a GDScript basic type (e.g. [Vector2]).
  51. </constant>
  52. <constant name="ASSIGN_OP_NONE" value="0" enum="AssignOp">
  53. The property will be assigned regularly.
  54. </constant>
  55. <constant name="ASSIGN_OP_ADD" value="1" enum="AssignOp">
  56. The value will be added to the property. Equivalent of doing [code]+=[/code].
  57. </constant>
  58. <constant name="ASSIGN_OP_SUB" value="2" enum="AssignOp">
  59. The value will be subtracted from the property. Equivalent of doing [code]-=[/code].
  60. </constant>
  61. <constant name="ASSIGN_OP_MUL" value="3" enum="AssignOp">
  62. The property will be multiplied by the value. Equivalent of doing [code]*=[/code].
  63. </constant>
  64. <constant name="ASSIGN_OP_DIV" value="4" enum="AssignOp">
  65. The property will be divided by the value. Equivalent of doing [code]/=[/code].
  66. </constant>
  67. <constant name="ASSIGN_OP_MOD" value="5" enum="AssignOp">
  68. A modulo operation will be performed on the property and the value. Equivalent of doing [code]%=[/code].
  69. </constant>
  70. <constant name="ASSIGN_OP_SHIFT_LEFT" value="6" enum="AssignOp">
  71. The property will be binarly shifted to the left by the given value. Equivalent of doing [code]&lt;&lt;[/code].
  72. </constant>
  73. <constant name="ASSIGN_OP_SHIFT_RIGHT" value="7" enum="AssignOp">
  74. The property will be binarly shifted to the right by the given value. Equivalent of doing [code]&gt;&gt;[/code].
  75. </constant>
  76. <constant name="ASSIGN_OP_BIT_AND" value="8" enum="AssignOp">
  77. A binary [code]AND[/code] operation will be performed on the property. Equivalent of doing [code]&amp;=[/code].
  78. </constant>
  79. <constant name="ASSIGN_OP_BIT_OR" value="9" enum="AssignOp">
  80. A binary [code]OR[/code] operation will be performed on the property. Equivalent of doing [code]|=[/code].
  81. </constant>
  82. <constant name="ASSIGN_OP_BIT_XOR" value="10" enum="AssignOp">
  83. A binary [code]XOR[/code] operation will be performed on the property. Equivalent of doing [code]^=[/code].
  84. </constant>
  85. </constants>
  86. </class>