summaryrefslogtreecommitdiffstats
path: root/editor/plugins/node_3d_editor_gizmos.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-5/+2
|\
| * Add CollisionShape3D custom debug coloursJamie Greunbaum2024-11-261-5/+2
| | | | | | | | | | | | | | This allows changing the display colour of a CollisionShape3D node on a per-shape basis. It also adds the ability to display a solid coloured preview of a CollisionShape3D. Closes https://github.com/godotengine/godot-proposals/issues/906
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | 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>
* [Editor] Fix handle ID being passed for 3D Gizmo pluginsA Thousand Ships2024-09-051-2/+3
|
* Merge pull request #96292 from AThousandShips/null_check_ref_fixRémi Verschelde2024-09-031-1/+1
|\ | | | | | | Cleanup of raw `nullptr` checks with `Ref`
| * Cleanup of raw `nullptr` checks with `Ref`A Thousand Ships2024-08-311-1/+1
| | | | | | | | Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
* | Merge pull request #94698 from aaronp64/current_gizmos_hashsetRémi Verschelde2024-09-021-1/+1
|\ \ | |/ |/| | | Improve time to close scene with many 3D gizmos
| * Improve time to close scene with many 3D gizmosaaronp642024-08-181-1/+1
| | | | | | | | Changed EditorNode3DGizmoPlugin::current_gizmos from List to HashSet, to avoid having to iterate through all gizmos when ~EditorNode3DGizmo unregisters itself.
* | Fix gizmos without visible geometry not being selectableJuan Pablo Arce2024-07-211-0/+37
|/ | | | | | The issue was that Node3DEditorViewport was using the render server's BVH to filter out nodes, which is not correct for gizmos that have no renderable components, or have collision triangles that exceed the bounds of their renderable components.
* Tweak appearance of 3D editor gizmo iconsHugo Locurcio2024-05-081-4/+5
| | | | | | | | | | | - Use alpha scissor to resolve transparency sorting issues with gizmo icons relative to other transparent materials in the scene. This also makes gizmos visible in `screen_texture`, which means gizmos can now be seen through refractive materials. Lastly, this reduces the amount of artifacts visible around gizmo outlines (although they are still present at times). - Make icons darker when not selected to be less intrusive (and easier to distinguish when selected).
* Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-5/+5
| | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* Fix gizmo on top material option having no effectSteven Thompson2024-04-031-3/+4
| | | | | | | Update get_material function in EditorNode3DGizmoPlugin so that it enables the disable depth test flag on duplicate versions of the gizmo materials if the flag is not already set and the gizmo is set to use the 'x-ray' visibility state.
* Move 3D-only resources to their own folderAaron Franke2024-02-261-1/+1
|
* Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-1/+1
|
* [Editor] Add missing virtual bind to `EditorNode3DGizmo(Plugin)`A Thousand Ships2024-01-061-0/+2
| | | | Method `_begin_handle_action` was not bound
* Make 3D editor gizmos and debug shapes ignore fogHugo Locurcio2023-09-271-0/+3
| | | | This makes them easier to see in their intended colors in scenes with fog.
* [Editor] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-151-25/+25
|
* Fix accessing editor theme items throughout the UIYuri Sizov2023-09-151-1/+2
| | | | This also exposes `EditorInterface::get_editor_theme`.
* Add EditorStringNames singletonkobewi2023-09-031-1/+1
|
* Improve editing of box collision shapeskobewi2023-08-031-0/+13
|
* Split Node3DGizmos into dedicated filessmix82023-04-201-4838/+0
| | | | Splits Node3DGizmos into dedicated files.
* Fix NavigationMesh baking AABB Editor handling and visualssmix82023-02-031-0/+14
| | | | Fixes handling and visuals for Navigation Mesh baking AABB in the Editor.
* Merge pull request #72075 from Maran23/extents-to-sizeRémi Verschelde2023-02-011-78/+79
|\ | | | | | | Replace Extents with Size in VoxelGI, ReflectionProbe, FogVolume, Decal and GPUParticles*3D
| * Replace Extents with Size in VoxelGI, ReflectionProbe, FogVolume, Decal and ↵Marius Hanl2023-01-311-78/+79
| | | | | | | | | | | | | | | | | | | | | | GPUParticles*3D - Extents are replaced by Size (Size is Extents * 2) - The UI text displays 'Size' - Snapping is adjusted to work with Size - _set and _get handle extents for compatibility Co-authored-by: ator-dev <dominic.codedeveloper@gmail.com>
* | Rename Navigation uses of 'location' to 'position'smix82023-01-261-34/+34
|/ | | | Contrary to the entire rest of the engine NavigationAgent's and NavigationLinks decided to deal with locations instead of positions.
* Add EditorUndoRedoManager singletonkobewi2023-01-161-22/+22
|
* 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".
* Add safety-checks before some servers `free()`Adam Scott2022-12-291-0/+2
|
* Merge pull request #67024 from alessandrofama/fix-gdvirtual-call-node3dgizmoRémi Verschelde2022-12-151-4/+6
|\ | | | | | | EditorNode3DGizmoPlugin: Add GDVIRTUAL_CALL for get_gizmo_name and get_priority
| * EditorNode3DGizmoPlugin: Add GDVIRTUAL_CALL for get_gizmo_name and get_priorityAlessandro Famà2022-10-071-4/+6
| |
* | Make Camera3D gizmo the same aspect ratio as its viewportHaoyu Qiu2022-11-151-20/+48
| |
* | Fix error when adding 3D gizmo handles with IDsHaoyu Qiu2022-11-011-11/+14
| |
* | Merge pull request #68005 from timothyqiu/type-mismatchRémi Verschelde2022-10-311-1/+1
|\ \ | | | | | | | | | Fix type mismatch error when deselecting a 3D gizmo
| * | Fix type mismatch error when deselecting a 3D gizmoHaoyu Qiu2022-10-291-1/+1
| | |
* | | Merge pull request #68073 from timothyqiu/marker-3d-extentsRémi Verschelde2022-10-311-4/+17
|\ \ \ | | | | | | | | | | | | Make Marker3D gizmo resizable
| * | | Make Marker3D gizmo resizableHaoyu Qiu2022-10-311-4/+17
| |/ /
* | | Merge pull request #67588 from KoBeWi/if(!GDVIRTUAL_CALL)don'tRémi Verschelde2022-10-311-41/+21
|\ \ \ | | | | | | | | | | | | Simplify GDVIRTUAL_CALL calls
| * | | Simplify GDVIRTUAL_CALL callskobewi2022-10-191-41/+21
| |/ /
* / / Make Camera3D gizmo clickableHaoyu Qiu2022-10-291-0/+1
|/ /
* / Optimize Convex CollisionJuan Linietsky2022-10-131-3/+3
|/ | | | | | | | Implements the Gauss Mapping optimization to SAT convex collision test. * Described [here](https://ubm-twvideo01.s3.amazonaws.com/o1/vault/gdc2013/slides/822403Gregorius_Dirk_TheSeparatingAxisTest.pdf) by Dirk Gregorius. * Requires adding of face information to edges in MeshData * Took the chance to convert MeshData to LocalVector for performance.
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-5/+5
| | | | change warnings=all to use /W4.
* Rename remaining "Spatial" in Plugins to "Node3D"Micky2022-10-041-81/+81
| | | | | | | | | | | | For EditorNode3DGizmo: - `get_spatial_node` -> `get_node_3d` - `set_spatial_node` -> `set_node_3d` For EditorPlugin: - `add_spatial_gizmo_plugin` -> `add_node_3d_gizmo_plugin` - `remove_spatial_gizmo_plugin` -> `remove_node_3d_gizmo_plugin` Also renames some internal methods for consistency (`forward_3d_draw_over_viewport` & `forward_3d_force_draw_over_viewport` ...). Basically, Spatial has been completely eradicated.
* Merge pull request #63479 from DarkKilauea/nav-linkRémi Verschelde2022-09-011-0/+170
|\
| * Added node for Navigation linksJosh Jones2022-08-261-0/+170
| |
* | Implement Physical Light Units as an optional setting.clayjohn2022-08-311-1/+2
|/ | | | | | This allows light sources to be specified in physical light units in addition to the regular energy multiplier. In order to avoid loss of precision at high values, brightness values are premultiplied by an exposure normalization value. In support of Physical Light Units this PR also renames CameraEffects to CameraAttributes.
* Merge pull request #64367 from Mickeon/rename-var-to-strRémi Verschelde2022-08-261-30/+30
|\ | | | | Rename `str2var` to `str_to_var` and similar
| * Rename `str2var` to `str_to_var` and similarMicky2022-08-261-30/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Affects the Math class, a good chunk of the audio code, and a lot of other miscellaneous classes, too. - `var2str` -> `var_to_str` - `str2var` -> `str_to_var` - `bytes2var` -> `bytes_to_var` - `bytes2var_with_objects` -> `bytes_to_var_with_objects` - `var2bytes` -> `var_to_bytes` - `var2bytes_with_objects` -> `var_to_bytes_with_objects` - `linear2db` -> `linear_to_db` - `db2linear` -> `db_to_linear` - `deg2rad` -> `deg_to_rad` - `rad2deg` -> `rad_to_deg` - `dict2inst` -> `dict_to_inst` - `inst2dict` -> `inst_to_dict`
* | Restore RigidBody2/3D, SoftBody names in physicsfabriceci2022-08-261-19/+19
|/
* Merge pull request #64370 from Mickeon/rename-marker-nodeRémi Verschelde2022-08-241-9/+9
|\ | | | | Rename Position* nodes to Marker*