class_visualshadernodeintparameter.rst 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/4.2/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.2/doc/classes/VisualShaderNodeIntParameter.xml.
  6. .. _class_VisualShaderNodeIntParameter:
  7. VisualShaderNodeIntParameter
  8. ============================
  9. **Inherits:** :ref:`VisualShaderNodeParameter<class_VisualShaderNodeParameter>` **<** :ref:`VisualShaderNode<class_VisualShaderNode>` **<** :ref:`Resource<class_Resource>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. A visual shader node for shader parameter (uniform) of type :ref:`int<class_int>`.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. A :ref:`VisualShaderNodeParameter<class_VisualShaderNodeParameter>` of type :ref:`int<class_int>`. Offers additional customization for range of accepted values.
  15. .. rst-class:: classref-reftable-group
  16. Properties
  17. ----------
  18. .. table::
  19. :widths: auto
  20. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------+-----------+
  21. | :ref:`int<class_int>` | :ref:`default_value<class_VisualShaderNodeIntParameter_property_default_value>` | ``0`` |
  22. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------+-----------+
  23. | :ref:`bool<class_bool>` | :ref:`default_value_enabled<class_VisualShaderNodeIntParameter_property_default_value_enabled>` | ``false`` |
  24. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------+-----------+
  25. | :ref:`Hint<enum_VisualShaderNodeIntParameter_Hint>` | :ref:`hint<class_VisualShaderNodeIntParameter_property_hint>` | ``0`` |
  26. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------+-----------+
  27. | :ref:`int<class_int>` | :ref:`max<class_VisualShaderNodeIntParameter_property_max>` | ``100`` |
  28. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------+-----------+
  29. | :ref:`int<class_int>` | :ref:`min<class_VisualShaderNodeIntParameter_property_min>` | ``0`` |
  30. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------+-----------+
  31. | :ref:`int<class_int>` | :ref:`step<class_VisualShaderNodeIntParameter_property_step>` | ``1`` |
  32. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------+-----------+
  33. .. rst-class:: classref-section-separator
  34. ----
  35. .. rst-class:: classref-descriptions-group
  36. Enumerations
  37. ------------
  38. .. _enum_VisualShaderNodeIntParameter_Hint:
  39. .. rst-class:: classref-enumeration
  40. enum **Hint**:
  41. .. _class_VisualShaderNodeIntParameter_constant_HINT_NONE:
  42. .. rst-class:: classref-enumeration-constant
  43. :ref:`Hint<enum_VisualShaderNodeIntParameter_Hint>` **HINT_NONE** = ``0``
  44. The parameter will not constrain its value.
  45. .. _class_VisualShaderNodeIntParameter_constant_HINT_RANGE:
  46. .. rst-class:: classref-enumeration-constant
  47. :ref:`Hint<enum_VisualShaderNodeIntParameter_Hint>` **HINT_RANGE** = ``1``
  48. The parameter's value must be within the specified :ref:`min<class_VisualShaderNodeIntParameter_property_min>`/:ref:`max<class_VisualShaderNodeIntParameter_property_max>` range.
  49. .. _class_VisualShaderNodeIntParameter_constant_HINT_RANGE_STEP:
  50. .. rst-class:: classref-enumeration-constant
  51. :ref:`Hint<enum_VisualShaderNodeIntParameter_Hint>` **HINT_RANGE_STEP** = ``2``
  52. The parameter's value must be within the specified range, with the given :ref:`step<class_VisualShaderNodeIntParameter_property_step>` between values.
  53. .. _class_VisualShaderNodeIntParameter_constant_HINT_MAX:
  54. .. rst-class:: classref-enumeration-constant
  55. :ref:`Hint<enum_VisualShaderNodeIntParameter_Hint>` **HINT_MAX** = ``3``
  56. Represents the size of the :ref:`Hint<enum_VisualShaderNodeIntParameter_Hint>` enum.
  57. .. rst-class:: classref-section-separator
  58. ----
  59. .. rst-class:: classref-descriptions-group
  60. Property Descriptions
  61. ---------------------
  62. .. _class_VisualShaderNodeIntParameter_property_default_value:
  63. .. rst-class:: classref-property
  64. :ref:`int<class_int>` **default_value** = ``0``
  65. .. rst-class:: classref-property-setget
  66. - void **set_default_value** **(** :ref:`int<class_int>` value **)**
  67. - :ref:`int<class_int>` **get_default_value** **(** **)**
  68. Default value of this parameter, which will be used if not set externally. :ref:`default_value_enabled<class_VisualShaderNodeIntParameter_property_default_value_enabled>` must be enabled; defaults to ``0`` otherwise.
  69. .. rst-class:: classref-item-separator
  70. ----
  71. .. _class_VisualShaderNodeIntParameter_property_default_value_enabled:
  72. .. rst-class:: classref-property
  73. :ref:`bool<class_bool>` **default_value_enabled** = ``false``
  74. .. rst-class:: classref-property-setget
  75. - void **set_default_value_enabled** **(** :ref:`bool<class_bool>` value **)**
  76. - :ref:`bool<class_bool>` **is_default_value_enabled** **(** **)**
  77. If ``true``, the node will have a custom default value.
  78. .. rst-class:: classref-item-separator
  79. ----
  80. .. _class_VisualShaderNodeIntParameter_property_hint:
  81. .. rst-class:: classref-property
  82. :ref:`Hint<enum_VisualShaderNodeIntParameter_Hint>` **hint** = ``0``
  83. .. rst-class:: classref-property-setget
  84. - void **set_hint** **(** :ref:`Hint<enum_VisualShaderNodeIntParameter_Hint>` value **)**
  85. - :ref:`Hint<enum_VisualShaderNodeIntParameter_Hint>` **get_hint** **(** **)**
  86. Range hint of this node. Use it to customize valid parameter range.
  87. .. rst-class:: classref-item-separator
  88. ----
  89. .. _class_VisualShaderNodeIntParameter_property_max:
  90. .. rst-class:: classref-property
  91. :ref:`int<class_int>` **max** = ``100``
  92. .. rst-class:: classref-property-setget
  93. - void **set_max** **(** :ref:`int<class_int>` value **)**
  94. - :ref:`int<class_int>` **get_max** **(** **)**
  95. The maximum value this parameter can take. :ref:`hint<class_VisualShaderNodeIntParameter_property_hint>` must be either :ref:`HINT_RANGE<class_VisualShaderNodeIntParameter_constant_HINT_RANGE>` or :ref:`HINT_RANGE_STEP<class_VisualShaderNodeIntParameter_constant_HINT_RANGE_STEP>` for this to take effect.
  96. .. rst-class:: classref-item-separator
  97. ----
  98. .. _class_VisualShaderNodeIntParameter_property_min:
  99. .. rst-class:: classref-property
  100. :ref:`int<class_int>` **min** = ``0``
  101. .. rst-class:: classref-property-setget
  102. - void **set_min** **(** :ref:`int<class_int>` value **)**
  103. - :ref:`int<class_int>` **get_min** **(** **)**
  104. The minimum value this parameter can take. :ref:`hint<class_VisualShaderNodeIntParameter_property_hint>` must be either :ref:`HINT_RANGE<class_VisualShaderNodeIntParameter_constant_HINT_RANGE>` or :ref:`HINT_RANGE_STEP<class_VisualShaderNodeIntParameter_constant_HINT_RANGE_STEP>` for this to take effect.
  105. .. rst-class:: classref-item-separator
  106. ----
  107. .. _class_VisualShaderNodeIntParameter_property_step:
  108. .. rst-class:: classref-property
  109. :ref:`int<class_int>` **step** = ``1``
  110. .. rst-class:: classref-property-setget
  111. - void **set_step** **(** :ref:`int<class_int>` value **)**
  112. - :ref:`int<class_int>` **get_step** **(** **)**
  113. The step between parameter's values. Forces the parameter to be a multiple of the given value. :ref:`hint<class_VisualShaderNodeIntParameter_property_hint>` must be :ref:`HINT_RANGE_STEP<class_VisualShaderNodeIntParameter_constant_HINT_RANGE_STEP>` for this to take effect.
  114. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  115. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  116. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  117. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  118. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  119. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  120. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`