| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
• Ensure utf-8 encoding if previously unspecified
|
|
|
|
|
|
|
|
| |
Default shortcuts use the first or second letter of each word.
This also adds a new shortcut to toggle the last opened bottom panel.
On editor startup, this defaults to the first panel in the list
(which is the Output panel).
|
|\
| |
| | |
Move dotnet-format script to pre-commit
|
| |
| |
| |
| | |
Co-authored-by: Paul Joannon <437025+paulloz@users.noreply.github.com>
|
|/ |
|
|
|
|
|
|
|
|
|
|
|
| |
`pre-commit` can be installed with pip, and configured in the Godot repo with
`pre-commit install`. It can then easily be run both locally with
`pre-commit run`, and on CI, in a cross-platform way.
This makes it much easier for contributors to set up pre-commit hooks,
without having to manually copy files to their git folder.
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|
|
|
| |
requiring an additional call to get_bone_count.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This update introduces a new import method for FBX files using ufbx. If the fbx2gltf import fails, it will use the most recently cached scene from the ufbx import. The process is sped up by introducing threads to load the ufbx portion.
Key changes include:
- Support for importing geometry helper nodes in FBX files.
- Addition of cameras and lights with updated names.
- Removal of the fbx importer manager.
- Introduction of ModelDocument3D and updates to its methods.
- Changes to FBX import options and visibility.
- Updating the documentation and handling some errors.
- Store the original non-unique node, mesh and animation names in FBX and glTF.
Co-Authored-By: bqqbarbhg <bqqbarbhg@gmail.com>
|
|
|
|
| |
Fix a couple GCC warnings.
|
|
|
|
|
| |
- Use `StringName()` in DEFVAL for StringNames.
- Use `Variant()` in DEFVAL for Variants.
|
| |
|
|\
| |
| |
| | |
Add optional depth fog to Environment
|
| | |
|
|/
|
|
| |
This reverts commit bf37a9bac6ebfb09c0a374260c35ede8373ce427.
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| | |
Visual Studio: Fix user workflows with custom user VS configurations
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Users can add additional VS project configurations with their own
custom settings, but to support this workflow, we can't rely directly
on $(Platform) and $(Configuration), because VS needs those to be
both unique Configuration|Platform combos, and we need to allow for
different combos of Configuration|Platform to point to the same
scons build configuration.
GodotPlatform and GodotConfiguration properties lets us decouple from
the magic VS properties that we don't control, so users can add
however many Platform|Configuration combos they want and still
point to a specific GodotPlatform|GodotConfiguration build config.
|
|\ \
| | |
| | |
| | | |
Finish splitting functionality of the `RenderingDevice` backends into `RenderingDeviceDriver`.
|
| | |
| | |
| | |
| | | |
RenderingDeviceDriver.
|
|\ \ \
| |/ /
|/| |
| | | |
Add PWA option to ensure cross-origin isolation headers on web export
|
| | | |
|
|/ / |
|
|\ \
| | |
| | |
| | | |
Add `tests/python_build` to clang-format pre-commit hook ignore list
|
| | |
| | |
| | |
| | | |
It had been ignored by misc/scripts/clang_format.sh since 388d35b74d8919b251faae9e24af50476f12b1a2 but not the hook.
|
|\ \ \
| | | |
| | | |
| | | | |
Change AudioStreamPlayer autoplay and GLTFBufferView getters to be const
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | | |
This is used by the inspector so it can show a warning icon on
a specific property.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Using 2.2.7.dev115+g0eb441d6.
Had to add `cancelled` to the ignore list, as it's a Wayland signal which
we're handling in our code, so we don't want codespell to fix that "typo".
Also includes the typo fix from #87927.
Co-authored-by: Divyanshu Shekhar <61140213+divshekhar@users.noreply.github.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
ShaderMaterial is the "advanced" option, while the "basic" options
should be listed first for easier accessibility (and because they're
generally used more often).
This makes sky and particle materials consistent with
canvas/spatial/fog materials on this aspect.
|
|\ \ \
| | |/
| |/|
| | | |
New VS proj generation logic that supports any platform that wants to opt in
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Custom Visual Studio project generation logic that supports any platform that has a msvs.py
script, so Visual Studio can be used to run scons for any platform, with the right defines per target.
Invoked with `scons vsproj=yes`
To generate build configuration files for all platforms+targets+arch combinations, users should call
```
scons vsproj=yes platform=XXX target=YYY [other build flags]
```
for each combination of platform+target[+arch]. This will generate the relevant vs project files but
skip the build process, so that project files can be quickly generated without waiting for a command line
build. This lets project files be quickly generated even if there are build errors.
All possible combinations of platform+target are created in the solution file by default, but they
won't do anything until each one is set up with a scons vsproj=yes command for the respective platform
in the appropriate command line. This lets users only generate the combinations they need, and VS
won't have to parse settings for other combos.
Only platforms that opt in to vs proj generation by having a msvs.py file in the platform folder are included.
Platforms with a msvs.py file will be added to the solution, but only the current active platform+target+arch
will have a build configuration generated, because we only know what the right defines/includes/flags/etc are
on the active build target currently being processed by scons.
Platforms that don't support an editor target will have a dummy editor target that won't do anything on build,
but will have the files and configuration for the windows editor target.
To generate AND build from the command line, run
```
scons vsproj=yes vsproj_gen_only=no
```
|
|/ /
| |
| |
| | |
Prevents errors with input being invalid format strings
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This makes it much faster to get started with Direct3D 12 builds,
as you only need to run `python .\misc\scripts\install_d3d12_sdk_windows.py`
then run `scons d3d12=yes`.
This installs DirectX Shader Compiler, Mesa NIR, WinPixEventRuntime
and DirectX 12 Agility SDK.
- Define a default path that uses the locations from the script.
- Now the default path is in "%LOCALAPPDATA%\Godot\build_deps\"
- Updated CI to use this new python script.
Co-Authored-By: Hugo Locurcio <hugo.locurcio@hugo.pro>
|
| |
| |
| |
| |
| |
| |
| |
| | |
This works even if file logging is disabled in the project settings,
or for the editor/project manager.
`--log-file`'s value can be an absolute path or relative to the project
directory (similar to existing arguments like `--write-movie`).
|
|\ \
| | |
| | |
| | | |
[iOS] Update linker flags for Xcode 15.2.
|
| | | |
|
|/ /
| |
| |
| | |
- GraphEdit now uses Line2D nodes to draw connection lines and uses a dedicated canvas item shader for them
|
|\ \
| | |
| | |
| | | |
Add `THREADS_ENABLED` macro in order to compile Godot to run on the main thread
|
| | | |
|
|/ / |
|
| | |
|
|/ |
|
|
|
|
| |
Adds a new system to automatically reorder commands, perform layout transitions and insert synchronization barriers based on the commands issued to RenderingDevice.
|
|
|
|
| |
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|\
| |
| |
| | |
Style: Mark clang-format 16 as supported for pre-commit hook
|