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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# Changelog
## v0.13.3 - 2026-06-25
### 🐞 Fixes
- [Patch] Add vision light probes (b2d1ff9…)
- [Patch] Added xr light probe contribution factor (708c22d…)
- [Patch] Add virtual light (c1cf311…)
- [Patch] Updated Engine API v2 (d9c6e57…)
- [Patch] processAnchoredPinchDragLifecycle now supports dragPlane (be493f2…)
- [Patch] Implemented the recursive material opacicty fix (adea187…)
- [Patch] Added support for drag-snapping (f4f4647…)
- [Patch] Route XR lighting through rendering settings (9bfe031…)
- [Patch] Serialize XR ARKit provider runs (7b5f115…)
- [Patch] Added light portal diagnostics (c0176bc…)
- [Patch] Harden recursive material updates and clarify drag constraints (76d4ecc…)
- [Patch] Fixed animations linkage with multiple meshes (cf4ce4a…)
- [Patch] Added support for additional input keys (cc8cf09…)
## v0.13.2 - 2026-06-18
### 🐞 Fixes
- [Patch] Added tile preview overlay for blender (4a31132…)
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.2
git checkout v0.13.3
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.2"
static let appVersion = "0.13.3"
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.2"
static let appVersion = "0.13.3"
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.2")
Logger.log(message: "Untold Engine Starting. Version 0.13.3")
}

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

Expand Down
Loading