Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-02-28 | Add unique icon to Polygon2D | Tomasz Chabora | |
2020-02-28 | Merge pull request #36630 from YeldhamDev/import_dock_checking_preset | Rémi Verschelde | |
Fix import changing disabling checking on multiple files | |||
2020-02-28 | Merge pull request #36388 from AndreaCatania/some_renames | Rémi Verschelde | |
Rename Navigation{Mesh,Polygon}Instance and PlaneShape for clarity | |||
2020-02-28 | Renamed NavigationPolygonInstance to NavigationRegion2D | Andrea Catania | |
2020-02-28 | Fix import changing disabling checking on multiple files | Michael Alexsander | |
2020-02-28 | Merge pull request #36556 from RandomShaper/rework_mutex | Rémi Verschelde | |
Reimplement `Mutex` with C++'s `<mutex>` (plus more) | |||
2020-02-27 | Merge pull request #36232 from Calinou/add-soft-line-length-guideline | Rémi Verschelde | |
Add a soft line length guideline to the script editor | |||
2020-02-27 | Merge pull request #36490 from Calinou/assetlib-error-version-compatibility | Rémi Verschelde | |
Mention version compatibility when there are no results in the assetlib | |||
2020-02-27 | Merge pull request #36333 from Calinou/decrease-script-editor-split-width | Rémi Verschelde | |
Decrease the script editor's default split width to 70 | |||
2020-02-27 | Merge pull request #36546 from YeldhamDev/inspector_tooltip_no_doubles | Rémi Verschelde | |
Don't show a copy of the property's name in the inspector's tooltip if there's no description | |||
2020-02-27 | Fix build after merge of #36077 | Rémi Verschelde | |
2020-02-27 | Merge pull request #36077 from pycbouh/repeat-search-in-files | Rémi Verschelde | |
Add a button to quickly repeat last search in files | |||
2020-02-27 | Renamed PlaneShape to WorldMarginShape | Andrea Catania | |
2020-02-27 | Renamed NavigationMeshInstance to NavigationRegion | Andrea Catania | |
2020-02-27 | Merge pull request #36545 from nathanwfranke/syntax-highlight-int-types | Rémi Verschelde | |
Fix autocomplete and highlighting for new integer types | |||
2020-02-27 | Merge pull request #36591 from aaronfranke/key-order | Rémi Verschelde | |
Make internal editor key order consistent | |||
2020-02-27 | Place paste after copy in new popup menu in visual shader | Yuri Roubinsky | |
+ renamed _on_nodes_delete to _delete_nodes | |||
2020-02-27 | Added popup menu for some actions in visual shaders | Yuri Roubinsky | |
2020-02-27 | Make internal editor key order consistent | Aaron Franke | |
Godot already displays controls in the order Control+Shift+Alt, so the order used with the bitmask flags should be the same. | |||
2020-02-26 | Fix autocomplete and GDScript Highlighting for types | nathanwfranke | |
Types include new integer types and others | |||
2020-02-26 | Fix a typo in the "Create Single Convex Collision Sibling" option | Hugo Locurcio | |
2020-02-26 | Reimplement Mutex with C++'s <mutex> | Pedro J. Estébanez | |
Main: - It's now implemented thanks to `<mutex>`. No more platform-specific implementations. - `BinaryMutex` (non-recursive) is added, as an alternative for special cases. - Doesn't need allocation/deallocation anymore. It can live in the stack and be part of other classes. - Because of that, it's methods are now `const` and the inner mutex is `mutable` so it can be easily used in `const` contexts. - A no-op implementation is provided if `NO_THREADS` is defined. No more need to add `#ifdef NO_THREADS` just for this. - `MutexLock` now takes a reference. At this point the cases of null `Mutex`es are rare. If you ever need that, just don't use `MutexLock`. - Thread-safe utilities are therefore simpler now. Misc.: - `ScopedMutexLock` is dropped and replaced by `MutexLock`, because they were pretty much the same. - Every case of lock, do-something, unlock is replaced by `MutexLock` (complex cases where it's not straightfoward are kept as as explicit lock and unlock). - `ShaderRD` contained an `std::mutex`, which has been replaced by `Mutex`. | |||
2020-02-26 | Merge pull request #36564 from dankan1890/quick_fix | Rémi Verschelde | |
Fixed TextureAtlas import size. | |||
2020-02-26 | Merge pull request #36563 from Chaosus/fix_resizer_color | Rémi Verschelde | |
Fix resizer icon color in VisualScripts/Shaders when graph headers is on | |||
2020-02-26 | Merge pull request #36562 from AndreaCatania/anim_crash_fix | Rémi Verschelde | |
Fixed editor crash when the animation player has no root assigned. | |||
2020-02-26 | Fix resizer icon color in VisualScripts/Shaders when graph headers is on | Yuri Roubinsky | |
2020-02-26 | Don't show a copy of the property's name in the inspector's tooltip if ↵ | Michael Alexsander | |
there's no description | |||
2020-02-26 | Fixed editor crash when the animation player has no root assigned. | Andrea Catania | |
2020-02-26 | Changed float type to int for INDEX visual shader input | Yuri Roubinsky | |
2020-02-26 | Fixed TextureAtlas import. | Maurizio Petrarota | |
2020-02-26 | Merge pull request #36536 from Chaosus/vs_int | Rémi Verschelde | |
Add support for integer type in visual shaders | |||
2020-02-26 | Add support for integer type in visual shaders | Yuri Roubinsky | |
2020-02-25 | Merge pull request #36538 from YeldhamDev/packed_arrays_bits_icons | Rémi Verschelde | |
Update PackedInt/FloatArray icons for the new types | |||
2020-02-25 | Update PackedIint/FloatArray icons for the new types | Michael Alexsander | |
2020-02-25 | Update docs and bindings for new integer vector types | Rémi Verschelde | |
2020-02-25 | Merge pull request #36515 from reduz/packed-array-64-bits | Rémi Verschelde | |
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT. | |||
2020-02-25 | Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT. | Juan Linietsky | |
- Renames PackedIntArray to PackedInt32Array. - Renames PackedFloatArray to PackedFloat32Array. - Adds PackedInt64Array and PackedFloat64Array. - Renames Variant::REAL to Variant::FLOAT for consistency. Packed arrays are for storing large amount of data and creating stuff like meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of memory. That said, many users requested the ability to have 64 bits packed arrays for their games, so this is just an optional added type. For Variant, the float datatype is always 64 bits, and exposed as `float`. We still have `real_t` which is the datatype that can change from 32 to 64 bits depending on a compile flag (not entirely working right now, but that's the idea). It affects math related datatypes and code only. Neither Variant nor PackedArray make use of real_t, which is only intended for math precision, so the term is removed from there to keep only float. | |||
2020-02-25 | Merge pull request #36513 from Calinou/editor-icons-pascalcase-filenames | Rémi Verschelde | |
Use PascalCase file names for editor icons | |||
2020-02-24 | Use PascalCase file names for editor icons | Hugo Locurcio | |
Using PascalCase file names without any conversion step is less confusing to new contributors. | |||
2020-02-24 | Remove this signal call that was mistakenly added in #36244 | nathanwfranke | |
The original change was in #36340 | |||
2020-02-24 | Merge pull request #36494 from akien-mga/callable-fixes | Rémi Verschelde | |
Fix some signals and non-debug branch for callable_mp | |||
2020-02-24 | Merge pull request #36489 from YeldhamDev/more_icons | Rémi Verschelde | |
Add icons for some new variants | |||
2020-02-24 | Merge pull request #36488 from Chaosus/capsule_y | Rémi Verschelde | |
Changed default capsule axis to vertical | |||
2020-02-23 | Signals: Fix invalid connections to missing callbacks | Rémi Verschelde | |
These bugs existed since those lines were added, so I assume that their intended use is no longer relevant. | |||
2020-02-23 | Signals: Make callbacks non-const, callable_mp can't handle it | Rémi Verschelde | |
2020-02-23 | Mention version compatibility when there are no results in the assetlib | Hugo Locurcio | |
This closes #36469. | |||
2020-02-23 | Changed default capsule axis to vertical | Yuri Roubinsky | |
Co-authored-by: Hugo Locurcio <https://hugo.pro> | |||
2020-02-23 | Add icons for some new variants | Michael Alexsander | |
2020-02-23 | Fix Breakpoint compare in new Debugger. | Fabio Alessandrelli | |
Only used to keep the hashmap, but clearly bogus. | |||
2020-02-23 | Merge pull request #36461 from akien-mga/c++17-fallthrough-attribute | Rémi Verschelde | |
Replace FALLTHROUGH macro by C++17 [[fallthrough]] |