summaryrefslogtreecommitdiffstats
path: root/modules/raycast/godot_update_embree.py
Commit message (Collapse)AuthorAgeFilesLines
* Style: Update `ruff` & `mypy` to latest versionsThaddeus Crews2024-09-201-7/+7
|
* embree: Update to 4.3.1Jakub Mateusz Marcowski2024-03-271-153/+69
|
* [Buildsystem] Fix encoding when reading filesA Thousand Ships2024-03-241-1/+1
|
* Enforce `\n` eol for Python writesThaddeus Crews2024-03-091-3/+5
| | | | • Ensure utf-8 encoding if previously unspecified
* Update embree to 3.13.5DeeJayLSP2022-11-251-10/+14
|
* Upgrade Embree and enable ray packetsJoan Fons2021-09-131-1/+11
| | | | | | Minor patch upgrade. Enabling ray packets results in faster processing of ray streams (i.e. occlusion culling buffer updates) at the cost of slightly larger binary sizes.
* Upgrade Embree to the latest official release.jfons2021-05-211-13/+4
| | | | | | | | Since Embree v3.13.0 supports AARCH64, switch back to the official repo instead of using Embree-aarch64. `thirdparty/embree/patches/godot-changes.patch` should now contain an accurate diff of the changes done to the library.
* Implement occlusion cullingjfons2021-04-231-0/+260
Added an occlusion culling system with support for static occluder meshes. It can be enabled via `Project Settings > Rendering > Occlusion Culling > Use Occlusion Culling`. Occluders are defined via the new `Occluder3D` resource and instanced using the new `OccluderInstance3D` node. The occluders can also be automatically baked from a scene using the built-in editor plugin.