Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-01 | Remove unused code related to Travis CI | Hugo Locurcio | |
2021-06-30 | Merge pull request #50009 from reduz/fix-suffixes-and-degrees | Rémi Verschelde | |
Fix editor suffixes and degrees conversion | |||
2021-06-30 | Fix editor suffixes and degrees conversion | reduz | |
* Functions to convert to/from degrees are all gone. Conversion is done by the editor. * Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees. * Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m" * In general, can add suffixes for EditorSpinSlider Not covered by this PR, will have to be addressed by future ones: * Ability to switch radians/degrees in the inspector for angle properties (if actually wanted). * Animations previously made will most likely break, need to add a way to make old ones compatible. * Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes. * Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too. | |||
2021-06-30 | Remove singleton variable shadowing. | K. S. Ernest (iFire) Lee | |
2021-06-30 | Protocol shadows a variable. | K. S. Ernest (iFire) Lee | |
2021-06-30 | Rename `GdNavigationServer` to `GodotNavigationServer` | Rémi Verschelde | |
And rename `gdnavigation` module to simply `navigation`. | |||
2021-06-29 | Improve RID_Owner memory usage | reduz | |
* Ability to allocate empty objects in RID_Owner, so RID_PtrOwner is not needed in most cases. * Improves cache usage, as objects are now allocated together * Should improve performance in 2D rendering | |||
2021-06-29 | Merge pull request #49905 from pfertyk/issue-46480-image-compress-crashes-godot | Rémi Verschelde | |
Validate image formats, check if resize_to_po2 failed | |||
2021-06-29 | Merge pull request #49944 from MisoMosiSpy/visual-script-logic-oper-mismatch | Rémi Verschelde | |
Fixes Visual Script node operator mismatch | |||
2021-06-29 | Fixes Visual script nodes operator mismatch issue #49943 | Dipal M Zambare | |
2021-06-29 | Merge pull request #49966 from Faless/net/4.x_ws_timeout | Rémi Verschelde | |
[Net] Add WebSocketServer handshake_timeout property. | |||
2021-06-28 | Validate image formats, check if resize_to_po2 failed | Paweł Fertyk | |
2021-06-28 | Merge pull request #49917 from groud/tree_disable_scroll | Rémi Verschelde | |
Allow disabling scrolling in Tree and implement horizontal scrolling | |||
2021-06-28 | Merge pull request #49965 from Faless/net/4.x_fix_request | Rémi Verschelde | |
[Net] Fix WebSocketClient path parsing. | |||
2021-06-28 | Implement Tree's internal minimum width calculation | Gilles Roudière | |
2021-06-28 | [Net] Add WebSocketServer handshake_timeout property. | Fabio Alessandrelli | |
Allows customization of the maximum time a client is allowed to stay in the the "pending" state (i.e. awaiting HTTP handshake). This used to be 1 second by before, the new default is 3 seconds. | |||
2021-06-28 | [Net] Fix WebSocketClient path parsing. | Fabio Alessandrelli | |
Recent changes to parse_url caused the client to make invalid HTTP requests if no path was specified. | |||
2021-06-27 | Make curve interpolate crash less. | K. S. Ernest (iFire) Lee | |
2021-06-25 | Implement native extension system | reduz | |
* Deprecates GDNative in favor of a simpler, lower level interface. * New extension system allows registering core engine classes. * Simple header interface in gdnative_interace.h | |||
2021-06-24 | Merge pull request #49854 from ↵ | K. S. Ernest (iFire) Lee | |
kleonc/visual_script_editor-fix-position-when-zooming-master VisualScriptEditor Fix in graph position calculation (do not skip zoom) | |||
2021-06-24 | Merge pull request #49583 from timothyqiu/texture-crash | Rémi Verschelde | |
Fix crash when freeing GradientTexture and NoiseTexture | |||
2021-06-23 | VisualScriptEditor Fix in graph position calculation (do not skip zoom) | kleonc | |
2021-06-23 | Fixing mono build after instance() -> instanciate() name change | Grzegorz Puławski | |
2021-06-23 | Fix logic operators mislabeled #49412 | Martin | |
2021-06-20 | Use mouse and joypad enums instead of plain integers | Aaron Franke | |
Also MIDIMessage | |||
2021-06-20 | Merge pull request #49754 from aaronfranke/is-eq-approx-sub-opt | Rémi Verschelde | |
Fix sub-optimal uses of is_equal_approx | |||
2021-06-20 | Fix sub-optimal uses of is_equal_approx | Aaron Franke | |
2021-06-19 | Rename `instance()`->`instantiate()` when it's a verb | Lightning_A | |
2021-06-20 | Merge pull request #48804 from EricEzaM/scripting-multi-error-support | Rémi Verschelde | |
Added support for scripts reporting multiple errors to ScriptTextEditor | |||
2021-06-19 | Merge pull request #44806 from madmiraal/consolidate_json | Rémi Verschelde | |
Consolidate JSON, JSONParseResults and JSONParser into JSON | |||
2021-06-19 | Added support for scripts reporting multiple errors to ScriptTextEditor | Eric M | |
Scripts can now report multiple errors to the scripting editors in the engine. UI elements were added to support multiple errors. | |||
2021-06-19 | Consolidate JSON, JSONParseResults and JSONParser into JSON | Marcel Admiraal | |
Renames JSON.parse_string() to parse() Renames JSON.decode_data() to stringify() | |||
2021-06-19 | Merge pull request #49287 from reduz/expose-variant-internal-binders | Rémi Verschelde | |
Make some Variant internal functions public. | |||
2021-06-18 | Merge pull request #49449 from SpectralDragon/fix-enum-equal-operation | George Marques | |
Fix equal operation for typed enums | |||
2021-06-18 | GDScript: Fix setting type of operator return value | George Marques | |
Also write type adjust when needed for binary operators. | |||
2021-06-18 | Merge pull request #44156 from aaronfranke/quat-angle-to | Rémi Verschelde | |
Add Quaternion angle_to method | |||
2021-06-18 | Merge pull request #49638 from aaronfranke/multiply-transforms | Rémi Verschelde | |
Allow multiplying Transforms and Basis by numbers | |||
2021-06-18 | Merge pull request #49698 from aaronfranke/prop-no-usage | Rémi Verschelde | |
Add PROPERTY_USAGE_NONE and use it | |||
2021-06-18 | Merge pull request #32313 from YeldhamDev/format_args_values | Rémi Verschelde | |
Better format arguments in variant parser | |||
2021-06-18 | Fix a typo in C# bindings generator for default value types | Aaron Franke | |
2021-06-17 | Add Quaternion angle_to method | Aaron Franke | |
2021-06-18 | Better format arguments in variant parser | Michael Alexsander Silva Dias | |
2021-06-17 | Add PROPERTY_USAGE_NONE and use it | Aaron Franke | |
2021-06-17 | Merge pull request #49043 from ↵ | Rémi Verschelde | |
theoway/missing_description_vs_search_window_fixed Fixes missing descriptions in Visual Script search window when adding nodes | |||
2021-06-17 | Translate file path to URI on LSP symbol requests | Francois Belair | |
2021-06-17 | Merge pull request #48070 from KoBeWi/greedmap | Rémi Verschelde | |
Fix GridMap still drawing when Alt+Tabbing | |||
2021-06-17 | Merge pull request #48331 from Faless/net/4.x_enet_relay_lax | Rémi Verschelde | |
[Net] ENet non-relaying server now process broadcasts. | |||
2021-06-17 | Merge pull request #49667 from Riteo/remove-grid-map-lock-view | Rémi Verschelde | |
Remove GridMap's "Lock View" option and a related method. | |||
2021-06-16 | Merge pull request #49401 from fire/8-weights | K. S. Ernest (iFire) Lee | |
Fix 8 bone weights in glTF2 | |||
2021-06-15 | Allow multiplying Transforms and Basis by numbers | Aaron Franke | |