summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-29Merge pull request #45135 from vnen/gdnative-generatorRémi Verschelde
Add GDNative JSON generator for the builtin API
2021-01-29Add GDNative JSON generator for the builtin APIGeorge Marques
Which can be used by language bindings to generate code statically. This is generated as a different file from the class API because it has different requirements (the builtin types have constructors and don't have signals), so bindings can better make use of each JSON file without extra parsing. This also cleans up a bit the old API generator, mainly initializing structs and renaming "instanciable" to the more correct "instantiable". The argument description in help text was updated to better reflect how it should be used. The <path> argument is mandatory.
2021-01-29Merge pull request #43193 from kleonc/masterRémi Verschelde
Docs: Fix TileMap::map_to_world description
2021-01-29Docs: Fix TileMap::map_to_world descriptionkleonc
2021-01-29Merge pull request #43223 from KoBeWi/deditRémi Verschelde
Disable active editors when node gets deselected
2021-01-29Merge pull request #43222 from KoBeWi/sub_editor_oblivionRémi Verschelde
Remove unused get_subeditor() method
2021-01-29Merge pull request #45551 from flyingpimonster/tree-item-docsRémi Verschelde
docs: Add TreeItem method descriptions
2021-01-29Merge pull request #45548 from dsnopek/webxr-master-docs-canvaslayerRémi Verschelde
Remove reference to CanvasLayer in WebXR example, because it can cause rendering issues in AR
2021-01-28docs: Add TreeItem method descriptionsJames Westman
2021-01-28Remove reference to CanvasLayer in WebXR example, because it can cause ↵David Snopek
rendering issues in AR.
2021-01-29Merge pull request #45411 from a-ivanov/more-object-testsRémi Verschelde
Unit tests for Object creation and property getter/setter
2021-01-29Unit tests for Object creation and property getter/setterAnton Ivanov
2021-01-28Merge pull request #45525 from van800/rider-lineRémi Verschelde
Navigating to error line number in Rider from Godot editor debugger console is off-by-one.
2021-01-28Fix off by one error navigating to line number in RiderIvan Shakhov
Fixes https://github.com/JetBrains/godot-support/issues/61
2021-01-28Merge pull request #43978 from aaronfranke/cs-stringRémi Verschelde
Unify URI encoding/decoding, handle spaces-are-pluses, and handle hex/bin prefix automatically
2021-01-28Unify URI encoding/decoding and add to C#Aaron Franke
http_escape and percent_encode have been unified into uri_encode, and http_unescape and percent_decode have been unified into uri_decode.
2021-01-28Make hex_to_int and bin_to_int handle the prefix automaticallyAaron Franke
Also add BinToInt to C#
2021-01-28Merge pull request #45522 from akien-mga/doc-syncRémi Verschelde
doc: Sync classref with current source
2021-01-28doc: Sync classref with current sourceRémi Verschelde
2021-01-28Merge pull request #45514 from dsnopek/webxr-master-ar-lose-trackingRémi Verschelde
Prevent fatal error in WebXR when 'immersize-ar' loses and regains tracking
2021-01-27Prevent fatal error in WebXR when 'immersize-ar' loses and regains trackingDavid Snopek
2021-01-27Merge pull request #45511 from KoBeWi/apocalypse_(world_crash)Rémi Verschelde
Cache world in VisibilityNotifier3D to avoid crash
2021-01-27Merge pull request #45489 from aaronfranke/coreRémi Verschelde
Type consistencies in core
2021-01-27Merge pull request #45444 from dsnopek/webxr-master-monoRémi Verschelde
Support mono devices in WebXR
2021-01-27Cache world in VisibilityNotifier3D to avoid crashkobewi
2021-01-27Merge pull request #45481 from ronchaine/joypad-detectionRémi Verschelde
POSIX systems: go through all event devices, not just event[0-32]
2021-01-27Merge pull request #43790 from Chaosus/rename_ord_atRémi Verschelde
Renamed String.ord_at to unicode_at
2021-01-27Go through all event devices, not just event[0-32]Jari Ronkainen
There are no guarantees that joypads are in event0-event32 range. Some devices, such as laptops with detachable keyboards and wacom can reserve events all the way up to 32. Some udev rules with e.g. custom controller firmwares may load the device as /dev/input/eventX, where X is greater than 32. This patch uses POSIX dirent to enumerate the event devices, so entries outside 0-32 range are not skipped.
2021-01-27Merge pull request #45503 from winston-yallow/fix-bodystate-transformRémi Verschelde
Correctly expose transform as 3D transform
2021-01-27Correctly expose transform as 3D transformWinston Yallow
2021-01-27Merge pull request #45040 from volkathemartian/fix-spinbox-mouse-captureRémi Verschelde
Fix unintended SpinBox mouse capture
2021-01-27Merge pull request #45495 from Chaosus/style_font_hover_pressedRémi Verschelde
Added missed Button `font_hover_pressed_color` style
2021-01-27Merge pull request #45490 from dalexeev/ignore-kateRémi Verschelde
gitignore: Ignore Kate swap files
2021-01-27Added missed Button `font_hover_pressed_color` styleYuri Roubinsky
2021-01-26Fix unintended SpinBox mouse captureVolka
2021-01-27gitignore: Ignore Kate swap filesDanil Alexeev
2021-01-26Merge pull request #44799 from RevoluPowered/fbx-fix-zero-scalingRémi Verschelde
mesh indexing failing with small scale values
2021-01-26Merge pull request #38559 from Chaosus/button_icon_stylesRémi Verschelde
Reveals Button "icon_color" style properties to the user
2021-01-26i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit 3f3130648af2b24772f09dbc152af46ba9e9f946)
2021-01-26Merge pull request #45484 from naithar/fix/ios-push-notificationRémi Verschelde
[iOS] Rework/Fix APNS usage.
2021-01-26Fix zero scaling and material mappings being mapped to wrong fieldsGordon MacPherson
- fixes scale values of 0.0013 (det == 0.00004) not rendering, they should render even at small values, but not at zero like the editor grid plugin supplies zero exactly. - fixes node_3d_editor_plugin visibility bug when scale is zero - fix culling with small scaling values - which are still valid to be rendered like 0.00004 note: grid is still not fixed, it has det == 0 issues but this fixes one of them.
2021-01-26Reveals Button "icon_color" style properties to the userYuri Roubinsky
2021-01-26Type consistencies in coreAaron Franke
2021-01-26Renamed String.ord_at to unicode_atYuri Roubinsky
2021-01-26Merge pull request #45373 from aaronfranke/gdnative-sizeofGeorge Marques
Define GDNative sizes using sizeof(godot_real) and sizeof(int32_t)
2021-01-26Merge pull request #45476 from qarmin/add_temp_variableRémi Verschelde
Add temporary variable to not use freed memory
2021-01-26[iOS] Rework push notification methods usageSergey Minakov
Moved AppDelegate push notifications methods implementation to 'GODOT_ENABLE_PUSH_NOTIFICATIONS' which can be used in plugins to implement APNS plugins.
2021-01-26Merge pull request #45466 from reduz/reorganize-rendering-device-layersJuan Linietsky
Reorganize RenderingDevice barriers
2021-01-26Merge pull request #44814 from hoontee/fix-44714Rémi Verschelde
Do not clear materials when setting mesh
2021-01-26Merge pull request #44349 from KoBeWi/drop_the_data!Rémi Verschelde
Allow to override drop data in LineEdit