summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
2020-10-22Revert "fix(editor): TileMap Fill Rectangle icon"Rémi Verschelde
2020-10-22Merge pull request #42949 from DavidSichma/shaderglobalsRémi Verschelde
Shader globals bugfixes
2020-10-22Fix custom property editor to correctly show BasisYuri Roubinsky
2020-10-21fix(editor): TileMap Fill Rectangle iconEric Tuvesson
The default color was blue which is the active color, changed it to be gray by default.
2020-10-21Shader globals bugfixesDavid Sichma
- shader globals editor displays properties correctly - fixed some errors how globals were transferred
2020-10-19Allow sorting files by typeGilles Roudière
2020-10-19Merge pull request #42904 from Xrayez/rects-rename-fixupRémi Verschelde
Fixup `ColorRect` and `TextureRect` renames
2020-10-19Merge pull request #38097 from Calinou/add-viewport-debandingJuan Linietsky
Add a debanding property to Viewport
2020-10-19Fixup `ColorRect` and `TextureRect` renamesAndrii Doroshenko (Xrayez)
2020-10-19Disable code to add patches menuEv1lbl0w
2020-10-19Merge pull request #42558 from Chaosus/vs_curveRémi Verschelde
Added visual shader node to easy gather data from a CurveTexture
2020-10-19Merge pull request #42878 from gvaneyck/copy-description-node-replaceRémi Verschelde
Keep 'Editor Description' metadata when changing a Node's type
2020-10-18Revert "Replace SAO implementation with MSSAO"Juan Linietsky
2020-10-18Replace SAO implementation with MSSAOclayjohn
2020-10-18Keep 'Editor Description' metadata when changing a Node's typeGabriel Van Eyck
Also copy edit group/lock when replacing a Node3D
2020-10-18Merge pull request #42873 from Yetizone/HeaderGuardUpdateRémi Verschelde
node_3d_editor_plugin.h: Update header guard
2020-10-18Refactor MethodBind to use variadic templatesreduz
Removed make_binders and the old style generated binders.
2020-10-18Added VisualShaderNodeCurve to easy gather data from a CurveTextureYuri Roubinsky
2020-10-17node_3d_editor_plugin.h: Update header guardYetizone
2020-10-15Fix visual shader node expression undo/redo for set_size and expressionYuri Roubinsky
2020-10-15Merge pull request #42813 from Chaosus/vs_fix_opsYuri Roubinsky
Fix copy/paste/duplicate for particle mode in visual shaders
2020-10-15Fix copy/paste/duplicate for particle mode in visual shadersYuri Roubinsky
2020-10-15Merge pull request #42791 from Faless/editor/drag_drop_copy_allRémi Verschelde
EditorNode now copies all drag and dropped files.
2020-10-15Refactor delete nodes functions in visual shader editorYuri Roubinsky
2020-10-14Refactored binding system for core typesreduz
Moved to a system using variadic templates, shared with CallableBind. New code is cleaner, faster and allows for much better optimization of core type functions from GDScript and GDNative. Added Variant::InternalMethod function for direct call access.
2020-10-14EditorNode now copies all drag and dropped files.Fabio Alessandrelli
The editor used to only copy drag-dropped files in the File System pane if the given file was a valid resource, or had a specific file format (ttf, otf). With this PR, all drag and dropped files are copied instead, no matter their extension.
2020-10-13Merge pull request #42748 from qarmin/dont_clear_twiceRémi Verschelde
Don't try to compare freed object to nullptr
2020-10-13Don't try to compare freed object to nullptrRafał Mikrut
2020-10-13Merge pull request #42489 from auderer/tilemapeditor-refocusRémi Verschelde
Reset TileMapEditor painting state on application refocus
2020-10-13Merge pull request #42737 from volzhs/android-run-tooltipRémi Verschelde
Show android device name when connected only one device
2020-10-12Show android device name when connected only one devicevolzhs
2020-10-12Ensure grid index is valid before trying to change value.Marcel Admiraal
2020-10-10Merge pull request #42692 from Chaosus/vs_add_metallicYuri Roubinsky
Adds Metallic to spatial light input of visual shaders
2020-10-10Adds Metallic to spatial light input of visual shadersYuri Roubinsky
2020-10-10Merge pull request #42683 from reduz/implement-call-bind-unbindJuan Linietsky
Add ability to bind an unbind arguments to Callable.
2020-10-10Merge pull request #42568 from DavidSichma/fix-aabb-updateRémi Verschelde
Make AABB change trigger bounding box update
2020-10-09Add ability to bind an unbind arguments to Callable.reduz
2020-10-09Implement GPU Particle Collisionsreduz
-Sphere Attractor -Box Attractor -Vector Field -Sphere Collider -Box Collider -Baked SDF Collider -Heightmap Collider
2020-10-09Adds pan gesture to StateMachine editorHaoyu Qiu
2020-10-06Update the setting when clicking Show hidden filesTomasz Chabora
2020-10-06Merge pull request #42314 from mbrlabs/nodepath-fixRémi Verschelde
Fixed renaming/moving of nodes with exported NodePaths in the editor
2020-10-05Check for global script class information before clearing itAaron Franke
2020-10-05Better non alphanumeric bone names.K. S. Ernest (iFire) Lee
1. _gen_unique_bone_name(Ref<GLTFState> state, const GLTFSkeletonIndex skel_i, const String &p_name) won't return an empty string. 2. String GLTFDocument::_sanitize_bone_name(const String &name) will keep Japanese characters. Like: "全ての親". 3. The sanitize function allows the bone name to be not just alphanumeric. The only required conditions are the ones in add_bone. > ERR_FAIL_COND(p_name == "" || p_name.find(":") != -1 || p_name.find("/") != -1);
2020-10-05glTF: Fix parsing image data with `mimeType` undefinedRémi Verschelde
The glTF 2.0 spec only makes `mimeType` mandatory for `bufferView` image data, so the previous logic to handle URIs with base64-encoded images could fail if `mimeType` is undefined. The logic was documented and refactored to better handle the spec, notably: - `uri` and `bufferView` are now mutually exclusive, and only the latter fails if `mimeType` is undefined. - `uri` with a file path will now respect the `mimeType` if defined, and thus attempt loading the file with the specified format (even if its extension is not the one expected for this format). So we can support bad extensions (PNG data with `.jpg` extension) or custom ones (PNG data in `.img` file for example). - `uri` with base64 encoded data will infer MIME type from `data:image/png` or `data:image/jpeg` if it was not documented in `mimeType` initially. - `uri` with base64 encoded data, no `mimeType` and `application/octet-stream` or `application/gltf-buffer` will fall back to trying both PNG and JPEG loaders. Fully fixes #33796 (and fixes up #42501).
2020-10-05aabb change updates bounding boxDavid Sichma
spatial editor will now update the bounding box if aabb or transform changes
2020-10-03Merge pull request #42518 from Duroxxigar/update-getter-and-settersRémi Verschelde
Updated getters and setters names for toplevel
2020-10-03Don't write global script class information if there is noneAaron Franke
2020-10-02Updated getters and setters names for toplevelDuroxxigar
2020-10-02initialize refocus_over_tile to falseMichael Auderer
Co-authored-by: Tomek <kobewi4e@gmail.com>
2020-10-02glTF: Fix parsing buffer data with application/gltf-buffer and image/* MIME ↵Rémi Verschelde
types See https://github.com/KhronosGroup/glTF/issues/944 for context on the application/gltf-buffer MIME type. The glTF 2.0 spec supports `image/jpeg` and `image/png` which can also be base64-encoded in buffer URIs. Fixes #33796.