class_texturebutton.rst 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the TextureButton.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_TextureButton:
  5. TextureButton
  6. =============
  7. **Inherits:** :ref:`BaseButton<class_basebutton>` **<** :ref:`Control<class_control>` **<** :ref:`CanvasItem<class_canvasitem>` **<** :ref:`Node<class_node>` **<** :ref:`Object<class_object>`
  8. **Category:** Core
  9. Brief Description
  10. -----------------
  11. Texture-based button. Supports Pressed, Hover, Disabled and Focused states.
  12. Member Variables
  13. ----------------
  14. .. _class_TextureButton_expand:
  15. - :ref:`bool<class_bool>` **expand** - If ``true`` the texture stretches to the edges of the node's bounding rectangle using the :ref:`stretch_mode<class_TextureButton_stretch_mode>`. If ``false`` the texture will not scale with the node. Default value: ``false``.
  16. .. _class_TextureButton_stretch_mode:
  17. - :ref:`StretchMode<enum_texturebutton_stretchmode>` **stretch_mode** - Controls the texture's behavior when you resize the node's bounding rectangle, **only if** :ref:`expand<class_TextureButton_expand>` is ``true``. Set it to one of the ``STRETCH_*`` constants. See the constants to learn more.
  18. .. _class_TextureButton_texture_click_mask:
  19. - :ref:`BitMap<class_bitmap>` **texture_click_mask** - Pure black and white Bitmap image to use for click detection. On the mask, white pixels represent the button's clickable area. Use it to create buttons with curved shapes.
  20. .. _class_TextureButton_texture_disabled:
  21. - :ref:`Texture<class_texture>` **texture_disabled** - Texture to display when the node is disabled. See :ref:`BaseButton.disabled<class_BaseButton_disabled>`.
  22. .. _class_TextureButton_texture_focused:
  23. - :ref:`Texture<class_texture>` **texture_focused** - Texture to display when the node has mouse or keyboard focus.
  24. .. _class_TextureButton_texture_hover:
  25. - :ref:`Texture<class_texture>` **texture_hover** - Texture to display when the mouse hovers the node.
  26. .. _class_TextureButton_texture_normal:
  27. - :ref:`Texture<class_texture>` **texture_normal** - Texture to display by default, when the node is **not** in the disabled, focused, hover or pressed state.
  28. .. _class_TextureButton_texture_pressed:
  29. - :ref:`Texture<class_texture>` **texture_pressed** - Texture to display on mouse down over the node, if the node has keyboard focus and the player presses the enter key or if the player presses the :ref:`BaseButton.shortcut<class_BaseButton_shortcut>` key.
  30. Enums
  31. -----
  32. .. _enum_TextureButton_StretchMode:
  33. enum **StretchMode**
  34. - **STRETCH_SCALE** = **0** --- Scale to fit the node's bounding rectangle.
  35. - **STRETCH_TILE** = **1** --- Tile inside the node's bounding rectangle.
  36. - **STRETCH_KEEP** = **2** --- The texture keeps its original size and stays in the bounding rectangle's top-left corner.
  37. - **STRETCH_KEEP_CENTERED** = **3** --- The texture keeps its original size and stays centered in the node's bounding rectangle.
  38. - **STRETCH_KEEP_ASPECT** = **4** --- Scale the texture to fit the node's bounding rectangle, but maintain the texture's aspect ratio.
  39. - **STRETCH_KEEP_ASPECT_CENTERED** = **5** --- Scale the texture to fit the node's bounding rectangle, center it, and maintain its aspect ratio.
  40. - **STRETCH_KEEP_ASPECT_COVERED** = **6** --- Scale the texture so that the shorter side fits the bounding rectangle. The other side clips to the node's limits.
  41. Description
  42. -----------
  43. ``TextureButton`` has the same functionality as :ref:`Button<class_button>`, except it uses sprites instead of Godot's :ref:`Theme<class_theme>` resource. It is faster to create, but it doesn't support localization like more complex Controls.
  44. The Normal state's texture is required. Others are optional.