Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-04-06 | Merge pull request #59947 from vnen/gdscript-static-methods-classdb | Rémi Verschelde | |
2022-04-06 | GDScript: Add support for static method calls in native types | George Marques | |
2022-04-06 | Fix some issues found by cppcheck. | bruvzg | |
2022-04-06 | Merge pull request #59862 from bruvzg/font_delay_texture_update | Rémi Verschelde | |
Delay font texture update, until `draw` is called. Rasterize glyphs during shaping. | |||
2022-04-05 | Merge pull request #59930 from Scony/fix-navi-get-simple-path-master | Rémi Verschelde | |
Fix `map_get_path` aka `get_simple_path` behavior in 2D & 3D | |||
2022-04-05 | Fix get_simple_path behavior in 2D & 3D | Pawel Lampe | |
2022-04-05 | Fix `NoiseTexture._generate_texture` crash | Paweł Fertyk | |
Fixes #59915 . | |||
2022-04-05 | CI: Update black formatter and apply changes | Rémi Verschelde | |
2022-04-05 | Delay font texture update, until `draw` is called. Rasterize glyphs during ↵ | bruvzg | |
shaping. | |||
2022-04-04 | Merge pull request #59888 from akien-mga/clang-tidy | Rémi Verschelde | |
2022-04-04 | Merge pull request #59885 from Jayman2000/autoload-inheritance-message | Rémi Verschelde | |
2022-04-04 | Improve autoload inheritance error message | Jason Yundt | |
Autoloaded scripts should always inherit from Node. When you run a project that tries to autoload a script which doesn’t inherit from Node, then Godot gives an error. Before this change, the error said “Script does not inherit a Node”. That error message is a little bit misleading. If a class inherits a Node, then one of its superclasses has a Node. If a class inherits _from_ Node, then one of its superclasses is Node. This change corrects that mistake. Fixes #59884. | |||
2022-04-04 | Style: Apply clang-tidy to current code, add `readability-redundant-member-init` | Rémi Verschelde | |
2022-04-04 | Zero initialize all pointer class and struct members | Rémi Verschelde | |
This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr. | |||
2022-04-04 | Merge pull request #59513 from BastiaanOlij/openxr_actionmap_editor | Rémi Verschelde | |
2022-04-04 | Add action map editor for OpenXR | Bastiaan Olij | |
2022-04-03 | Initialize pointer variables to fix random crash on startup. | Marc Gilleron | |
`configure_blender_dialog` is lazily created if equal to null, however nothing really sets it to null. | |||
2022-04-03 | Merge pull request #59633 from EricEzaM/better-code-complete-update | Rémi Verschelde | |
Improve sorting of Code Completion options. | |||
2022-04-01 | Improve sorting of Code Completion options. | Eric M | |
Done by ordering options by their location in the code - e.g. local, parent class, global, etc. | |||
2022-04-01 | Merge pull request #59764 from reduz/blender-import-autodetect | Rémi Verschelde | |
2022-04-01 | Add Blender install autodetection and configuration. | reduz | |
This PR is a continuation to #54886 * Changed Blender path editor setting from binary to installation. * Add a class to query whether the format is supported. * This class allows to create proper editors to configure support. **NOTE**: This PR only provides autodetection on Linux. Code needs to be added for Windows and MacOS to autodetect the Blender installation. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> Co-authored-by: Pedro J. Estébanez <pedrojrulez@gmail.com> | |||
2022-03-31 | Fix group name in FastNoise and Gradient | FireForge | |
2022-04-01 | Merge pull request #59755 from V-Sekai/import-gltf-mat-placeholder | Rémi Verschelde | |
2022-03-31 | Merge pull request #59753 from V-Sekai/let-there-be-light | Rémi Verschelde | |
2022-03-31 | Add support for Blend importing of material placeholders. | K. S. Ernest (iFire) Lee | |
Couldn't get the 'NONE' option to work. | |||
2022-03-31 | Allow importing punctual lights from Blend. | K. S. Ernest (iFire) Lee | |
2022-03-31 | Fix some issues found by clang sanitizers. | bruvzg | |
2022-03-31 | [Brotli] Use aligned reads when building with sanitizers. | bruvzg | |
2022-03-31 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 2.2-dev from current git. Fix a couple incorrect uses of gendered pronouns. | |||
2022-03-31 | [ICU] Add library name suffix for API rename to avoid conflicts (GDExtension ↵ | bruvzg | |
build). | |||
2022-03-30 | Merge pull request #59694 from vnen/gdscript-better-call-super | Rémi Verschelde | |
2022-03-30 | Merge pull request #58983 from Chaosus/gds_fix_builtin_methods_completion | Rémi Verschelde | |
2022-03-30 | GDScript: Fix issues with completion and `super` calls | George Marques | |
- Make call errors use the call node instead of the calle, which will be empty on super calls. - Don't allow `super()` to be used within lambdas. | |||
2022-03-30 | Fix autocompletion of static methods in built-in types in GDScript | Yuri Roubinsky | |
2022-03-30 | Add fbx2gltf support for importing .fbx files | K. S. Ernest (iFire) Lee | |
Lets you drag or place .fbx files in the project folder and it will import the files. An editor setting sets the location of the fbx2gltf binary. Enables .fbx and .blend by default. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2022-03-30 | Remove ad-hoc FBX importer | Rémi Verschelde | |
This importer was the fruit of a lot of amazing reverse engineering work by RevoluPowered, based on the original Assimp importer that was introduced by fire. While promising and well tuned for a specific type of FBX scenes, it was found to have many flaws to support the many FBX exporters and legacy models that Godot users want to use. As we currently lack a maintainer to improve it, those issues are left unresolved and FBX import is still sub-par in the current Godot releases. After some experimentation, we're instead adding a new importer that relies on Facebook's `fbx2gltf` command line tool to convert FBX to glTF, so that we can then use our well-maintained glTF importer. See #59653 and https://github.com/facebookincubator/FBX2glTF for details. | |||
2022-03-30 | Add PortableCompressedTexture | reduz | |
* Resource that allows saving textures embedded in scenes or standalone. * Supports only formats that are portable: Lossy, Lossles or BasisUniversal This is something I wanted to add for a long time. I made it now because @fire requires it for importing GLTF2 files with embedded textures, but also this will allow saving Godot scenes as standalone binary files that will run in all platforms (because textures will load everywhere). This is ideal when you want to distribute individual standalone assets online in games that can be built from Godot scenes. | |||
2022-03-29 | Merge pull request #59507 from bruvzg/openxr_move_proj_settings | Rémi Verschelde | |
Move OpenXR project settings to the main, to make them visible on unsupported platforms. | |||
2022-03-29 | Move OpenXR project settings to the main, to make them visible on ↵ | bruvzg | |
unsupported platforms. | |||
2022-03-29 | Add support for importing .blend files | K. S. Ernest (iFire) Lee | |
Lets you drag or place .blend files in the project folder and it will import the files. Checks for Blender 3.0's gltf2 `export_keep_originals` option. Add basepath support to GLTFDocument append_from_file. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2022-03-29 | Merge pull request #59583 from V-Sekai/svg-crash | Rémi Verschelde | |
2022-03-29 | Set threads to be one to avoid SVG crash. | K. S. Ernest (iFire) Lee | |
2022-03-29 | Merge pull request #59660 from timothyqiu/fbx-reg | Rémi Verschelde | |
2022-03-29 | Simplify FBX importer project settings registering | Haoyu Qiu | |
2022-03-29 | [ICU] Add library name suffix for API rename to avoid conflicts. | bruvzg | |
2022-03-28 | Merge pull request #59644 from akien-mga/template-no-editor-dep | Rémi Verschelde | |
2022-03-28 | Merge pull request #56718 from Geometror/noise-overhaul | Rémi Verschelde | |
2022-03-28 | Remove last editor code dependencies in template build | Rémi Verschelde | |
SConstruct change also makes it possible to outright delete the `editor` folder in a `tools=no` build, which we use in CI to ensure no invalid cross-dependencies are added. | |||
2022-03-28 | Merge pull request #59636 from akien-mga/string-remove-ttr | Rémi Verschelde | |
2022-03-28 | Merge pull request #59641 from Sauermann/fix-encoder-compiler-warning | Rémi Verschelde | |