summaryrefslogtreecommitdiff
path: root/editor/plugins
AgeCommit message (Collapse)Author
2020-05-05Merge pull request #37293 from Janglee123/ctrl-click-improvementsRémi Verschelde
Improved go-to definition (Ctrl + Click)
2020-05-05Some fixes for canvas item visual shader inputsYuri Roubinsky
2020-05-05Improved go-to definition (Ctrl + Click)janglee
Co-Authored-By: Bojidar Marinov <bojidar.marinov.bg@gmail.com>
2020-05-04Merge pull request #37717 from qarmin/world_fixRémi Verschelde
Change non-existent World to World3D
2020-05-01Fix Soft Reload Script shortcut clash with Replace in FilesDominik 'dreamsComeTrue' Jasiński
Fixes: #38362
2020-05-01Merge pull request #37939 from MrRevington/SpriteFramesEditoAtlasTextureSupportRémi Verschelde
Add AtlasTexture support in SpriteFrames Editor
2020-04-30Add AtlasTexture support in SpriteFrames Editor - Add Frames from a Sprite SheetMrRevington
2020-04-30Merge pull request #38325 from Calinou/editor-no-focus-on-align-with-viewRémi Verschelde
Don't focus the selection after using Align Transform With View
2020-04-29Fixed false positives in the culling system.Kiri Jolly
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.
2020-04-29Merge pull request #20371 from aaronfranke/vector-lerpRémi Verschelde
[Core] [Mono] [GDNative] Rename "linear_interpolate" methods to "lerp"
2020-04-29Don't focus the selection after using Align Transform With ViewHugo Locurcio
It made minor adjustments difficult as the camera moved every time Align Transform With View was used. This closes #36738.
2020-04-29Merge pull request #37523 from 1abinitio1/masterRémi Verschelde
Add option for editor freelook camera sensitivity
2020-04-29[Core] Rename linear_interpolate to lerpAaron Franke
2020-04-29Merge pull request #37705 from ↵Rémi Verschelde
dreamsComeTrue/editor-animation-player-improvements Allow to rename animation just after it was duplicated in Editor
2020-04-29Add option for editor freelook camera sensitivity1abinitio1
2020-04-29Merge pull request #38235 from BigRed-118/help_tabs_shuffle_fixRémi Verschelde
Fixed shuffling editor help tabs
2020-04-28Rename InputFilter back to InputRémi Verschelde
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.
2020-04-26Fixed shuffling editor help tabsTom Evans
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.
2020-04-22Fixed output prints " Signal 'node_removed' is already connected " when the ↵dankan1890
editor settings window is closed. Close #38012
2020-04-21Update Joint gizmos automaticallyjfons
2020-04-20Exposed RenderingDevice to script APIJuan Linietsky
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.
2020-04-20Merge pull request #37989 from Calinou/add-freelook-navigation-scheme-settingsRémi Verschelde
Add editor freelook navigation scheme settings
2020-04-20Fix handling of PROPERTY_USAGE_SUBGROUP in DocData and editorRémi Verschelde
Subgroups were added in #37678 but not properly handled everywhere where PROPERTY_USAGE_GROUP is.
2020-04-18Add editor freelook navigation scheme settingsHugo Locurcio
Depending on what one is trying to achieve, a different freelook mode may be more desirable. This closes #34034.
2020-04-18Change non-existent World to World3Dqarmin
2020-04-17Implement global and per instance shader uniforms.Juan Linietsky
Adds two keywords to shader language for uniforms: -'global' -'instance' This allows them to reference values outside the material.
2020-04-16Merge pull request #37012 from Calinou/reverse-builtin-script-namingRémi Verschelde
Tweak the built-in script naming for resources with custom names
2020-04-15Added selection outline to locked nodes.Eric M
2020-04-14Merge pull request #37861 from reduz/implement-decalsRémi Verschelde
Implement decals
2020-04-14Implement decalsJuan Linietsky
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
2020-04-13Merge pull request #37843 from qarmin/unitialized_crashRémi Verschelde
Fixed crash caused by uninitialised variable
2020-04-13Fixed crash caused by unitialized variableqarmin
2020-04-13Merge pull request #37823 from MCrafterzz/relativeSnapRémi Verschelde
Relative scale snapping 2D
2020-04-13Relative scale snapping 2DMarcus Elg
2020-04-12Remove separators from particles menusNico Mitchell
2020-04-12Implement MSAAJuan Linietsky
2020-04-12Add screen space AA option, with FXAA implementation.Juan Linietsky
2020-04-10Shows proper scene render time in editor infoJuan Linietsky
Also fixed GPU profiler, which was not working on nvidia hardware.
2020-04-10Othographic camera in-editor now uses Z near/far settings instead of a ↵Kiri Jolly
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)
2020-04-10Merge pull request #37509 from wazzy47/issue_36228Rémi Verschelde
Add "preview_on_sphere" setting of material editor plugin
2020-04-10Allow to rename animation just after it was duplicated & show animation name ↵Dominik 'dreamsComeTrue' Jasiński
in Delete prompt
2020-04-08Merge pull request #37678 from reduz/refactor-shadowmappingJuan Linietsky
Refactored shadowmapping.
2020-04-08Refactored shadowmapping.Juan Linietsky
- 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
2020-04-08Merge pull request #37644 from JFonS/gizmos_renameRémi Verschelde
Rename all gizmo classes, using the 4.0 node names.
2020-04-07Rename all gizmo classes, using the 4.0 node names.jfons
2020-04-06Merge pull request #37623 from Chaosus/vs_fix_keyword_nameYuri Roubinsky
Adds warning to the uniform name in visual shader if its equal to keyword
2020-04-06Adds warning to the uniform name in visual shader if its equal to keywordYuri Roubinsky
2020-04-06Merge pull request #37621 from dankan1890/autoslice_fixRémi Verschelde
Fixed TextureRegion autoslice issue.
2020-04-06TextureRegion: fixed Autoslice not created/updated properly.dankan1890
2020-04-06Merge pull request #37556 from KoBeWi/kill_get_indexRémi Verschelde
Remove Node.get_position_in_parent()