summaryrefslogtreecommitdiffstats
path: root/scene/scene_string_names.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) 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>
* [Scene] Add `SceneStringNames::text/value_changed`A Thousand Ships2024-06-191-0/+3
|
* [Scene] Add `SceneStringNames::confirmed`A Thousand Ships2024-06-191-0/+2
|
* [Scene] Add `SceneStringNames::item_selected`A Thousand Ships2024-06-191-0/+2
|
* [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-181-0/+3
|
* [Scene] Add `SceneStringNames::panel`A Thousand Ships2024-05-301-0/+2
|
* [Scene] Add `SceneStringNames::id_pressed`A Thousand Ships2024-05-301-0/+1
|
* Fix wrong usage of parameters_base_path StringNamekobewi2024-05-301-1/+0
|
* Cleanup unused/underused singleton StringNameskobewi2024-05-141-77/+0
|
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-0/+2
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-5/+0
|
* Add shorthand for using singleton string nameskobewi2024-05-111-1/+3
|
* replace bone_pose_updated to skeleton_updated signalSilc Lizard (Tokage) Renew2024-04-131-1/+1
|
* Use StringName consistently to refer to the Master audio bus nameHugo Locurcio2023-08-071-0/+2
|
* Expose `Window`'s `_get_contents_minimum_size()` to scriptingMichael Alexsander2023-08-021-0/+1
|
* Merge pull request #76853 from HolonProduction/emission_finishedYuri Sizov2023-07-141-1/+0
|\ | | | | | | Add `finished` signal to CPUParticles
| * Add `finished` signal to CPUParticlesHolonProduction2023-07-121-1/+0
| |
* | Convert some Callables to callable_mp()kobewi2023-07-121-2/+0
|/
* 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".
* Fix connection of animation changed signal in AnimationTrackEditorSilc Renew2022-11-201-2/+0
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add a constant StringName for RESET animationkobewi2021-12-061-0/+1
|
* Merge pull request #45699 from TokageItLab/implement-skeleton-editor-gizmoRémi Verschelde2021-10-061-0/+3
|\ | | | | Implement Skeleton Editor Gizmo
| * Implemented SkeletonEditorGizmoSilc Renew2021-10-071-0/+3
| | | | | | | | Co-authored-by: Lyuma <xn.lyuma@gmail.com>
* | Add pre-sort signal and notification in ContainerPouleyKetchoupp2021-10-051-0/+1
|/ | | | | Allows processing before children are sorted, useful for custom containers inherited from existing ones like BoxContainer.
* Display a editor gizmo icon for Listener3DHugo Locurcio2021-09-161-3/+0
| | | | | | | | The icon was present in `editor/icons/`, but it was never implemented in the editor gizmos code. This also removes some unused gizmo drawing code (overridden methods that are no longer called anywhere).
* New and improved IK system for Skeleton3DTwistedTwigleg2021-08-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR and commit adds a new IK system for 3D with the Skeleton3D node that adds several new IK solvers, as well as additional changes and functionality for making bone manipulation in Godot easier. This work was sponsored by GSoC 2020 and TwistedTwigleg Full list of changes: * Adds a SkeletonModification3D resource * This resource is the base where all IK code is written and executed * Adds a SkeletonModificationStack3D resource * This node oversees the execution of the modifications and acts as a bridge of sorts for the modifications to the Skeleton3D node * Adds SkeletonModification3D resources for LookAt, CCDIK, FABRIK, Jiggle, and TwoBoneIK * Each modification is in it's own file * Several changes to Skeletons, listed below: * Added local_pose_override, which acts just like global_pose_override but keeps bone-child relationships intract * So if you move a bone using local_pose_override, all of the bones that are children will also be moved. This is different than global_pose_override, which only affects the individual bone * Internally bones keep track of their children. This removes the need of a processing list, makes it possible to update just a few select bones at a time, and makes it easier to traverse down the bone chain * Additional functions added for converting from world transform to global poses, global poses to local poses, and all the same changes but backwards (local to global, global to world). This makes it much easier to work with bone transforms without needing to think too much about how to convert them. * New signal added, bone_pose_changed, that can be used to tell if a specific bone changed its transform. Needed for BoneAttachment3D * Added functions for getting the forward position of a bone * BoneAttachment3D node refactored heavily * BoneAttachment3D node is now completely standalone in its functionality. * This makes the code easier and less interconnected, as well as allowing them to function properly without being direct children of Skeleton3D nodes * BoneAttachment3D now can be set either using the index or the bone name. * BoneAttachment3D nodes can now set the bone transform instead of just following it. This is disabled by default for compatibility * BoneAttachment3D now shows a warning when not configured correctly * Added rotate_to_align function in Basis * Added class reference documentation for all changes
* Node3D gizmo improvementsjfons2021-07-231-0/+1
| | | | | | | | * Clean-up of node_3d_editor_plugin.{h,cpp}: removed unused code, fixed some bugs. * Moved node_3d_editor_gizmos.{h,cpp} to editor/plugins. * Added support for multiple gizmos per node. This means custom gizmos will no longer override the built-in ones and that multiple gizmos can be used in more complex nodes. * Added support for handle IDs. When adding handles to a gizmo, an ID can be specified for each one, making it easier to work with gizmos that have a variable number of handles. * Added support for subgizmos, selectable elements that can be transformed without needing a node of their own. By overriding _subgizmo_intersect_frustum() and/or _subgizmo_intersect_ray() gizmos can define which subgizmos should be selected on a region or click selection. Subgizmo transformations are applied using get/set/commit virtual methods, similar to how handles work.
* Merge pull request #47395 from sygi/shape_idx_collisionHugo Locurcio2021-07-161-0/+4
|\ | | | | Add shape_idx to CollisionObject2D mouse_entered signal
| * Add mouse_shape_entered and mouse_shape_exited signals to CollisionObject2D.sygi2021-07-021-0/+4
| | | | | | | | Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
* | Remove clips_input() method and use clip_contentkobewi2021-06-251-1/+0
| |
* | Merge pull request #49526 from Chaosus/fix_textureregion_errorsRémi Verschelde2021-06-131-0/+1
|\ \
| * | Fixed a bunch of connection errors in TextureEditorPluginYuri Roubinsky2021-06-121-0/+1
| | |
* | | Consistently prefix bound virtual methods with _kobewi2021-06-121-4/+4
|/ /
* / Scene: Remove unused `mesh_materials` StringNamesRémi Verschelde2021-04-151-4/+0
|/ | | | | They were added in 8be2fabbe5cd846bac5e5a38e55f3fb70e73f2da (2.1 era) but were likely a first attempt that didn't get unused in the end.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Rename CanvasItem's hide signal to hiddenMarcel Admiraal2020-12-081-1/+1
|
* [Complex Text Layouts] Refactor Font class, default themes and controls to ↵bruvzg2020-11-261-0/+1
| | | | | | | | use Text Server interface. Implement interface mirroring. Add TextLine and TextParagraph classes. Handle UTF-16 input on macOS and Windows.
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-2/+2
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Custom Skeleton3DEditorPluginK. S. Ernest (iFire) Lee2020-05-221-0/+2
| | | | Co-authored-by: Marios Staikopoulos <marios@staik.net>
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-1/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* New lightmapperJuan Linietsky2020-05-101-0/+4
| | | | | | | -Added LocalVector (needed it) -Added stb_rect_pack (It's pretty cool, we could probably use it for other stuff too) -Fixes and changes all around the place -Added library for 128 bits fixed point (required for Delaunay3D)
* Implement global and per instance shader uniforms.Juan Linietsky2020-04-171-0/+2
| | | | | | | | Adds two keywords to shader language for uniforms: -'global' -'instance' This allows them to reference values outside the material.
* Replace NULL with nullptrlupoDharkael2020-04-021-1/+1
|
* Working multiple window support, including editorJuan Linietsky2020-03-261-0/+3
|
* Refactored input, goes all via windows now.Juan Linietsky2020-03-261-0/+4
| | | | Also renamed Input to InputFilter because all it does is filter events.
* Signals: Port more uses of connect_compatRémi Verschelde2020-02-281-1/+0
| | | | | | | | | Those were problematic as they call a method of their parent class, but callable_mp does not allow that unless it's public. To solve it, we declare a local class that calls the parent class' method, which now needs to be protected to be accessible in the derived class.
* Signals: Manually port most of remaining connect_compat usesRémi Verschelde2020-02-281-7/+1
| | | | | | | | It's tedious work... Some can't be ported as they depend on private or protected methods of different classes, which is not supported by callable_mp (even if it's a class inherited by the current one).
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.