class_missingnode.rst 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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/MissingNode.xml.
  6. .. _class_MissingNode:
  7. MissingNode
  8. ===========
  9. **Inherits:** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. An internal editor class intended for keeping the data of unrecognized nodes.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. This is an internal editor class intended for keeping data of nodes of unknown type (most likely this type was supplied by an extension that is no longer loaded). It can't be manually instantiated or placed in a scene.
  15. \ **Warning:** Ignore missing nodes unless you know what you are doing. Existing properties on a missing node can be freely modified in code, regardless of the type they are intended to be.
  16. .. rst-class:: classref-reftable-group
  17. Properties
  18. ----------
  19. .. table::
  20. :widths: auto
  21. +-----------------------------+------------------------------------------------------------------------------+
  22. | :ref:`String<class_String>` | :ref:`original_class<class_MissingNode_property_original_class>` |
  23. +-----------------------------+------------------------------------------------------------------------------+
  24. | :ref:`String<class_String>` | :ref:`original_scene<class_MissingNode_property_original_scene>` |
  25. +-----------------------------+------------------------------------------------------------------------------+
  26. | :ref:`bool<class_bool>` | :ref:`recording_properties<class_MissingNode_property_recording_properties>` |
  27. +-----------------------------+------------------------------------------------------------------------------+
  28. | :ref:`bool<class_bool>` | :ref:`recording_signals<class_MissingNode_property_recording_signals>` |
  29. +-----------------------------+------------------------------------------------------------------------------+
  30. .. rst-class:: classref-section-separator
  31. ----
  32. .. rst-class:: classref-descriptions-group
  33. Property Descriptions
  34. ---------------------
  35. .. _class_MissingNode_property_original_class:
  36. .. rst-class:: classref-property
  37. :ref:`String<class_String>` **original_class** :ref:`🔗<class_MissingNode_property_original_class>`
  38. .. rst-class:: classref-property-setget
  39. - |void| **set_original_class**\ (\ value\: :ref:`String<class_String>`\ )
  40. - :ref:`String<class_String>` **get_original_class**\ (\ )
  41. The name of the class this node was supposed to be (see :ref:`Object.get_class()<class_Object_method_get_class>`).
  42. .. rst-class:: classref-item-separator
  43. ----
  44. .. _class_MissingNode_property_original_scene:
  45. .. rst-class:: classref-property
  46. :ref:`String<class_String>` **original_scene** :ref:`🔗<class_MissingNode_property_original_scene>`
  47. .. rst-class:: classref-property-setget
  48. - |void| **set_original_scene**\ (\ value\: :ref:`String<class_String>`\ )
  49. - :ref:`String<class_String>` **get_original_scene**\ (\ )
  50. Returns the path of the scene this node was instance of originally.
  51. .. rst-class:: classref-item-separator
  52. ----
  53. .. _class_MissingNode_property_recording_properties:
  54. .. rst-class:: classref-property
  55. :ref:`bool<class_bool>` **recording_properties** :ref:`🔗<class_MissingNode_property_recording_properties>`
  56. .. rst-class:: classref-property-setget
  57. - |void| **set_recording_properties**\ (\ value\: :ref:`bool<class_bool>`\ )
  58. - :ref:`bool<class_bool>` **is_recording_properties**\ (\ )
  59. If ``true``, allows new properties to be set along with existing ones. If ``false``, only existing properties' values can be set, and new properties cannot be added.
  60. .. rst-class:: classref-item-separator
  61. ----
  62. .. _class_MissingNode_property_recording_signals:
  63. .. rst-class:: classref-property
  64. :ref:`bool<class_bool>` **recording_signals** :ref:`🔗<class_MissingNode_property_recording_signals>`
  65. .. rst-class:: classref-property-setget
  66. - |void| **set_recording_signals**\ (\ value\: :ref:`bool<class_bool>`\ )
  67. - :ref:`bool<class_bool>` **is_recording_signals**\ (\ )
  68. If ``true``, allows new signals to be connected to along with existing ones. If ``false``, only existing signals can be connected to, and new signals cannot be added.
  69. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  70. .. |required| replace:: :abbr:`required (This method is required to be overridden when extending its base class.)`
  71. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  72. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  73. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  74. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  75. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  76. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  77. .. |void| replace:: :abbr:`void (No return value.)`