class_backbuffercopy.rst 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/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. A node that copies a region of the screen to a buffer for access in shader code.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. 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 :ref:`copy_mode<class_BackBufferCopy_property_copy_mode>`. It can be accessed in shader scripts using the screen texture (i.e. a uniform sampler with ``hint_screen_texture``).
  15. \ **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.
  16. .. rst-class:: classref-introduction-group
  17. Tutorials
  18. ---------
  19. - :doc:`Screen-reading shaders <../tutorials/shaders/screen-reading_shaders>`
  20. .. rst-class:: classref-reftable-group
  21. Properties
  22. ----------
  23. .. table::
  24. :widths: auto
  25. +-----------------------------------------------+-----------------------------------------------------------+---------------------------------+
  26. | :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` | :ref:`copy_mode<class_BackBufferCopy_property_copy_mode>` | ``1`` |
  27. +-----------------------------------------------+-----------------------------------------------------------+---------------------------------+
  28. | :ref:`Rect2<class_Rect2>` | :ref:`rect<class_BackBufferCopy_property_rect>` | ``Rect2(-100, -100, 200, 200)`` |
  29. +-----------------------------------------------+-----------------------------------------------------------+---------------------------------+
  30. .. rst-class:: classref-section-separator
  31. ----
  32. .. rst-class:: classref-descriptions-group
  33. Enumerations
  34. ------------
  35. .. _enum_BackBufferCopy_CopyMode:
  36. .. rst-class:: classref-enumeration
  37. enum **CopyMode**: :ref:`🔗<enum_BackBufferCopy_CopyMode>`
  38. .. _class_BackBufferCopy_constant_COPY_MODE_DISABLED:
  39. .. rst-class:: classref-enumeration-constant
  40. :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` **COPY_MODE_DISABLED** = ``0``
  41. Disables the buffering mode. This means the **BackBufferCopy** node will directly use the portion of screen it covers.
  42. .. _class_BackBufferCopy_constant_COPY_MODE_RECT:
  43. .. rst-class:: classref-enumeration-constant
  44. :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` **COPY_MODE_RECT** = ``1``
  45. **BackBufferCopy** buffers a rectangular region.
  46. .. _class_BackBufferCopy_constant_COPY_MODE_VIEWPORT:
  47. .. rst-class:: classref-enumeration-constant
  48. :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` **COPY_MODE_VIEWPORT** = ``2``
  49. **BackBufferCopy** buffers the entire screen.
  50. .. rst-class:: classref-section-separator
  51. ----
  52. .. rst-class:: classref-descriptions-group
  53. Property Descriptions
  54. ---------------------
  55. .. _class_BackBufferCopy_property_copy_mode:
  56. .. rst-class:: classref-property
  57. :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` **copy_mode** = ``1`` :ref:`🔗<class_BackBufferCopy_property_copy_mode>`
  58. .. rst-class:: classref-property-setget
  59. - |void| **set_copy_mode**\ (\ value\: :ref:`CopyMode<enum_BackBufferCopy_CopyMode>`\ )
  60. - :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` **get_copy_mode**\ (\ )
  61. Buffer mode. See :ref:`CopyMode<enum_BackBufferCopy_CopyMode>` constants.
  62. .. rst-class:: classref-item-separator
  63. ----
  64. .. _class_BackBufferCopy_property_rect:
  65. .. rst-class:: classref-property
  66. :ref:`Rect2<class_Rect2>` **rect** = ``Rect2(-100, -100, 200, 200)`` :ref:`🔗<class_BackBufferCopy_property_rect>`
  67. .. rst-class:: classref-property-setget
  68. - |void| **set_rect**\ (\ value\: :ref:`Rect2<class_Rect2>`\ )
  69. - :ref:`Rect2<class_Rect2>` **get_rect**\ (\ )
  70. 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>`.
  71. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  72. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  73. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  74. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  75. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  76. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  77. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  78. .. |void| replace:: :abbr:`void (No return value.)`