Age | Commit message (Collapse) | Author |
|
Added filter to SceneTreeDialog
|
|
Improve localization
|
|
Fixes minor issues found by static analyzer
|
|
|
|
|
|
Sort selected nodes in scene tree before duplication
|
|
Fix editor remaining dimmed after certain actions
|
|
|
|
Fixes #30368
|
|
|
|
For clarity, assign-to-release idiom for PoolVector::Read/Write
replaced with a function call.
Existing uses replaced (or removed if already handled by scope)
|
|
This commit improves localization and clarifies that once removed, the file cannot be restored
|
|
|
|
|
|
Add editor menu to open the project data "user://" location.
|
|
Re-write mono module editor code in C#
|
|
Enhance game export
|
|
|
|
Smarter node placement after duplicating
|
|
Reparent selection without flattening
|
|
Dim the editor window while it's quitting
|
|
Got replace-all working without breaking search
|
|
LikeLakers2/scenetreedock-script-creation-bugfix-2
SceneTreeDock will reset the ScriptCreateDialog's inheritance base type whenever it opens the dialog
|
|
Use CheckBoxes in the editor instead of CheckButtons when applicable
|
|
ptrcall assumes methods that return a Reference type do so with Ref<T>. Returning Reference* from a method exposed to the scripting API completely breaks ptrcalls to this method (it can be quite hard to debug!).
|
|
Make the build system automatically build the C# Api assemblies to be shipped with the editor.
Make the editor, editor player and debug export templates use Api assemblies built with debug symbols.
Always run MSBuild to build the editor tools and Api assemblies when building Godot.
Several bugs fixed related to assembly hot reloading and restoring state.
Fix StringExtensions internal calls not being registered correctly, resulting in MissingMethodException.
|
|
Show icons for code completion options
|
|
|
|
This makes it clearer that the editor window is busy while it's quitting
(which can take a while on slower PCs).
This also makes it feel more responsive to user input.
Note that the effect is only visible if
"Interface > Editor > Quit Confirmation" is disabled in the
Editor Settings, as the quit confirmation already makes
the editor window dim while quitting.
|
|
|
|
|
|
|
|
CheckButtons should only be used if toggling them has an
immediate effect. Otherwise, CheckBoxes should be used.
|
|
When reparenting a multi-selection via drag and drop, the hierarchy was flattened. This change resolves that issue.
|
|
Supersedes and closes #30225.
|
|
|
|
The basic point is as in 2.1 (appending the PCK into the executable), but this implementation also patches a dedicated section in the ELF/PE executable so that it matches the appended data perfectly.
The usage of integer types is simplified in existing code; namely, using plain `int` for small quantities.
|
|
Implement snapping for most 3D gizmos
|
|
Fixes #26151.
Co-Authored-By: Michael Alexsander Silva Dias <michaelalexsander@protonmail.com>
|
|
|
|
Implement snapping in the CSG gizmos and 3D polygon editor
|
|
ConnectionsDock: Add tooltip with signal description
|
|
Tilemap fix displaced textures and shapes and added center texture and compatibility mode
|
|
Fix editor crash when StreamPeerSSL is unavilable.
|
|
Add "Go To" menu to the script editor and move the bookmark and breakpoint menus there
|
|
The spatial editor snap settings will now affect the CSG gizmos
and 3D polygon editor (which is used in CSGPolygon).
|
|
compatibility mode
This commit fix #22989 #15249 #28206. Main problem is that tilemap displace textures in different tile origins in a strange way and doesn´t respect coincidence between texture and shapes in not uniform tiles. This issue is present in godot 3.0 and godot 3.1. To maintain compatibility are added a compatibility mode and a center texture option. Other related issues and pull request: #28896 #29487 #29519 #29961. Idications of #30204 are added
|
|
Had to create a custom Tree to override `make_custom_control` for the
rich text display, similar to EditorProperty.
Fixes #30244.
|
|
The fix for EditorNode is a bit hacky, but the handling of the buttons
and features there is hacky too (based on enums that might not reflect
the actual state).
|
|
CryptoCore class to access to base crypto utils.
|