summaryrefslogtreecommitdiffstats
path: root/scene/resources
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-2727-19/+411
|\
| * Merge pull request #85443 from smix8/gridmap_castshadowsThaddeus Crews2024-11-272-0/+38
| |\ | | | | | | | | | Add ShadowCastingSetting to MeshLibrary / GridMap items
| | * Add ShadowCastingSetting to MeshLibrary / GridMap itemssmix82024-11-272-0/+38
| | | | | | | | | | | | Adds ShadowCastingSetting to MeshLibrary / GridMap items.
| * | Merge pull request #99743 from clayjohn/material-texture-maskThaddeus Crews2024-11-271-7/+7
| |\ \ | | |/ | |/| | | | Use Vector4 for texture mask in BaseMaterial to avoid converting to and from Plane
| | * Use Vector4 for texture mask in BaseMaterial to avoid converting to and from ↵clayjohn2024-11-261-7/+7
| | | | | | | | | | | | Plane
| * | Merge pull request #97824 from TokageItLab/retarget-modifierThaddeus Crews2024-11-264-0/+15
| |\ \ | | | | | | | | | | | | Add RetargetModifier3D for realtime retarget to keep original rest
| | * | Add RetargetModifier3D for realtime retarget to keep original restSilc Lizard (Tokage) Renew2024-11-184-0/+15
| | | |
| * | | Add CollisionShape3D custom debug coloursJamie Greunbaum2024-11-2620-12/+351
| | |/ | |/| | | | | | | | | | | | | | | | This allows changing the display colour of a CollisionShape3D node on a per-shape basis. It also adds the ability to display a solid coloured preview of a CollisionShape3D. Closes https://github.com/godotengine/godot-proposals/issues/906
* | | Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-264-1/+198
|\| |
| * | Merge pull request #97388 from tetrapod00/visualshader-linear-srgbThaddeus Crews2024-11-222-1/+28
| |\ \ | | | | | | | | | | | | VisualShader: Add LinearToSRGB and SRGBToLinear to ColorFunc node
| | * | VisualShader: Add LinearToSRGB and SRGBToLinear to ColorFunc nodetetrapod002024-10-192-1/+28
| | | |
| * | | Merge pull request #99498 from carsonetb/mesh-gen-optimizationThaddeus Crews2024-11-221-0/+169
| |\ \ \ | | | | | | | | | | | | | | | Optimize mesh generation by preventing unneeded shape recalculations
| | * | | Optimize mesh generation by preventing unneeded shape recalculationsCarson Bates2024-11-211-0/+169
| | | | | | | | | | | | | | | | | | | | Co-authored-by: Sequoia Haynes <supersequoia11@gmail.com>
| * | | | Allow `SCREEN_UV` to be used in light function of spatial shaderChaosus2024-11-191-0/+1
| | | | |
* | | | | Merge commit godotengine/godot@fd4c29a189e53a1e085df5b9b9a05cac9351b3efSpartan3222024-11-197-40/+110
|\| | | |
| * | | | Merge pull request #86195 from GreenCrowDev/curve3d_closeThaddeus Crews2024-11-182-24/+94
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Add `closed` property to `Curve3D`
| | * | | | Implement closed path for Curve3dmatricola7872024-11-162-24/+94
| | | | | |
| * | | | | Use `(r)find_char` instead of `(r)find` for single charactersA Thousand Ships2024-11-175-16/+16
| | |/ / / | |/| | |
* | | | | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-1210-9/+37
|\| | | |
| * | | | Curve: Check for finiteness before performing calculations in ↵JWeisberg2024-11-121-0/+21
| | | | | | | | | | | | | | | | | | | | `sample_baked()` functions
| * | | | Merge pull request #98767 from jadeharley2/masterThaddeus Crews2024-11-111-1/+1
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Fix inability to set TextureLayeredRD as `TEXTURE_TYPE_CUBE` or `TEXTURE_TYPE_CUBE_ARRAY`
| | * | | | Fix inability to set TextureLayeredRD as TEXTURE_TYPE_CUBE or ↵jadeharley22024-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | TEXTURE_TYPE_CUBE_ARRAY
| * | | | | Merge pull request #97352 from reduz/uids-everywhereThaddeus Crews2024-11-112-0/+5
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Universalize UID support in all resource types
| | * | | | | Universalize UID support in all resource typesJuan2024-11-112-0/+5
| | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ensures all resource types support UIDs in a project. This is required to fix: * Scripts and many other resource types can't be referenced by UID and when refactored the references are lost. * Path export properties can't use UID for unsupported types. * Refactoring problems when files are moved outside the editor (this PR effectively fixes it). * Editor properly refreshing paths if they changed externally while opened (as example, git update). This needs to be addressed in a subsequent PR, but this one effectively sets the prerequisites. Resource types that do not support UID will get a .uid file appended to them (this includes .gd, .gdshader, .gdextension, etc. files).
| * | | | | Merge pull request #92986 from Repiteo/core/ref-instantiate-integrationThaddeus Crews2024-11-115-8/+8
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Core: Integrate Ref `instantiate` where possible
| | * | | | | Core: Integrate `Ref::instantiate` where possibleThaddeus Crews2024-11-105-8/+8
| | |/ / / /
| * / / / / Improve `NavMeshGenerator2D::generator_bake_from_source_geometry_data` ↵Kiro2024-11-111-0/+2
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | performance Avoid copies and redundant work.
* | | | | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-118-28/+101
|\| | | |
| * | | | Merge pull request #98036 from bruvzg/para_btn_spacingThaddeus Crews2024-11-102-8/+37
| |\ \ \ \ | | | | | | | | | | | | | | | | | | [TextParagraph/Button] Add support for line spacing.
| | * | | | [TextParagraph/Button] Add support for line spacing.bruvzg2024-10-102-8/+37
| | | | | |
| * | | | | Merge pull request #98773 from KeyboardDanni/tileset_collision_priorityThaddeus Crews2024-11-102-0/+33
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Add collision priority property to TileSet physics layers
| | * | | | | Add collision priority property to TileSet physics layersDanni2024-11-022-0/+33
| | | | | | |
| * | | | | | Merge pull request #96841 from maidopi-usagi/tree_item_height_cacheThaddeus Crews2024-11-102-0/+6
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | [Tree] Improve Tree Performance by replacing computed height with TreeItem's cached minimum size
| | * | | | | | replace computed height with cached item minimum sizeMaidOpi2024-11-072-0/+6
| | | | | | | |
| * | | | | | | Merge pull request #86600 from nikitalita/fix-missing-resourcesThaddeus Crews2024-11-102-15/+16
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix `MissingResource` properties being stripped on save
| | * | | | | | | Fix missing resource properties being dropped on savenikitalita2024-11-052-15/+16
| | | | | | | | |
| * | | | | | | | Merge pull request #94889 from rune-scape/no-const-list-eraseThaddeus Crews2024-11-101-1/+1
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove const_cast in `List::erase`
| | * | | | | | | | Avoid const_cast in List::erase by requiring mutable elementsrune-scape2024-11-081-1/+1
| | | | | | | | | |
| * | | | | | | | | Merge pull request #98717 from nikitalita/fix-save-to-wav-capsThaddeus Crews2024-11-101-1/+1
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix `AudioStreamWAV::save_to_wav` adding extra '.wav' to file if existing ext is not lower case
| | * | | | | | | | | fix save to wavnikitalita2024-11-011-1/+1
| | | |_|_|_|_|/ / / | | |/| | | | | | |
| * | | | | | | | | Merge pull request #98317 from YYF233333/vformatThaddeus Crews2024-11-071-3/+7
| |\ \ \ \ \ \ \ \ \ | | |_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | Optimize `TileSetAtlasSource::_get_property_list`
| | * | | | | | | | Optimize TileSetAtlasSource::_get_property_listYufeng Ying2024-10-191-3/+7
| | | |_|_|_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Haoyu Qiu <timothyqiu@users.noreply.github.com>
* | | | | | | | | Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-0612-56/+123
|\| | | | | | | |
| * | | | | | | | Merge pull request #98801 from zeux/my-final-formThaddeus Crews2024-11-054-23/+92
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rewrite index optimization code for maximum efficiency
| | * | | | | | | | Rewrite index optimization code for maximum efficiencyArseny Kapoulkine2024-11-044-23/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While all the previous fixes to optimizeVertexCache invocation fixed the vertex transform efficiency, the import code still was missing two crucial recommendations from meshoptimizer documentation: - All meshes should be optimized for vertex cache (this reorders vertices for maximum fetch efficiency) - When LODs are used with a shared vertex buffer, the vertex order should be generated by doing a vertex fetch optimization on the concatenated index buffer from coarse to fine LODs; this maximizes fetch efficiency for coarse LODs The last point is especially crucial for Mali GPUs; unlike other GPUs where vertex order affects fetch efficiency but not shading, these GPUs have various shading quirks (depending on the GPU generation) that really require consecutive index ranges for each LOD, which requires the second optimization mentioned above. However all of these also help desktop GPUs and other mobile GPUs as well. Because this optimization is "global" in the sense that it affects all LODs and all vertex arrays in concert, I've taken this opportunity to isolate all optimization code in this function and pull it out of generate_lods and create_shadow_mesh; this doesn't change the vertex cache efficiency, but makes the code cleaner. Consequently, optimize_indices should be called after other functions like create_shadow_mesh / generate_lods. This required exposing meshopt_optimizeVertexFetchRemap; as a drive-by, meshopt_simplifySloppy was never used so it's not exposed anymore - this will simplify future meshopt upgrades if they end up changing the function's interface.
| * | | | | | | | | Merge pull request #98571 from timothyqiu/pname-no-editorThaddeus Crews2024-11-052-6/+6
| |\ \ \ \ \ \ \ \ \ | | |_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | Don't mark `PROPERTY_USAGE_NO_EDITOR` properties for translation
| | * | | | | | | | Don't mark `PROPERTY_USAGE_NO_EDITOR` properties for translationHaoyu Qiu2024-10-262-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using `PNAME()` on these properties are redundant as they won't be displayed in the editor and some of them will be automatically ignored by the extraction script.
| * | | | | | | | | Merge pull request #93401 from Repiteo/style/clang-tidy-fixesThaddeus Crews2024-11-043-19/+19
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Style: Apply `clang-tidy` fixes
| | * | | | | | | | | Style: Apply `clang-tidy` fixes (superficial)Thaddeus Crews2024-11-041-17/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | • `modernize-use-bool-literals`, `modernize-use-nullptr`, and `readability-braces-around-statements`
| | * | | | | | | | | Style: Apply `clang-tidy` fixesThaddeus Crews2024-11-042-2/+2
| | | |/ / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | • `modernize-use-default-member-init` and `readability-redundant-member-init` • Minor adjustments to `.clang-tidy` to improve syntax & remove redundancies