Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
echo "https://github.com/untoldengine/UntoldEngine"
echo ""
echo "README:"
echo "https://github.com/untoldengine/UntoldEngine/blob/main/README.md"
echo "https://github.com/untoldengine/UntoldEngine/blob/develop/README.md"
echo ""
echo "GitHub Discussions:"
echo "https://github.com/untoldengine/UntoldEngine/discussions"
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changelog
## v0.11.4 - 2026-03-26
### 🐞 Fixes
- [Patch] Modify build system with new functions (2ef3bf6…)
- [Patch] Fixed concurrency swift 6 issue (f431f47…)
- [Patch] Added guard to avoid creation of zero dim texture (972c139…)
- [Patch] Consolidate loadScene as the primary scene entry point (8befb7b…)
- [Patch] fixed xr ooc crash issues with large models. (a3e42a3…)
- [Patch]Added xrCamera logging message (832c72f…)
### 📚 Docs
- [Docs] Updated documents (446dcd9…)
- [Docs] Updated readme (291c8f6…)
- [Docs] added link to showcase (5791988…)
## v0.11.3 - 2026-03-24
### 🐞 Fixes
- [Patch] Request world sensing authorization before starting ARKit session (31eac96…)
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,12 @@ This is not a drag-and-drop editor-first engine — it is a **code-driven engine

Check out these videos to see the engine capabilities using the Vision Pro

[Cartoon City Rendering](https://vimeo.com/1176823067?share=copy&fl=sv&fe=ci)
[Cartoon City](https://vimeo.com/1176823067?share=copy&fl=sv&fe=ci)

[Game Dungeon](https://vimeo.com/1176823994?share=copy&fl=sv&fe=ci)

[Room](https://vimeo.com/1176995991?fl=ip&fe=ec)

Creator & Lead Developer:
http://www.haroldserrano.com

Expand Down
163 changes: 155 additions & 8 deletions Sources/UntoldEngine/Systems/GeometryStreamingSystem.swift

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Sources/UntoldEngine/Systems/LODSystem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class LODSystem: @unchecked Sendable {
let cameraComponent = scene.get(component: CameraComponent.self, for: camera)
else { return }

let cameraPosition = cameraComponent.localPosition
let cameraPosition = SceneRootTransform.shared.effectiveCameraPosition(cameraComponent.localPosition)

// Query entities with LOD components
let lodId = getComponentId(for: LODComponent.self)
Expand Down
Loading
Loading