summaryrefslogtreecommitdiffstats
path: root/scene/3d/node_3d.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-2/+2
|\
| * Add RetargetModifier3D for realtime retarget to keep original restSilc Lizard (Tokage) Renew2024-11-181-2/+2
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Merge commit godotengine@92e51fca7247c932f95a1662aefc28aca96e8de6Spartan3222024-10-141-10/+12
|\|
| * Fix implementation of property_can_revert() in various classeskobewi2024-10-041-10/+12
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Fixed Timestep Interpolation (3D)Ricardo Buring2024-07-071-1/+146
| | | | | | | Adds 3D fixed timestep interpolation to the rendering server. This does not yet include support for multimeshes or particles. Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Cleanup unused/underused singleton StringNameskobewi2024-05-141-4/+4
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+0
|
* Add shorthand for using singleton string nameskobewi2024-05-111-7/+7
|
* Expose is_part_of_edited_scene()kobewi2024-04-261-3/+3
|
* Merge pull request #76140 from ↵Rémi Verschelde2024-04-191-0/+9
|\ | | | | | | | | | | jeronimo-schreyer/add_secondary_light_to_3d_resource_importer Added secondary light to 3D Advanced Import Settings
| * Make Advanced Import lights more like the mesh and material editorsJeronimo Schreyer2024-04-161-0/+9
| | | | | | | | Co-authored-by: Aaron Franke <arnfranke@yahoo.com>
* | Fixes the issue where setting global rotation would reset scale.Birk Magnussen2024-04-161-1/+1
|/ | | | | | This was caused because the basis for the target global transform was entirely recreated. This process did not account for the scale of the basis of the current global transform. This PR amends this by scaling the recreated basis for the global transform by the current global scale of the Node3D. Note that this scaling has to be done from the current global scale and not from the local scale of the Node3D, otherwise issues would arise if parents of this Node3D would be scaled.
* Don't access Node3D/Node2D/Control global transform in `reparent` unless neededRémi Verschelde2024-02-291-2/+4
| | | | | | Fixes #89002. Co-authored-by: Tamás Gálffy <ezittgtx@gmail.com>
* Merge pull request #84643 from rsburke4/top-level-problem-fixRémi Verschelde2024-02-021-2/+6
|\ | | | | | | Fix `Node3D` children using `top_level` in different position in-editor versus runtime
| * Node3D children using top_level in different position in-editor vs. runtimersburke42023-11-091-2/+6
| |
* | Update deferred calls to use Callableskobewi2024-01-091-3/+2
|/
* Fix notification thread guardsbitsawer2023-10-021-2/+9
|
* Replace `radians` range hint with `radians_as_degrees`A Thousand Ships2023-09-251-1/+1
|
* Add `global_basis` property to `Node3D`Mikael Hermansson2023-08-111-0/+15
|
* Fix 3D top_level resettingMarkus Sauermann2023-06-221-2/+0
| | | | | | There is no need to erase the top_level flag on EXIT_TREE. During ENTER_TREE, `top_level = true` is not necessary, because it is already set to true.
* Merge pull request #77629 from GameDevLlama/bugifx/issue-50813Rémi Verschelde2023-06-181-10/+6
|\ | | | | | | Fix non-functional Node3D `top_level` property
| * Fix non functional Node3D op_level propertyChristian Ringshofer2023-06-181-10/+6
| | | | | | | | Fixes #50813.
* | Use NULL instead of COND checks when appropriateNinni Pipping2023-06-101-6/+6
|/ | | | Restricted to scene
* Add the ability to look-at in model-space.Juan Linietsky2023-05-241-7/+8
| | | | | | | | | | This is a much simpler attempt to solve the same problem as #76060, but without breaking any compatibility. * Adds a description of what model space is in the Vector3 enums (MODEL_* constants). This has the proper axes laid out for imported 3D assets. * Adds the option to `look_at` using model_space, which uses Vector3.MODEL_FRONT as forward vector. The attempt of this PR is to still break the assumption that there is a single direction of forward (which is not the case in Godot) and make it easier to understand where 3D models are facing, as well as orienting them via look_at.
* Optimize threading-sensitive node data for single-threaded processingPedro J. Estébanez2023-05-171-25/+50
|
* Make more base nodes thread safeJuan Linietsky2023-05-151-42/+127
| | | | Ongoing work to make more of the base nodes thread safe.
* Merge pull request #36301 from KoBeWi/daddy_nodeRémi Verschelde2023-01-071-0/+8
|\ | | | | | | Add reparent methods to Node
| * Add methods for node reparentingTomasz Chabora2022-08-161-0/+8
| |
* | One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* | Restore 'rotation_degrees' properties.Juan Linietsky2022-12-191-2/+28
| | | | | | | | | | | | | | | | | | By popular demand, restoring the helper properties to rotate objects in degrees. Affected are local and global rotations for: * Node2D * Node3D * Control
* | Use ObjectID as argument when referred-calling _request_gizmoHaoyu Qiu2022-12-101-2/+2
| | | | | | | | Fixes crash on project launch.
* | Unify Node3D RotationOrder with global EulerOrderAaron Franke2022-11-021-16/+7
| |
* | Move EulerOrder enum to math_defs.h and global scopeAaron Franke2022-11-021-1/+1
| |
* | Clean up Basis from Euler codeAaron Franke2022-10-211-3/+1
| |
* | Fix hide_slider vs no_slider inconsistency in editor property codeAaron Franke2022-10-031-1/+1
| |
* | Fail look_at() if not inside treekobewi2022-09-291-0/+1
| |
* | Expose `NOTIFICATION_LOCAL_TRANSFORM_CHANGED`Marc Gilleron2022-09-191-0/+1
| |
* | Rename `or_lesser` range property hint to `or_less`Hugo Locurcio2022-09-021-2/+2
| | | | | | | | | | | | | | "less" should be used for quantity, rather than "lesser". Existing scripts that use `or_lesser` in `_get_property_list()` will need to be updated to account for this change.
* | Add `is_zero_approx` methods to `Vector2`, `3`, and `4`Jonathan Nicholl2022-09-021-2/+2
| |
* | Merge pull request #64691 from TokageItLab/Quaternion-editorRémi Verschelde2022-08-241-1/+1
|\ \
| * | Implement Quaternion EditorSilc Renew2022-08-241-1/+1
| | |
* | | Replace Array return types with TypedArray 2kobewi2022-08-231-2/+2
| | |
* | | Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-11/+11
|/ /
* / Make `property_*_revert` methods multilevel and expose them for scriptingYuri Sizov2022-08-181-17/+15
|/
* rename translate(d) to translate(d)_local in Transform 2D/3DFabian Keller2022-07-161-2/+2
|
* Add global_position and global_rotation to Node3Dfoxydevloper2022-07-011-0/+31
|
* Merge pull request #62396 from reduz/fix-local-vector-transitions-in-node3dRémi Verschelde2022-06-271-51/+97
|\ | | | | Fix VECTOR/LOCAL transitions in Node3D
| * Fix VECTOR/LOCAL transitions in Node3Dreduz2022-06-271-51/+97
| | | | | | | | Fixes #62225, supersedes #62227