summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2022-12-20Merge pull request #70108 from akien-mga/embree-arm64-flax-vector-conversionsRémi Verschelde
embree: Build on ARM64 with -flax-vector-conversions
2022-12-20Merge pull request #70309 from smix8/gridmap_collision_priority_4.xRémi Verschelde
Add GridMap collision_priority
2022-12-20Merge pull request #70244 from DarkKilauea/nav-fix-abbrev-compatRémi Verschelde
[4.x] Fix typo and ensure backwards compatibility for changed property names
2022-12-20embree: Fix Linux ARM64 build with `-flax-vector-conversions`Rémi Verschelde
This is a change done upstream in the `devel3` branch for 3.13.6: https://github.com/embree/embree/commit/82ca6b5ccb7abe0403a658a0e079926478f04cb1 They also seem to define it for macOS, but for us it breaks the build... ¯\_(ツ)_/¯ Also change wrong use of CPPFLAGS (pre-processor) where CXXFLAGS (C++) makes more sense.
2022-12-20Fix typo and ensure backwards compatibility for changed property namesJosh Jones
Changes to the name of the `navmesh` and `navpoly` properties on `NavigationRegion` caused navigation data to be lost on load. This PR creates uses `_set`/`_get` to handle compatibility with the older names on load, preserving the data. Also fixes a typo on `get_vertices_per_polygon` in `NavigationMesh`, and renames the property to remove the `polygon_` prefix which doesn't match the setter/getter. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
2022-12-19Add GridMap collision_prioritysmix8
Adds property 'collision_priority' for all physics bodies of the entire GridMap.
2022-12-19Merge pull request #69720 from Chaosus/inst_to_dict_noteYuri Rubinsky
Fix undefined
2022-12-19Merge pull request #70291 from BastiaanOlij/small_action_map_fixesRémi Verschelde
Fix missing undo/redo object and issue with removing actions
2022-12-19Add a note for `inst_to_dict` to prevent using it on built-in instancesYuri Rubinsky
2022-12-19Merge pull request #70219 from bruvzg/msdf_outline_scalingRémi Verschelde
Scale MSDF font outline with the font size and MSDF source size to match dynamic font behavior.
2022-12-19Fix missing undo/redo object and issue with removing actionsBastiaan Olij
2022-12-19Merge pull request #70275 from rune-scape/autoload-subscript-regressionRémi Verschelde
Fix autoload subscript regression
2022-12-18Fix autoload subscript regressionrune-scape
2022-12-18Merge pull request #59810 from reduz/fbx-import-dialogRémi Verschelde
Add a dialog for customizing FBX import
2022-12-18Merge pull request #70237 from ↵Rémi Verschelde
quentinguidee/refactor/fix-comma-instead-of-semicolon Fix use of comma instead of semicolon
2022-12-17Fix use of comma instead of semicolonQuentin Guidée
Signed-off-by: Quentin Guidée <quentin.guidee@gmail.com>
2022-12-18Add a dialog for customizing FBX importreduz
* If FBX files are found, a dialog will pop up asking to configure FBX2glTF. * Dialog can also be accessed by going Editor -> Configure FBX Import. * The dialog also shows a link to click to download the converter, which should contain instructions.
2022-12-18Merge pull request #70229 from adamscott/fix-class-lookupRémi Verschelde
Fix outer class lookup
2022-12-18Merge pull request #69931 from smix8/navigation_abbreviation_changes_4.xRémi Verschelde
Fix Navigation API abbreviations inconsistency
2022-12-17Fix outer class lookupAdam Scott
2022-12-17Fix Navigation API abbreviations inconsistencysmix8
Schema for navigation to name user facing API with "navigation" without abbreviation and e.g. NavigationServer internals with abbr "nav".
2022-12-17Scale MSDF font outline with the font size and MSDF source size to match ↵bruvzg
dynamic font behavior.
2022-12-17Merge pull request #70210 from raulsntos/dotnet/script-not-found-errorIgnacio Roldán Etcheverry
C#: Add note about the class name in instantiate error
2022-12-17Merge pull request #70181 from quentinguidee/fix/gltf-crash-shader-materialRémi Verschelde
glTF: Fix export crash with a ShaderMaterial
2022-12-17C#: Add note about the class name in instantiate errorRaul Santos
Adds a note about the requirement that a C# class name must match the script filename in which the they are defined to the instantiate error.
2022-12-17Fix inner class constant assignmentAdam Scott
2022-12-17Merge pull request #70000 from rune-scape/find-more-classesRémi Verschelde
GDScript: Fix built-in script `find_class` bugs
2022-12-17glTF: Fix export crash with a ShaderMaterial (fixes #70159)Quentin Guidée
2022-12-17Merge pull request #70117 from rsjtdrjgfuzkfg/openxr-action-map-crashfixRémi Verschelde
OpenXR: fix action map editor crash on save / reset
2022-12-17Merge pull request #70180 from rune-scape/enum-value-regressionRémi Verschelde
Fix enum value regression
2022-12-16Fix enum value regressionrune-scape
2022-12-16OpenXR: fix casts and loop in action map editorrsjtdrjgfuzkfg
This commit replaces potentially unsafe static casts with Object::cast_to and fixes the order in which UI elements are looped over when removing controls. This fixes crashes and wrong data being displayed in the OpenXR action map editor when saving or resetting action maps.
2022-12-16Merge pull request #64563 from timothyqiu/word-wrapRémi Verschelde
Fix `String::word_wrap()` for long words
2022-12-16Merge pull request #69867 from raulsntos/dotnet/colorIgnacio Roldán Etcheverry
C#: Synchronize Color with Core
2022-12-16Fix String::word_wrap() for long wordsHaoyu Qiu
- Changes `TextServer.string_get_word_breaks()` - Returns pairs of boundary start and end offsets - Accepts `chars_per_line` to return line breaks - Removes `String::word_wrap()` Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
2022-12-16C#: Synchronize Color with CoreRaul Santos
- Add `Luminance` readonly property. - Add `LinearToSrgb` and `SrgbToLinear` static methods. - Add `FromOkHsl` static method. - Add `FromRgbe9995` static method. - Add `FromString` static method. - Expose `FromHtml` static method. - Expose `HtmlIsValid` static method. - Add and update some Color documentation.
2022-12-16Merge pull request #70131 from rune-scape/preload-type-regressionRémi Verschelde
Fix preload type regression
2022-12-15Merge pull request #70126 from stmSi/fixed-gdscript-unary-unary-crashRémi Verschelde
Fixed GDScript crashed when two consecutive unary operators are analyzed/(script is saved).
2022-12-15Merge pull request #70125 from TokageItLab/cs-sync-usage-flagsRémi Verschelde
Fix out of sync PropertyUsageFlags for cs
2022-12-16Fixed GDScript crashed when two consecutive unary operators are analysedstmSi
2022-12-15Fix preload type regressionrune-scape
2022-12-16Fix out of sync PropertyUsageFlags for csSilc Renew
2022-12-15[RTL/TextServer] Add baseline inline alignment mode for objects and RTL tables.bruvzg
2022-12-15Merge pull request #70113 from adamscott/fix-crash-gdscript-from-variantRémi Verschelde
Fix `GDScript::_get_gdscript_from_variant()` crash
2022-12-15GDScript: Fix built-in script and other `find_class` bugsrune-scape
2022-12-15Fix `GDScript::_get_gdscript_from_variant()` crashAdam Scott
The crash would happen, theoretically, when getting the type of a invalid variant.
2022-12-15Added Projection to ConvertTo<T> and CreateFrom<T>Alberto Vilches
2022-12-15Fix typos with codespellRémi Verschelde
2022-12-15Merge pull request #69471 from rune-scape/rune-out-of-orderRémi Verschelde
GDScript: Out of order member resolution
2022-12-14GDScript: Allow out of order member resolutionrune-scape