Age | Commit message (Collapse) | Author |
|
Improved go-to definition (Ctrl + Click)
|
|
|
|
Co-Authored-By: Bojidar Marinov <bojidar.marinov.bg@gmail.com>
|
|
Change non-existent World to World3D
|
|
Fixes: #38362
|
|
Add AtlasTexture support in SpriteFrames Editor
|
|
|
|
Don't focus the selection after using Align Transform With View
|
|
This fixes numerous false positives coming out of the culling system.
AABB checks are now a full separating-axis check against the frustum, with the points of the frustum being compared to the planes of the box just as the points of the box were being compared to the planes of the frustum. This fixes large objects behind the camera not being culled correctly.
Some systems that used frustums that were (sometimes mistakenly?) unbounded on one or more side have been modified to be fully enclosed.
|
|
[Core] [Mono] [GDNative] Rename "linear_interpolate" methods to "lerp"
|
|
It made minor adjustments difficult as the camera moved every time
Align Transform With View was used.
This closes #36738.
|
|
Add option for editor freelook camera sensitivity
|
|
|
|
dreamsComeTrue/editor-animation-player-improvements
Allow to rename animation just after it was duplicated in Editor
|
|
|
|
Fixed shuffling editor help tabs
|
|
It changed name as part of the DisplayServer and input refactoring
in #37317, with the rationale that input no longer goes through the
main loop, so the previous Input singleton now only does filtering.
But the gains in consistency are quite limited in the renaming, and
it breaks compatibility for all scripts and tutorials that access
the Input singleton via the scripting language. A temporary option
was suggested to keep the scripting singleton named `Input` even if
its type is `InputFilter`, but that adds inconsistency and breaks C#.
Fixes godotengine/godot-proposals#639.
Fixes #37319.
Fixes #37690.
|
|
The indexes for the ScriptEditorItemData entries were not getting
updated after sorting. This would cause a page to be open but with a
different tab selected. Whenever _update_script_names was called next,
it would correct this indexing. Now we correct it immediately following
the tab sort.
|
|
editor settings window is closed.
Close #38012
|
|
|
|
Also added an easier way to load native GLSL shaders.
Extras:
Had to fix no-cache for subresources in resource loader, it was not properly working, making shaders not properly reload.
Note:
The precommit hooks are broken because they don't seem to support enums from one class being used in another.
Feel free to fix this after merging this PR.
|
|
Add editor freelook navigation scheme settings
|
|
Subgroups were added in #37678 but not properly handled everywhere
where PROPERTY_USAGE_GROUP is.
|
|
Depending on what one is trying to achieve, a different freelook mode
may be more desirable.
This closes #34034.
|
|
|
|
Adds two keywords to shader language for uniforms:
-'global'
-'instance'
This allows them to reference values outside the material.
|
|
Tweak the built-in script naming for resources with custom names
|
|
|
|
Implement decals
|
|
Also implemented decal atlas, so projectors and other stuff can be added.
Sidenote: Had to make RID hashable, so some unrelated includes changed
in order to include it in hashfuncs.h
|
|
Fixed crash caused by uninitialised variable
|
|
|
|
Relative scale snapping 2D
|
|
|
|
|
|
|
|
|
|
Also fixed GPU profiler, which was not working on nvidia hardware.
|
|
hardcoded value
Fixes #18809.
The in-editor ortho camera used a far clipping plane of 8192 units, and was
placed 4096 units away from the camera cursor.
This was far enough to cause culling issues from floating point precision loss
on objects smaller than one unit.
This change modifies the near/far clipping planes of the ortho camera to use
those specified in the editor (and currently used by the perspective camera).
The frustum is still centered around the camera cursor location, as it was
before.
(cherry picked from commit 26912c15e625f234a0528f239bf5e5ab2f858d9a)
|
|
Add "preview_on_sphere" setting of material editor plugin
|
|
in Delete prompt
|
|
Refactored shadowmapping.
|
|
- Made shadow bias size independent, so it will remain when changing light or camera size.
- Implemented normal offset bias, which greatly enhances quality.
- Added transmission to subsurface scattering
- Reimplemented shadow filter modes
Closes #17260
|
|
Rename all gizmo classes, using the 4.0 node names.
|
|
|
|
Adds warning to the uniform name in visual shader if its equal to keyword
|
|
|
|
Fixed TextureRegion autoslice issue.
|
|
|
|
Remove Node.get_position_in_parent()
|