Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-28 | Merge pull request #63532 from TokageItLab/rename-cubic-slerp | Rémi Verschelde | |
2022-07-28 | Merge pull request #57698 from ↵ | Rémi Verschelde | |
bluenote10/feature/rename_translated_to_translated_local | |||
2022-07-28 | Merge pull request #63248 from Rindbee/reselect-the-timing-of-first_draw | Rémi Verschelde | |
2022-07-28 | Merge pull request #56597 from V-Sekai/material_drag_and_drop | Rémi Verschelde | |
Add drag-and-drop support for materials in 3D Instances | |||
2022-07-28 | Remove `first_draw` and reset visibility when entering tree | Rindbee | |
2022-07-27 | Add a Movie Quit On Finish property to AnimationPlayer | Hugo Locurcio | |
This quits the project when an animation is done playing in the given AnimationPlayer, but only in Movie Maker mode. When this happens, a message is printed with the absolute path of the AnimationPlayer node that caused the engine to quit. This can be used to create videos that stop at a specified time without having to write any script. A report is now also printed to the console when the video is done recording (as long as the engine was exited properly). This report is unfortunately not always visible in the editor's Output panel, as it's printed too late. A method was also added to get the path to the output file from the scripting API. | |||
2022-07-27 | Merge pull request #63138 from TokageItLab/normalize-position-track | Rémi Verschelde | |
Add position track normalization to importer retarget | |||
2022-07-27 | rename and unify notation for spherical interpolation | Silc Renew | |
2022-07-27 | Merge pull request #62973 from bruvzg/sysfont_support | Rémi Verschelde | |
2022-07-27 | Merge pull request #63355 from YeldhamDev/directional_tooltip | Rémi Verschelde | |
2022-07-27 | Merge pull request #63440 from YuriSizov/joints-six-degrees-of-order | Rémi Verschelde | |
2022-07-27 | Merge pull request #63318 from YuriSizov/control-code-reorg | Rémi Verschelde | |
2022-07-27 | Merge pull request #58296 from Calinou/decal-distance-fade-tweak-defaults | Rémi Verschelde | |
2022-07-27 | Add a check to prevent duplicating connections in visual shader | Yuri Rubinsky | |
2022-07-27 | Tweak Decal distance fade defaults and add property hints | Hugo Locurcio | |
The new default values are more usable in real world scenarios when smooth fading of distant decals is desired for performance reasons. The Decal distance fade property hints were adjusted based on the GeometryInstance3D visibility range fade property hints. `or_greater` was also added to allow specifying larger values if needed. | |||
2022-07-26 | Reorganize code of control.cpp for better maintainability | Yuri Sizov | |
2022-07-26 | Fix unnamed arguments in XML docs | RedMser | |
2022-07-26 | Merge pull request #63496 from groud/fix_tile_set_not_saving | Rémi Verschelde | |
Fix TileSet not loading correctly when embedded in a scene | |||
2022-07-26 | Fix TileSet not loading correctly when embedded in a scene | Gilles Roudière | |
2022-07-26 | Merge pull request #62972 from Chaosus/shader_groups | Rémi Verschelde | |
Implement shader uniform groups/subgroups | |||
2022-07-26 | Merge pull request #63484 from groud/fix_tilemap_clear_layer | Rémi Verschelde | |
2022-07-26 | Fixes TileMap clear_layer not recreating internal CanvasItems | Gilles Roudière | |
2022-07-26 | add position track normalization & post process key value for retarget | Silc Renew | |
2022-07-26 | Merge pull request #63482 from bruvzg/fix_rtl_theme_font_sizes | Rémi Verschelde | |
2022-07-26 | Implement shader uniform groups/subgroups | Yuri Rubinsky | |
2022-07-26 | Merge pull request #63462 from TokageItLab/fix-anim-player-bone-pose-cache | Rémi Verschelde | |
Fix initial value of TRS3DTrack cache in `AnimationPlayer` | |||
2022-07-26 | [RichTextLabel] Fix theme bold / italics / bold italics and mono font size ↵ | bruvzg | |
not applied correctly. | |||
2022-07-26 | Merge pull request #63472 from timothyqiu/tree-row-cell-bg | Rémi Verschelde | |
Tree: Don't draw selection background of individual cells in Row mode | |||
2022-07-26 | Implement support for loading system fonts on Linux, macOS / iOS and Windows. | bruvzg | |
2022-07-26 | Tree: Don't draw selection background of individual cells in Row mode | Haoyu Qiu | |
2022-07-26 | Fix initial value of TRS3DTrack cache in AnimationPlayer | Silc Renew | |
2022-07-25 | Fix negative indices in TreeItem | kobewi | |
2022-07-25 | Fix missing Distance Fade category in OmniLight3D/SpotLight3D inspector | Hugo Locurcio | |
2022-07-25 | Group properties of Generic6DOFJoint slightly better | Yuri Sizov | |
2022-07-25 | Remove ThreadWorkPool, replace by WorkerThreadPool | Juan Linietsky | |
The former needs to be allocated once per usage. The later is shared for all threads, which is more efficient. It can also be better debugged. | |||
2022-07-25 | Code quality: Fix header guards consistency | Rémi Verschelde | |
Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards. | |||
2022-07-25 | Merge pull request #63219 from reduz/implement-vector4-projection | Rémi Verschelde | |
2022-07-25 | Merge pull request #63270 from aaronfranke/fog-density | Rémi Verschelde | |
Change fog density range hint to be 0 to 1 with or_greater | |||
2022-07-24 | Merge pull request #63407 from RedMser/install-effect-error | Rémi Verschelde | |
Add error for invalid RichTextLabel.install_effect | |||
2022-07-24 | Add error for invalid RichTextLabel.install_effect | RedMser | |
2022-07-24 | Merge pull request #63238 from joaopedrosgs/patch-1 | Rémi Verschelde | |
Fix incorrect expression base in `AnimationNodeStateMachinePlayback::_check_advance_condition` | |||
2022-07-23 | Make tooltips be shown at different directions if there's not enough space | Michael Alexsander | |
2022-07-23 | Implement Vector4, Vector4i, Projection | reduz | |
Implement built-in classes Vector4, Vector4i and Projection. * Two versions of Vector4 (float and integer). * A Projection class, which is a 4x4 matrix specialized in projection types. These types have been requested for a long time, but given they were very corner case they were not added before. Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity. **Q**: Why Projection and not Matrix4? **A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming. | |||
2022-07-23 | Merge pull request #63265 from reduz/stream-bpm-support | Rémi Verschelde | |
Implement BPM support in AudioStream files. | |||
2022-07-23 | Implement BPM support | reduz | |
Based on #62896, only implements the BPM support part. * Implements BPM support in the AudioStreamOGG/MP3 importers. * Can select BPM/Bar Size and total beats in a song file, as well as edit looping points. * Looping is now BPM aware * Added a special importer UI for configuring this. * Added a special preview showing the audio waveform as well as the playback position in the resource picker. * Renamed `AudioStream::instance` to `instantiate` for correctness. | |||
2022-07-23 | Merge pull request #62513 from reduz/shader_preprocessor_remake | Rémi Verschelde | |
2022-07-22 | Merge pull request #62093 from Rindbee/fix-undecided-min_size-in-ScrollContainer | Rémi Verschelde | |
2022-07-22 | Merge pull request #62581 from Guh-Feng/Color-Picker-Update | Rémi Verschelde | |
2022-07-22 | Clean up Shader Preprocessor | reduz | |
* Moved preprocessor to Shader and ShaderInclude * Clean up RenderingServer side * Preprocessor is separate from parser now, but it emits tokens with include location hints. * Improved ShaderEditor validation code * Added include file code completion * Added notification for all files affected by a broken include. | |||
2022-07-22 | Adding shader preprocessor support | Yuri Roubinsky | |
Co-authored-by: TheOrangeDay <6472143+TheOrangeDay@users.noreply.github.com> |