Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-13 | Merge pull request #49227 from pycbouh/editor-theme-freeze-changes | Rémi Verschelde | |
Prevent `Theme` resource from emitting changes during bulk operations | |||
2021-06-13 | Merge pull request #49526 from Chaosus/fix_textureregion_errors | Rémi Verschelde | |
2021-06-13 | Merge pull request #49543 from greatmomo/SkeletonModification_bugfix | Rémi Verschelde | |
2021-06-13 | Merge pull request #49558 from timothyqiu/invalid-ref | Rémi Verschelde | |
2021-06-13 | Validate parameter of SkeletonModificationStack2D::add_modification | Haoyu Qiu | |
2021-06-13 | Add range check for TileSet::CellNeighbor parameter | Haoyu Qiu | |
2021-06-12 | Fixed crash on calling set_editor_draw without properly setup | Moritz Kaltenbrunner | |
SkeletonModification | |||
2021-06-12 | Fixed a bunch of connection errors in TextureEditorPlugin | Yuri Roubinsky | |
2021-06-12 | Fix tangents array in SurfaceTool | jfons | |
2021-06-11 | Merge pull request #49312 from RandomShaper/reference_to_ref_count | Rémi Verschelde | |
Rename `Reference` to `RefCounted` | |||
2021-06-11 | Merge pull request #47835 from mortarroad/master-lossless-webp | Rémi Verschelde | |
Implement lossless WebP encoding | |||
2021-06-11 | Rename Reference to RefCounted | Pedro J. Estébanez | |
2021-06-11 | Implement lossless WebP encoding | Morris Tabor | |
2021-06-11 | Core: Move DirAccess and FileAccess to `core/io` | Rémi Verschelde | |
File handling APIs are typically considered part of I/O, and we did have most `FileAccess` implementations in `core/io` already. | |||
2021-06-09 | Merge pull request #42248 from Chaosus/vs_particles_shader | Rémi Verschelde | |
Continuation of work on visual particles system | |||
2021-06-08 | Removes deleted OrenNayar mode from shaders and materials | Yuri Roubinsky | |
2021-06-07 | Continuation of work on visual particles system | Yuri Roubinsky | |
2021-06-07 | Merge pull request #49308 from pycbouh/theme-prevent-type-override | Rémi Verschelde | |
Fix `Theme` overriding existing theme types with empty | |||
2021-06-07 | Style: Cleanup uses of double spaces between words | Rémi Verschelde | |
Or after punctuation. Tried to leave third-party stuff alone, unless it has been heavily modified for Godot. | |||
2021-06-07 | Adds `UVFunc` for panning/scaling on UV's to VisualShader's. | Yuri Roubinsky | |
2021-06-05 | New and improved IK system for Skeleton2D | TwistedTwigleg | |
This PR and commit adds a new IK system for 2D with the Skeleton2D node that adds several new IK solvers, a way to control bones in a Skeleton2D node similar to that in Skeleton3D. It also adds additional changes and functionality. This work was sponsored by GSoC 2020 and TwistedTwigleg. Full list of changes: * Adds a SkeletonModifier2D resource * This resource is the base where all IK code is written and executed * Has a function for clamping angles, since it is so commonly used * Modifiers are unique when duplicated so it works with instancing * Adds a SkeletonModifierStack2D resource * This resource manages a series of SkeletonModification2Ds * This is what the Skeleton2D directly interfaces with to make IK possible * Adds SkeletonModifier2D resources for LookAt, CCDIK, FABRIK, Jiggle, and TwoBoneIK * Each modification is in its own file * There is also a SkeletonModifier2D resource that acts as a stack for using multiple stacks together * Adds a PhysicalBone2D node * Works similar to the PhysicalBone3D node, but uses a RigidBody2D node * Changes to Skeleton2D listed below: * Skeleton2D now holds a single SkeletonModificationStack2D for IK * Skeleton2D now has a local_pose_override, which overrides the Bone2D position similar to how the overrides work in Skeleton3D * Changes to Bone2D listed below: * The default_length property has been changed to length. Length is the length of the bone to its child bone node * New bone_angle property, which is the angle the bone has to its first child bone node * Bone2D caches its transform when not modified by IK for IK interpolation purposes * Bone2D draws its own editor gizmo, though this is stated to change in the future * Changes to CanvasItemEditor listed below: * Bone2D gizmo drawing code removed * The 2D IK code is removed. Now Bone2D is the only bone system for 2D * Transform2D now has a looking_at function for rotating to face a position * Two new node notifications: NOTIFICATION_EDITOR_PRE_SAVE and NOTIFICATION_EDITOR_POST_SAVE * These notifications only are called in the editor right before and after saving a scene * Needed for not saving the IK position when executing IK in the editor * Documentation for all the changes listed above. | |||
2021-06-05 | Merge pull request #45364 from madmiraal/rename-quat | Rémi Verschelde | |
Rename Quat to Quaternion | |||
2021-06-05 | Deleted YSort, moved its functionality directly into Node2D. | andriyDev | |
YSort now has a compatibility alias to Node2D. Updated TileMap to use the existing Node2D y_sort_enabled property instead of its own property. Updated Node2D doc to include the new y_sort_enabled member. Updated TileMap doc to remove its mention of cell_y_sort. Deleted YSort doc. | |||
2021-06-04 | Rename Quat to Quaternion | Marcel Admiraal | |
2021-06-04 | Fix Theme overriding existing theme types with empty | Yuri Sizov | |
2021-06-04 | Merge pull request #49297 from aaronfranke/anim-type-tr3d | Rémi Verschelde | |
Rename Animation TYPE_TRANSFORM to TYPE_TRANSFORM3D | |||
2021-06-04 | Merge pull request #47336 from Calinou/rename-shader-file-extension | Rémi Verschelde | |
Rename the `.shader` file extension to `.gdshader` | |||
2021-06-03 | Rename Animation TYPE_TRANSFORM to TYPE_TRANSFORM3D | Aaron Franke | |
2021-06-03 | Rename Variant TRANSFORM to TRANSFORM3D | Aaron Franke | |
Also _transform to _transform3d | |||
2021-06-03 | Rename Transform to Transform3D in core | Aaron Franke | |
2021-06-01 | Merge pull request #45393 from Paulb23/code_edit_autocomplete | Rémi Verschelde | |
2021-06-01 | Move and expose AutoComplete in CodeEdit | Paulb23 | |
2021-06-01 | Merge pull request #49024 from groud/restore_tilemap_show_debug | Rémi Verschelde | |
Restore TileMap's debug collision shapes and add navigation. | |||
2021-06-01 | Merge pull request #49067 from JFonS/fix_gcc_warnings | Rémi Verschelde | |
Fix some warnings raised by GCC-11.1 | |||
2021-05-31 | Prevent Theme resource from emitting changes during bulk operations | Yuri Sizov | |
2021-05-31 | Merge pull request #49208 from aaronfranke/tileset-disable-dep-compat | Rémi Verschelde | |
Disable loop with CompatibilityTileData in TileSet when building with deprecated=no | |||
2021-05-30 | Disable loop with CompatibilityTileData when building with deprecated=no | Aaron Franke | |
2021-05-28 | Added Billboard Node to Visual Shaders | Yuri Roubinsky | |
2021-05-26 | Merge pull request #49056 from Chaosus/vs_color | Yuri Roubinsky | |
2021-05-26 | Implements expandable color ports in visual shaders | Yuri Roubinsky | |
2021-05-25 | Merge pull request #48546 from pycbouh/tree-highlight-selected-relationships | Rémi Verschelde | |
2021-05-25 | Merge pull request #48837 from Soupstraw/shader-pi | Rémi Verschelde | |
Added constants PI, TAU and E to the shader language | |||
2021-05-25 | Add highlight to the relationship lines of selected Tree items | Yuri Sizov | |
2021-05-25 | Fix some warnings raised by GCC-11.1 | jfons | |
2021-05-25 | Rename File::get_len() get_length() | Marcel Admiraal | |
2021-05-25 | Restore a way to show collsion/navigation on TileMap. | Gilles Roudière | |
Also remove an unused function. | |||
2021-05-25 | Merge pull request #48955 from Calinou/editor-tweak-property-hints | Rémi Verschelde | |
Tweak dozens of editor property hints for consistency | |||
2021-05-25 | Added constants PI, TAU and E to the shader language | Joosep Jääger | |
2021-05-25 | Tweak dozens of editor property hints for consistency | Hugo Locurcio | |
- Update Viewport MSAA property hints to match the currently exposed values. - Add some performance hints to property hints. | |||
2021-05-23 | Support for 2D particles to collide against SDF | reduz | |
-Added SDF collision support for 2D particles -Changed the SDF generation to be fully signed |