summaryrefslogtreecommitdiff
path: root/doc/classes/Node.xml
AgeCommit message (Collapse)Author
2020-09-14Several documentation improvementsDanil Alexeev
2020-09-01Merge pull request #41505 from SekoiaTree/neg-get-childRémi Verschelde
Made get_child support negative indexes
2020-09-01Made get_child support negative indexes, with documentationSekoiaTree
2020-08-31Add link titles for all links in the class referenceHugo Locurcio
This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.)
2020-08-31Merge pull request #41077 from Calinou/doc-find-node-find-parentRémi Verschelde
Mention performance caveats about `find_node()` and `find_parent()`
2020-08-29Mention performance caveats about `find_node()` and `find_parent()`Hugo Locurcio
See https://github.com/godotengine/godot-proposals/issues/1303.
2020-08-12Expose NOTIFICATION_POST_ENTER_TREETomasz Chabora
2020-07-01Environment: Refactor code for readability + moreRémi Verschelde
- Makes all boolean setters/getters consistent. - Fixes bug where `glow_hdr_bleed_scale` was not used. - Split CameraEffects to their own source file. - Reorder all Environment method and properties declarations, definitions and bindings to be consistent with each other and with the order of property bindings. - Bind missing enum values added with SDFGI. - Remove unused SDFGI enhance_ssr boolean. - Sync doc changes after SDFGI merge and other misc changes.
2020-06-12Clarify Node virtual methdods not being called if node is orphanHugo Locurcio
This closes #39489.
2020-05-15Replace 'add_child_below_node' with 'add_sibling' in NodeDominik 'dreamsComeTrue' Jasiński
Fixes: #19642
2020-05-09[DOCS] minor description changesChris Bradfield
2020-04-29Merge pull request #36960 from pycbouh/docs-improve-shortcutsRémi Verschelde
Improve shortcut formatting in docs
2020-04-24doc: Fix parsing typed arrays in makerst.pyRémi Verschelde
`Type[]` typed arrays will link to `Type`, as it's likely the most interesting information for the user. And sync classref with current source.
2020-04-10Improve shortcut formatting in docsYuri Sizov
2020-04-06Remove Node.get_position_in_parent()Tomasz Chabora
2020-03-31doc: Sync classref with DisplayServer/Window changesRémi Verschelde
2020-03-04Merge pull request #36509 from dalexeev/doc_node_fpsRémi Verschelde
Minor fix in Node class documentation
2020-02-27Improve the `Node.add_child_below_node()` documentationHugo Locurcio
This closes https://github.com/godotengine/godot-docs/issues/2730.
2020-02-24Minor fix in Node class documentationDanil Alexeev
The name of the property responsible for physics fps is fixed: this is `Engine.iterations_per_second`, not `Engine.target_fps`.
2020-02-22doc: Sync classref with StringName/Callable changesRémi Verschelde
2020-02-13Remove obsolete GLES3 backendRémi Verschelde
Due to the port to Vulkan and complete redesign of the rendering backend, the `drivers/gles3` code is no longer usable in this state and is not planned to be ported to the new architecture. The GLES2 backend is kept (while still disabled and non-working) as it will eventually be ported to serve as the low-end renderer for Godot 4.0. Some GLES3 features might be selectively ported to the updated GLES2 backend if there's a need for them, and extensions we can use for that. So long, OpenGL driver bugs!
2020-01-31Update docs to version 4.0clayjohn
2020-01-26doc: Drop unused 'category' property from headerRémi Verschelde
We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
2020-01-23doc: Misc updates for AnimationNode* and othersRémi Verschelde
- Add some missing descriptions. - Add links to tutorials for ARVR and AnimationTree. - Style fixes. - Engine changes: * Make `AnimationNodeTransition.input_<number>` properties internal so that they don't appear in the docs. They still appear in the inspector based on the actual number of inputs requested. * Drop unimplemented `CPUParticles.flatness`. It's only used for 3D particles in `ParticlesMaterial`, and thus only relevant for `CPUParticles3D`.
2020-01-02Add note about add_child and owner.Ryan Roden-Corrent
Resolves #34739.
2019-12-22Fix the Node `process_priority` description to match actual behaviorHugo Locurcio
This closes #34531.
2019-12-19DUPlICATE_USING_INSTANCE documentation updatealexchond
2019-12-17Document DUPLICATE_USE_INSTANCING #2770alexchond
2019-11-25Merge pull request #33867 from rcorre/get_node_docsRémi Verschelde
Clarify get_node vs get_node_or_null.
2019-11-17Implement `Node::get_process_priority()` and its associated propertyHugo Locurcio
This closes #33660.
2019-10-17Expose Node::update_configuration_warning() to scriptsPouleyKetchoupp
This method can be used to generate custom node warnings by script. Node::_get_configuration_warning was already exposed to generate custom warnings, but it wasn't fully usable without being able to notify the scene tree when the warning needs to appear or change.
2019-09-20Merge pull request #32064 from m4gr3d/propagate_gl_surface_eventsRémi Verschelde
Notify for app pause and resume events on Android
2019-09-19Add new events and accompanying logic to notify when the app is paused and ↵fhuya
resumed on Android devices.
2019-09-19Clarify get_node vs get_node_or_null.Ryan Roden-Corrent
Fixes #2771. It is confusing to say get_node will "raise an error" if the node does not exist, as this phrase is used elsewhere in the godot docs (e.g. at several points in the GDScript overview) to indicate something that will completely stop execution. Saying it logs an error is more accurate.
2019-09-13Mention constructor arguments in duplicate() docTomasz Chabora
2019-08-14Documentation note that Node::add_child() fails if child already has a parentzzwx
2019-07-06Clarify better what Node.raise doesTomasz Chabora
2019-06-30doc: Remove null default values that can't be determinedRémi Verschelde
Applying #30187.
2019-06-30doc: Add default values to all propertiesRémi Verschelde
Thanks to @bojidar-bg's impressive work in #29380.
2019-06-28Clarify docs for _ready and request_readyTomasz Chabora
2019-06-27Proofread and improve the whole class referenceHugo Locurcio
- Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies
2019-06-27doc: Fix scoped hyperlinks to same-class enums/methodsRémi Verschelde
The class name does not need to be specified when it is the current class.
2019-06-26doc: Proofread and complete various nodesRémi Verschelde
All 100% completed: MainLoop, Node, Object, Path, Performance, Reference, Resource, SceneState, SceneTree, UndoRedo. Also fixed some en_GB occurrences as the reference spelling is en_US.
2019-06-26Node: Fix logic of has/get_node_and_resource and document itRémi Verschelde
Also document NodePath.
2019-04-19Added minimal documentation for _get_configuration_warning methodHasan Yusuf Ahmed
(cherry picked from commit 0eeb1a7d0d540073a6e62e3203d304730493faf8)
2019-04-19doc: Drop unused <demos> tagRémi Verschelde
2019-04-15doc: Sync classref with current sourceRémi Verschelde
2019-04-09Merge pull request #27561 from KoBeWi/get_frame_docRémi Verschelde
Document SceneTree.get_frame() and persistent in add_to_group()
2019-04-05Merge pull request #27465 from ↵Rémi Verschelde
neikeq/road-to-lang-agnostic-docs-is-going-to-be-tough EditorHelp: Improve enum ref resolving and add constant ref support
2019-04-01doc: Bump version to 3.2Rémi Verschelde