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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# Changelog
## v0.12.18 - 2026-06-01
### 🐞 Fixes
- [Patch] Added occlusion debug viewer (36160da…)
- [Patch] Hierarchy-aware tile culling (5a47bb2…)
- [Patch] Added ancestor walk to hierarchy occlusion (49fd65b…)
- [Patch] Use a closest-point to parent AABB (43a84b6…)
- [Patch] Implemented kd-tree partitioning (06fcc75…)
- [Patch] Improved per-cascade shadow distance (0645690…)
- [Patch] [Patch] Fix hierarchy culling ID format and replace hard-skip with penalty (dcd21ba…)
### 📚 Docs
- [Docs] Updated the docs (07c55ed…)
## v0.12.17 - 2026-05-30
### 🐞 Fixes
- [Patch] Fixed stream profiler (abd8e4b…)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Clone the repository and launch the demo:
```bash
git clone https://github.com/untoldengine/UntoldEngine.git
cd UntoldEngine
git checkout v0.12.17
git checkout v0.12.18
swift run untolddemo
```

Expand Down
2 changes: 1 addition & 1 deletion Sources/DemoGame/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@MainActor
final class AppDelegate: NSObject, NSApplicationDelegate {
private enum Constants {
static let appVersion = "0.12.17"
static let appVersion = "0.12.18"
static let defaultWindowSize = NSSize(width: 1920, height: 1080)
static let minimumWindowSize = NSSize(width: 640, height: 480)
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/Sandbox/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@MainActor
final class AppDelegate: NSObject, NSApplicationDelegate {
private enum Constants {
static let appVersion = "0.12.17"
static let appVersion = "0.12.18"
static let windowSize = NSSize(width: 1600, height: 900)
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/UntoldEngine/Renderer/UntoldEngine.swift
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public class UntoldRenderer: NSObject, MTKViewDelegate {
BatchingSystem.shared.applyRuntimeBatchingTuning(.macOSBalanced)
#endif

Logger.log(message: "Untold Engine Starting. Version 0.12.17")
Logger.log(message: "Untold Engine Starting. Version 0.12.18")
}

public func initSizeableResources() {
Expand Down
2 changes: 1 addition & 1 deletion docs/API/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Clone the repository and launch the demo:
```bash
git clone https://github.com/untoldengine/UntoldEngine.git
cd UntoldEngine
git checkout v0.12.17
git checkout v0.12.18
swift run untolddemo
```

Expand Down
Loading