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
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,46 @@
# Changelog
## v0.13.2 - 2026-06-18
### 🐞 Fixes
- [Patch] Added tile preview overlay for blender (4a31132…)
- [Patch] Add Blender tiled-scene metadata and LOD preview tools (2c1878a…)
- [Patch] Fix lod/hlod distances (1a77470…)
- [Patch] Improved lod overlay for uniform grid (e56c488…)
- [Patch] Fix LOD/HLOD gen for spanning tiles and add force_local override (0d3d544…)
- [Patch] Use manifest cell_bounds for tile debug overlay (31a9340…)
- [Patch] Updated the default values in the overlay (5097b7f…)
- [Patch] Tile Floor Fill visibility toggle (9092aea…)
- [Patch] Added progress bar to tile exporter (278b3f8…)
- [Patch] Improve tiled LOD0 handoff diagnostics and fallback coverage (02ff6da…)
- [Patch] Fix tiled LOD fallback retention during visibility handoff (8469998…)
- [Patch] Add tile streaming log category coverage (0dc402b…)
- [Patch] Added Lod cross fade dithering (47d392f…)
- [Patch] Fixed popping after cross fade implementation (d3361da…)
- [Patch] Update Engine API documentation and settings (22a5980…)
- [Patch] Updated additional APIs (9b956e0…)
- [Patch] Improved API (83d5a60…)
- [Patch] Engine HLOD replacement fix + test (58ae514…)
- [Patch] Add tile representation render diagnostics (9d5e793…)
- [Patch]Collapse underfilled quadtree tile-tier groups (5ca53d7…)
- [Patch] Fixed area light math (3b78333…)
- [Patch] Clamped spotlight parameters (dcd6d08…)
- [Patch] Clamped point lights parameters (e5cb8f0…)
- [Patch] Fixed cascade shadows (2447cb5…)
- [Patch] Import-export light from Blender (f2f8f81…)
- [Patch] New API for directional light (e51928f…)
- [Patch] Color correction fix (aee1c1a…)
- [Patch] Fixed issue with dir light not getting set (f6a97ec…)
- [Patch] Added scene author lights and camera to tiles (251c3b7…)
- [Patch] make runtime camera lookup deterministic when multiple CameraComponents exist (4d65ba3…)
- [Patch] Include lights and cameras in Blender add-on exports (17ddc04…)
- [Patch] added function to load authored scene (57858f9…)
- [Patch] Fixed area light import math (a557094…)
- [Patch] Fixed area light direction (2f10a3d…)
- [Patch] Fixed roughness and metallic export (86032bb…)
- [Patch] Add user custom scene channels and prefix mapping (bfc57e0…)
### 📚 Docs
- [Docs] Updated add-on script documentation (fa46413…)
- [Docs] Updated docs with example (b4db01e…)
- [Docs] Updated documentation (5ada000…)
## v0.13.1 - 2026-06-10
### 🐞 Fixes
- [Patch] Implemented MSAA (ec63a6c…)
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.13.1
git checkout v0.13.2
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.13.1"
static let appVersion = "0.13.2"
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.13.1"
static let appVersion = "0.13.2"
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 @@ -182,7 +182,7 @@ public class UntoldRenderer: NSObject, MTKViewDelegate {
BatchingSystem.shared.applyRuntimeBatchingTuning(.macOSBalanced)
#endif

Logger.log(message: "Untold Engine Starting. Version 0.13.1")
Logger.log(message: "Untold Engine Starting. Version 0.13.2")
}

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.13.1
git checkout v0.13.2
swift run untolddemo
```

Expand Down
Loading