summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
2018-08-21BPTC supportelasota
2018-08-22Merge pull request #21274 from YeldhamDev/meshlib_editor_fixesRémi Verschelde
Fix MeshLibrary editor
2018-08-22Add modulation of tiles from tileset in palette and editor drawLaurent Van Acker
2018-08-21Fix MeshLibrary editorMichael Alexsander Silva Dias
2018-08-21Merge pull request #21252 from vnen/remove-autoload-initRémi Verschelde
Disable scripting and physics early in EditorNode
2018-08-21Merge pull request #21236 from dragmz/windows-graceful-closeRémi Verschelde
Try closing gracefully before terminating process
2018-08-21display some constants as hexJuan Linietsky
2018-08-21Style: Fix issues that went past CIRémi Verschelde
2018-08-21Clipped camera implementation, a camera that avoids going into geometry.Juan Linietsky
2018-08-20Disable scripting and physics early in EditorNodeGeorge Marques
This avoids issues with scripts being instanced before this is set, like autoloads.
2018-08-21Merge pull request #21241 from dragmz/reset-debugger-reasonRémi Verschelde
Reset reason text when no longer connected
2018-08-21Merge pull request #21220 from Noshyaar/import-crashRémi Verschelde
Fix crash while importing corrupt wav
2018-08-21Merge pull request #21228 from Noshyaar/docs-bindRémi Verschelde
Fix arg name in docs, some copy-paste errors
2018-08-21Merge pull request #21234 from guilhermefelipecgs/fix_inspector_capitalizeRémi Verschelde
[EditorInspector] Fix ImportDock and ProjectExport capitalize
2018-08-20Try closing gracefully before terminating processMarcin Zawiejski
Use a Microsoft recommended way of process termination for the project process run from the editor. This allows loaded DLLs to receive and handle DLL_PROCESS_DETACH notification and cleanup any global state before the process actually exits.
2018-08-20[EditorInspector] Fix ImportDock and ProjectExport capitalizeGuilherme Felipe
2018-08-21Fix crash while importing corrupted wavPoommetee Ketson
Line 199 does division with 'bits per sample' but the check for 0 is missing.
2018-08-21Fix arg name in docs, some copy-paste errorsPoommetee Ketson
2018-08-20Reset reason text when no longer connectedMarcin Zawiejski
Resets the "Child Process Connected" when the child process is no longer connected.
2018-08-20Fix occasional crash when downloading assets from the Asset LibraryHugo Locurcio
This is caused by GitHub not publishing a Content-Length header in all cases (it only does so if the file was requested recently), which in turn made `String.humanize_size()` try to humanize a size of -1 byte (as returned by HTTPRequest when no Content-Length is contained in the response). This crashed the editor due to a division by zero. This closes #21200.
2018-08-20Merge pull request #18822 from QbieShay/masterJuan Linietsky
Added spring arm node
2018-08-20Massive rewrite to AnimationTree. Many APIs changed in order to:Juan Linietsky
-Reuse resources -Expose properties in AnimationTree
2018-08-20Merge pull request #21148 from akien-mga/placeholder_text_hintRémi Verschelde
Add PROPERTY_HINT_PLACEHOLDER_TEXT for String properties
2018-08-20Remove a stray semicolonHein-Pieter van Braam
This was causing a lot of compiler warnings for no good reason.
2018-08-20Add PROPERTY_HINT_PLACEHOLDER_TEXT for String propertiesRémi Verschelde
Use it to provide a better example for application identifiers on Android, iOS and macOS, where users thought they *had* to use this as a magic token.
2018-08-20Port ImportDock and ProjectExport to new property editor (2nd try)Rémi Verschelde
Thanks to @ibrahn for helping debug the crashes caused in ProjectExportDialog by the stray `update_tree()` call, no longer needed in the new inspector.
2018-08-20Merge pull request #21195 from AlexHolly/search-help-selection-colorRémi Verschelde
changed search help selection color
2018-08-20Merge pull request #21166 from Zylann/find_in_files_improvementRémi Verschelde
Find in Files improvements
2018-08-19changed search help selection colorAlexander Holland
2018-08-19Find in Files improvementsMarc Gilleron
- Search results are now grouped by file using a Tree control - You can opt out occurences when using replace mode - Double-check search results in case files have been tampered with, so occurrences don't get badly replaced - Fixed replace bug when an occurrence is found twice in one line
2018-08-19Merge pull request #21154 from Chaosus/grid_2d_colorRémi Verschelde
Added setting to change color of 2d editor grid
2018-08-19Merge pull request #21129 from Calinou/fix-3d-grid-origin-flickerRémi Verschelde
Fix the 3D grid flickering when the origin is enabled
2018-08-19Merge pull request #20893 from guilhermefelipecgs/invert_depth_mapRémi Verschelde
Add option to convert from height map to depth map
2018-08-19Added possibility to change color of 2d editor gridChaosus
2018-08-18Merge pull request #21155 from ordigdug/fix-colorpicker-popupRémi Verschelde
Fixes colorpicker popup immeditately closing when interacting with co…
2018-08-19Fix args count mismatch in property_changed signalPoommetee Ketson
...when editing Dictionary/Array property
2018-08-18Fixed text entry is going in reverseDualMatrix
Fixed text entry is going in reverse, this undoes what seems to be a mistake in #20400 and fixes #21061
2018-08-18Fixes colorpicker popup immeditately closing when interacting with ↵ordigdug
colorpicker property in a subinspector. Fixes #19559
2018-08-18Revert "Port ImportDock and ProjectExport to new property editor"Rémi Verschelde
2018-08-18Port ImportDock and ProjectExport to new property editorRémi Verschelde
2018-08-18added spring arm node.QbieShay
2018-08-17Fix the 3D grid flickering when the origin is enabledHugo Locurcio
2018-08-17[Texture Importer] Add option to invert colorGuilherme Felipe
2018-08-17Export dialog: Fix error color and link alignmentRémi Verschelde
Also fix extraneous "- " line when there are more than 2 messages.
2018-08-17Fix error icon colorChaosus
2018-08-17Fix bucket fill behaviour when selecting multiple tilesMarkar
2018-08-16Merge pull request #21046 from DualMatrix/recent_custom_typeRémi Verschelde
Fixed custom nodes not working with favorites and recently used
2018-08-16Merge pull request #21067 from natrim/Particles2D_AABBRémi Verschelde
Particles2D: set emitting if not set before generating Visibility Rect
2018-08-16Fixed custom nodes not working properly with favorites and recently used in ↵DualMatrix
create node window.
2018-08-16Fix crash assigning script to a ResourceRémi Verschelde
We were dereferencing the wrong identifier, which could be NULL. Fixes #19289, supersedes and closes #20985.