class_backbuffercopy.rst 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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/3.5/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/BackBufferCopy.xml.
  6. .. _class_BackBufferCopy:
  7. BackBufferCopy
  8. ==============
  9. **Inherits:** :ref:`Node2D<class_Node2D>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. Copies a region of the screen (or the whole screen) to a buffer so it can be accessed in your shader scripts through the ``texture(SCREEN_TEXTURE, ...)`` function.
  11. Description
  12. -----------
  13. Node for back-buffering the currently-displayed screen. The region defined in the ``BackBufferCopy`` node is buffered with the content of the screen it covers, or the entire screen according to the copy mode set. Use the ``texture(SCREEN_TEXTURE, ...)`` function in your shader scripts to access the buffer.
  14. \ **Note:** Since this node inherits from :ref:`Node2D<class_Node2D>` (and not :ref:`Control<class_Control>`), anchors and margins won't apply to child :ref:`Control<class_Control>`-derived nodes. This can be problematic when resizing the window. To avoid this, add :ref:`Control<class_Control>`-derived nodes as *siblings* to the ``BackBufferCopy`` node instead of adding them as children.
  15. Properties
  16. ----------
  17. +-----------------------------------------------+-----------------------------------------------------------+-----------------------------------+
  18. | :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` | :ref:`copy_mode<class_BackBufferCopy_property_copy_mode>` | ``1`` |
  19. +-----------------------------------------------+-----------------------------------------------------------+-----------------------------------+
  20. | :ref:`Rect2<class_Rect2>` | :ref:`rect<class_BackBufferCopy_property_rect>` | ``Rect2( -100, -100, 200, 200 )`` |
  21. +-----------------------------------------------+-----------------------------------------------------------+-----------------------------------+
  22. Enumerations
  23. ------------
  24. .. _enum_BackBufferCopy_CopyMode:
  25. .. _class_BackBufferCopy_constant_COPY_MODE_DISABLED:
  26. .. _class_BackBufferCopy_constant_COPY_MODE_RECT:
  27. .. _class_BackBufferCopy_constant_COPY_MODE_VIEWPORT:
  28. enum **CopyMode**:
  29. - **COPY_MODE_DISABLED** = **0** --- Disables the buffering mode. This means the ``BackBufferCopy`` node will directly use the portion of screen it covers.
  30. - **COPY_MODE_RECT** = **1** --- ``BackBufferCopy`` buffers a rectangular region.
  31. - **COPY_MODE_VIEWPORT** = **2** --- ``BackBufferCopy`` buffers the entire screen.
  32. Property Descriptions
  33. ---------------------
  34. .. _class_BackBufferCopy_property_copy_mode:
  35. - :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` **copy_mode**
  36. +-----------+----------------------+
  37. | *Default* | ``1`` |
  38. +-----------+----------------------+
  39. | *Setter* | set_copy_mode(value) |
  40. +-----------+----------------------+
  41. | *Getter* | get_copy_mode() |
  42. +-----------+----------------------+
  43. Buffer mode. See :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` constants.
  44. ----
  45. .. _class_BackBufferCopy_property_rect:
  46. - :ref:`Rect2<class_Rect2>` **rect**
  47. +-----------+-----------------------------------+
  48. | *Default* | ``Rect2( -100, -100, 200, 200 )`` |
  49. +-----------+-----------------------------------+
  50. | *Setter* | set_rect(value) |
  51. +-----------+-----------------------------------+
  52. | *Getter* | get_rect() |
  53. +-----------+-----------------------------------+
  54. The area covered by the ``BackBufferCopy``. Only used if :ref:`copy_mode<class_BackBufferCopy_property_copy_mode>` is :ref:`COPY_MODE_RECT<class_BackBufferCopy_constant_COPY_MODE_RECT>`.
  55. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  56. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  57. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`