summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2022-07-21Rename OSX to macOS and iPhoneOS to iOS.bruvzg
2022-07-20Add peer visibility to MultiplayerSynchronizer.Fabio Alessandrelli
MultiplayerSynchronizers can now be configured to limit their visibility to a subset of the connected peers, if the synchronized node was spawned by a MultiplayerSpawner (either automatically or via custom spawn) the given node will also be despawned remotely. The replication system doesn't have the logic to handle subspawn directly, but it is possible to handle them appropriately by manually updating the visibility of the parent before changing the one of the nested spawns via the "update_visibility" function. The visibility of each MultiplayerSynchronizer can be controlled by adding or remove filters via "[add|remove]_visibility_filter(callable)". To further optimize the network code, visibility filters can be configured to be automatically updated during idle or physics frame, or set to always require manual update (via the "update_visibility" function).
2022-07-19Merge pull request #63190 from fabriceci/fix-calculation-angular-velocityRémi Verschelde
2022-07-19Merge pull request #63187 from RandomShaper/fix_atomic_cmp_exchangeRémi Verschelde
2022-07-19Merge pull request #63005 from Chaosus/image_rotateRémi Verschelde
Implement `rotate_90/rotate_180` functions to `Image`
2022-07-19Fix the calculation of the angular velocity when the rotation speed is not high.fabriceci
2022-07-19Use the right memory ordering in SafeNumeric operationsPedro J. Estébanez
2022-07-18Use integer types in Image and ImageTexture methodsFireForge
- Image.blit_rect() - Image.blit_rect_mask() - Image.blend_rect() - Image.blend_rect_mask() - Image.fill_rect() - Image.get_used_rect() - Image.get_rect() - ImageTexture.set_size_override()
2022-07-18Sync controller mappings DB with SDL2 community repoRémi Verschelde
Synced with gabomdq/SDL_GameControllerDB@880abd09c97618d97a0e44e3761262f6fd1c6225
2022-07-16Changed bool to GdNativeBoolbasta
2022-07-15Implement `rotate_90/rotate_180` functions to `Image`Yuri Rubinsky
2022-07-15Use BitField hint for the TextServer enums. Add missing parts for BitField ↵bruvzg
support to the GDextension API.
2022-07-12Remove unused hintskobewi
2022-07-08Add static methods for creating Image and ImageTexturekobewi
2022-07-07Merge pull request #62808 from bruvzg/macos_file_url_handleRémi Verschelde
2022-07-07Merge pull request #62108 from bruvzg/font_config_v3Rémi Verschelde
2022-07-07[macOS] Improve file association handling, and allow URL schema handling.bruvzg
2022-07-07Allows parsing of invalid UTF-16 surrogates (can be encountered in Windows ↵bruvzg
filenames) and some non-standard UTF-8 variants, makes Unicode parse errors more verbose.
2022-07-06Merge pull request #62776 from lawnjelly/remove_octreeRémi Verschelde
2022-07-06Merge pull request #62713 from YuriSizov/docs-scripting-annotationsRémi Verschelde
2022-07-06Remove Octreelawnjelly
Octree is no longer used in 4.x.
2022-07-06Refactor Font configuration and import UI, and Font resources.bruvzg
2022-07-05Implement a BitField hintreduz
Allows to specify the binder that an enum must be treated as a bitfield.
2022-07-05Merge pull request #62459 from m4gr3d/refactor_android_storage_handling_mainRémi Verschelde
2022-07-05Add full support for Android scoped storage.Fredia Huya-Kouadio
This was done by refactoring directory and file access handling for the Android platform so that any general filesystem access type go through the Android layer. This allows us to validate whether the access is unrestricted, or whether it falls under scoped storage and thus act appropriately.
2022-07-05Implement XMLParser.get_current_line()kobewi
2022-07-04Merge pull request #62212 from hansemro/eraser-detect-4Rémi Verschelde
Add inversion/eraser-end property for tablet pens
2022-07-04[macOS, Windows, X11] Add stylus inverted/eraser support toHansem Ro
InputEventMouseMotion event
2022-07-04Add support for documenting built-in annotationsYuri Sizov
2022-07-04Expression built-in functions can also be considered as identifiers in ↵cdemirer
subscripts
2022-07-04Use custom key structs, instead of raw hashes for the Label3D and TextMesh, ↵bruvzg
to avoid potential hash collisions.
2022-07-03Input: Re-enable input accumulation by defaultRémi Verschelde
I turned it off by mistake in #38697. See also #62664 for details on this boolean's complex history :)
2022-07-02Merge pull request #61610 from ↵Rémi Verschelde
TokageItLab/importer-retarget-registered-gdhumanoid
2022-07-01Merge pull request #62589 from KoBeWi/custom_threadsRémi Verschelde
2022-07-01Handle custom Callables in Thread.start()kobewi
2022-07-01Add arch flag to assembler to fix build on ARM64 macOS / iOS.bruvzg
2022-07-01Merge pull request #62477 from lyuma/packedbytearrayRémi Verschelde
Prevent out-of-bounds write in array conversion; avoid logspam on empty arrays.
2022-06-30Prevent out-of-bounds write in array conversion; avoid logspam on empty arrays.Lyuma
2022-06-30Merge pull request #62540 from MinusKube/debugger-array-crashRémi Verschelde
Add/fix support for RID, Callable and Signal in editor properties
2022-07-01Fixing Print_rich which only displays correctly in terminalVoylin
There was an issue that the type was not passed through correctly. These couple of lines fix this issue and make print_rich work as expected.
2022-07-01implement bone renamer in importerSilc Renew
2022-06-30Add serialization for RID and SignalMinusKube
2022-06-30Errors: Fallback to `fprintf` if `OS` singleton doesn't existRémi Verschelde
Otherwise we would crash if something prints an error before init or after destruction of the `OS` singleton which handles printing/logging.
2022-06-30Merge pull request #61867 from Bromeon/refactor/property-infoRémi Verschelde
2022-06-30Merge pull request #61096 from leogeier/expose-adding-resource-loaders-saversRémi Verschelde
2022-06-29Remove SceneTree dependency from LocalDebuggerTechnoPorg
Core classes should not have dependencies on scene classes.
2022-06-29Exposes methods for adding and removing ResourceFormatLoaders and -Savers in ↵leogeier
the ClassDB
2022-06-29GDExtension: reuse code with constructor PropertyInfo(const ↵Jan Haller
GDNativePropertyInfo&)
2022-06-28Merge pull request #60675 from voylin/Add-BBCode-support-for-printing-outputRémi Verschelde
Adding print_rich() for printing with BBCode
2022-06-28Merge pull request #59167 from akien-mga/zstd-1.5.2Rémi Verschelde
zstd: Update to upstream version 1.5.2