summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-09-06Merge pull request #30623 from Awkor/disable-container-child-editingGilles Roudière
Prevent editing properties managed by parent container
2021-09-06Merge pull request #35617 from zmanuel/negative-delta-fixlawnjelly
Fix negative delta arguments
2021-09-05Prevent editing properties managed by parent containerAwkor
2021-09-05Merge pull request #51722 from ↵Gilles Roudière
TokageItLab/implement-set-read-only-in-extended-class Apply `set_read_only()` to child classes of `EditorProperty` elements
2021-09-05Apply set_read_only() to child classes of EditorProperty elementsSilc 'Tokage' Renew
2021-09-05Merge pull request #52309 from BastiaanOlij/add_extension_index_functionsBastiaan Olij
Add functions for access members by index on packed array objects
2021-09-04Merge pull request #52341 from Calinou/scons-fix-missing-sconscript-warningMax Hilbrunner
Fix missing SConscript warning when building using SCons
2021-09-03Merge pull request #51079 from raulsntos/csharp-docsIgnacio Roldán Etcheverry
Add documentation to GodotSharp, Fix PackedInt64Array typo
2021-09-03Add documentation to GodotSharpRaul Santos
- Adds documentation to almost every class and member in `GodotSharp` - Fixes some old documentation to more closely follow the XML comments convention
2021-09-03Fix constant tag documentation in C# bindings generatorRaul Santos
2021-09-03Fix PackedInt64Array typo in bindings_generator.hRaul Santos
2021-09-03Merge pull request #50872 from aaronfranke/cs-format-mini-2Ignacio Roldán Etcheverry
Some more C# formatting and style fixes
2021-09-03Merge pull request #52368 from arthurpaulino/remove-http-request-data-noteHugo Locurcio
Inaccurate HTTPRequest documentation node
2021-09-03improving note on HTTPRequest class under the request method documentationArthur Paulino
2021-09-03Merge pull request #52374 from danielkariv/fix-macos-fullscreenHugo Locurcio
2021-09-03Merge pull request #52357 from JestemStefan/Window_wrong_parameter_typeHugo Locurcio
Fixed property info by changing Window current_screen parameter from string to int
2021-09-03fix fullscreen issue on macOSDaniel Kariv
adds a call for resize event.
2021-09-03Merge pull request #52342 from Faless/enet/4.x_no_close_errorFabio Alessandrelli
[Net] Silence ENetMultiplayerPeer close_connection.
2021-09-03Merge pull request #52329 from ↵Max Hilbrunner
ZuBsPaCe/gdscript-unused-private-class-variable-fix GDScript: Fix for UNUSED_PRIVATE_CLASS_VARIABLE
2021-09-03GDScript: Count usages of member variables.ZuBsPaCe
Otherwise private member variables will always lead to UNUSED_PRIVATE_CLASS_VARIABLE.
2021-09-03Merge pull request #52354 from V-Sekai/single_packed_array_spawn_fixFabio Alessandrelli
Fix sending zero-length spawn variant
2021-09-02Changed Window current_screen parameter from string to intJestemStefan
2021-09-02Fix _send_default_spawn_default function sending zero lengthSaracenOne
PackedByteArray when deriving from a single PackedByteArray state variant.
2021-09-02Some more C# formattingAaron Franke
2021-09-02Merge pull request #33123 from Calinou/remote-inspector-capitalize-propertiesHugo Locurcio
Capitalize properties in the remote inspector
2021-09-02[Net] Silence ENetMultiplayerPeer close_connection.Fabio Alessandrelli
Used to print an error when it was not active, now it just returns immediately as per the documentation.
2021-09-02Fix missing SConscript warning when building using SConsHugo Locurcio
2021-09-02Merge pull request #52071 from V-Sekai/gdscript_name_conflict_checkGeorge Marques
Checks in analyzer and compiler for GDScript naming conflicts
2021-09-02Merge pull request #52331 from Geometror/tweak-tooltip-colorsGilles Roudière
Tweak tooltip style (slightly less dark/unified margins)
2021-09-02Check for GDScript member and class naming conflicts in a variety of conditions.SaracenOne
2021-09-01Merge pull request #52159 from m4gr3d/addoculus_openxr_Fredia Huya-Kouadio
Update the AndroidManifest to enable access to Oculus OpenXR runtime
2021-09-02Tweak tooltip styleHendrik Brucker
2021-09-02Add functions for access members by index on packed array objectsBastiaan Olij
2021-09-01Merge pull request #52320 from nekomatata/android-plugin-view-orderFredia Huya-Kouadio
Add support for adding plugin views behind the main view on Android
2021-09-01Add support for adding plugin views behind the main view on AndroidPouleyKetchoupp
Doesn't change the default behavior, but allows plugins to add their view behind the main view, which gives more control over what happens with inputs and can be useful along with transparent rendering.
2021-09-01Merge pull request #38722 from KoBeWi/propositionGilles Roudière
Add offset for TextureProgress progress texture
2021-09-01Merge pull request #51639 from Ev1lbl0w/gsoc21-dapFabio Alessandrelli
Implement more advanced features for DAP
2021-09-01Merge pull request #51987 from aaronfranke/fix-docs-gdvirtualGeorge Marques
Fix docs after GDVIRTUAL pull request
2021-09-01Add offset for TextureProgress progress texturekobewi
2021-09-01Merge pull request #52270 from KoBeWi/goodbye_polarGeorge Marques
Remove cartesian2polar and polar2cartesian
2021-09-01Merge pull request #48237 from KoBeWi/they_came_from_angleGeorge Marques
Add Vector2.from_angle() method
2021-09-01Merge pull request #52026 from Calinou/constiterator-fix-constHugo Locurcio
Fix ConstIterator to allow `for` range loops on Packed*Array
2021-09-01Merge pull request #52300 from kleonc/tab_container_drawing_disabled_current_tabGilles Roudière
TabContainer Fix drawing current tab when it's disabled
2021-09-01TabContainer Fix drawing current tab when it's disabledkleonc
2021-08-31Fix negative delta argumentsManuel Moos
Three attack points, all after the regular calculations: 1. Prevent negative physics timestep counts. They could occur if physics_jtter_fix is changed at runtime. 2. idle_step is not allowed to go below 1/8th of the input step. That could happen on physics_jitter_fix changes or heavily fluctuating performance. 3. Prevent that the idle_step modification breaks the promise that Engine.get_physics_interpolation_fraction() is between 0 and 1 by doing more physics steps than the base system wants. Fixes #26887 Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
2021-08-31Merge pull request #51873 from Chaosus/fix_uniform_error_spamClay John
Fix incorrect checking of uniform set to prevent error spam (2)
2021-08-31Merge pull request #49471 from nekomatata/body-state-sync-callbackJuan Linietsky
Clean physics direct body state usage in 2D and 3D physics
2021-08-31Merge pull request #52279 from fabriceci/delta-doubleCamille Mohr-Daurat
Change delta type to double in Physics_body_2/3D
2021-08-31Merge pull request #51364 from bengtsts/masterCamille Mohr-Daurat
Expose soft body pin methods to GDScript
2021-08-31Capitalize properties in the remote inspectorHugo Locurcio
This makes property casing consistent with the editor. If property capitalization is disabled in the Editor Settings, the remote inspector will also disable capitalization.