summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-23Merge pull request #68297 from Mickeon/doc-virtue-signalingRémi Verschelde
Tweak Signal Documentation
2022-11-23Merge pull request #68580 from rhofour/fix-source-generationRémi Verschelde
First attempt at fully qualifying the default values of C# properties.
2022-11-23Tweak Signal DocumentationMicky
- Add missing Operator and leading description - Avoid calling "Signal" an object or class. - Add more details to `connect` and `disconnect`
2022-11-23Merge pull request #68993 from TokageItLab/fix-anim-blending-for-DISCRETE-modeRémi Verschelde
Fix animation blending for value track `UPDATE_DISCRETE` and `UPDATE_TRIGGER` mode
2022-11-23Merge pull request #67726 from HenryClones/integer-lerping-errorsRémi Verschelde
Add case for Variant::INT in lerp variant switch
2022-11-23Merge pull request #68996 from AThousandShips/bit_map_polygon_fix_2Rémi Verschelde
Follow up for BitMap polygon generation
2022-11-23Merge pull request #69005 from akien-mga/shaderlang-sampler-uniforms-array-typeRémi Verschelde
Shader: Set proper resource type hints for sampler uniforms
2022-11-23Merge pull request #69039 from maiself/fix-negative-blend-weightsRémi Verschelde
Fix blending with negative blend weights
2022-11-23Merge pull request #69031 from Sauermann/fix-canvas-transform-initRémi Verschelde
Fix CanvasTransform on RenderingServer when Viewport enters SceneTree
2022-11-23Merge pull request #68648 from KoBeWi/instancentianatate_scriptRémi Verschelde
Allow directly instantiate scripts in scene tree
2022-11-23Merge pull request #69022 from RedMser/unregister-gltfdocextRémi Verschelde
Add unregister for `GLTFDocumentExtension`
2022-11-22Add case for Variant::INT in lerp variant switchXpertice
2022-11-22Fix blending with negative blend weightsMai Lavelle
2022-11-22Fully qualify C# default values in exported fields.R. Alex Hofer
This avoids issues when the default values rely on using namespaces.
2022-11-22Fix CanvasTransform on RenderingServer when Viewport enters TreeMarkus Sauermann
Previously the Viewport didn't initialize its canvas transform in the RenderingServer.
2022-11-22Merge pull request #69017 from raulsntos/physics3d-arrayRémi Verschelde
Change exclude property in `PhysicsRayQueryParameters3D` to TypedArray
2022-11-22Add unregister for GLTFDocumentExtensionRedMser
2022-11-22Merge pull request #64250 from raulsntos/openxr-string-arraysRémi Verschelde
Expose string array properties in OpenXR module as PackedStringArray
2022-11-22Merge pull request #69019 from Sauermann/fix-framebuffer-hashparameterRémi Verschelde
Fix parameters for hash_murmur3_one_32
2022-11-22Merge pull request #68997 from ueshita/fix_verts_65536Rémi Verschelde
Fix some switching decisions for index format. (vertex length 65536)
2022-11-22Merge pull request #68948 from KoBeWi/eeny_meeny_miny_moeRémi Verschelde
Fill random docs
2022-11-22Merge pull request #65378 from Mickeon/fix-audio-stream-2d-non-immediate-playingRémi Verschelde
Fix AudioStreamPlayer2D and 3D's `playing` not updating right away
2022-11-22Merge pull request #64284 from kleonc/image-rotate90-in-placeRémi Verschelde
`Image` Fix `rotate_90`/`rotate_180` methods
2022-11-22Merge pull request #68354 from anvilfolk/cant-clear-scriptRémi Verschelde
Fixes inability to assign script after clearing
2022-11-22Fix parameters for hash_murmur3_one_32Markus Sauermann
In multiple locations in the codebase hash_murmur3_one_32 is used for generating hash values. Whenever a sequence of multiple hash-calculation happens within a single function, the previous hash value is always used as input in the following hash-calculations. The only exception is get_cache_multipass, where currently the previous hash value is overridden without utilizing it. This patch corrects that.
2022-11-22Merge pull request #69002 from ↵Clay John
akien-mga/gdscript-disable-warning-RETURN_VALUE_DISCARDED GDScript: Don't warn about RETURN_VALUE_DISCARDED by default
2022-11-22Allow directly instantiate scripts in scene treekobewi
2022-11-22Merge pull request #68848 from Piralein/fix-class-refYuri Sizov
Fix warnings in class ref
2022-11-22Fill random docskobewi
2022-11-22Fix AudioStreamPlayer2D and 3D's `playing` not updating right awayMicky
2022-11-22Shader: Set proper resource type hints for sampler uniformsRémi Verschelde
Supersedes #64383.
2022-11-22GDScript: Don't warn about RETURN_VALUE_DISCARDED by defaultRémi Verschelde
This happens too often with normal usage of the API. The warning can still be useful to find actual bugs where discarding the return value wasn't intentional, but this should stay enabled manually, at least until we either improve the API to remove false positives, or improve the warning (e.g. to only warn about unused return value on const functions).
2022-11-22Merge pull request #68581 from oganm/oganm/masterRémi Verschelde
fix typo in ZIPReader doc
2022-11-22Merge pull request #68579 from jtnicholl/float_docRémi Verschelde
Document that `Vector#` types are 32-bit by default and `Vector#i` are always 32-bit
2022-11-22BitMap polygon code cleanupNinni Pipping
2022-11-22Merge pull request #68970 from Chaosus/gds_fix_lambda_signalRémi Verschelde
Fix using signals in lambda functions
2022-11-22Merge pull request #68593 from TokageItLab/optimize-blend-animationRémi Verschelde
Optimize animation blend tree process
2022-11-22Fix animation blending for value track DISCRETE/TRIGGER modeSilc Renew
2022-11-22Fix using signals in lambda functionsYuri Rubinsky
2022-11-22Merge pull request #68964 from MewPurPur/tweak-gradient-editorRémi Verschelde
Fixes and improvements to Gradient preview
2022-11-22Merge pull request #68987 from ↵Rémi Verschelde
adamscott/fix-godot#61386-autoload-scenes-implicit-types Fix autoload scenes implicit types
2022-11-22Merge pull request #68972 from adamscott/fix-godot#68971-cached-sceneRémi Verschelde
Fetch cached scene if it exists in `GDScriptCache::get_packed_scene()`
2022-11-22Merge pull request #68942 from Chaosus/barrier_mask_flagsRémi Verschelde
Expose `BarrierMask` as flags enum in `RenderingDevice`
2022-11-22Merge pull request #68911 from souplamp/return-value-discarded-errorRémi Verschelde
Clarify what happens when return value is discarded in GDScript warning text
2022-11-22Merge pull request #68981 from aaronfranke/gltf-methodsRémi Verschelde
Add three new methods to GLTFDocumentExtension and document all of its methods
2022-11-22Merge pull request #68855 from Cafalaarl/Cafalaarl/masterRémi Verschelde
Fixed incorrect gradient orientation in HSV vertical slider
2022-11-22Merge pull request #68966 from clayjohn/GLES3-model-matrixRémi Verschelde
Expose model_matrix in GLES3 scene fragment shader
2022-11-22Expose `BarrierMask` as flags enum in `RenderingDevice`Yuri Rubinsky
2022-11-21[godot#61386] Fix autoload scenes implicit typesAdam Scott
2022-11-21Fixes inability to assign script after clearingocean (they/them)