Skip to content
ย 
ย 

Repository files navigation

Untold Editor

The Untold Editor is a Scene Composition tool for the Untold Engine.
It is designed to help you prepare assets, compose scenes, and generate scene files that are later used inside your game.

โš ๏ธ The Editor is not a full game development environment.
It is a visual companion tool to the Untold Engine.


๐ŸŽฎ For Game Developers

If you want to build a game with the Untold Engine, you will use both:

  1. Untold Engine (required) โ†’ for actual game development
  2. Untold Editor Studio (optional but recommended) โ†’ for scene composition. Download Untold Engine Studio**

What the Editor is for:

  • Converting .usdz โ†’ .untold runtime assets
  • Visually composing scenes
  • Saving scenes as .untoldscene files
  • Previewing assets before using them in code

What the Editor is NOT for:

  • Writing gameplay logic
  • Binding animations or scripts
  • Configuring physics or runtime systems
  • Replacing the engine

๐Ÿ‘‰ You still need to clone the engine to build your game:


๐Ÿš€ Quick Preview (No Setup Required)

If you just want to explore or preview assets, you can download the standalone app:

๐Ÿ‘‰ Download Untold Engine Studio

This lets you:

  • Import assets
  • Compose scenes
  • Preview rendering

But:

โš ๏ธ You cannot build a full game using only the Editor.


๐Ÿ› ๏ธ For Contributors

This repository is for developers who want to contribute to the editor itself.

UntoldEditorScreenshot


โœจ Features

  • Scene Composition Workflow โ€“ Place and organize entities
  • Asset Conversion Pipeline โ€“ Convert .usdz โ†’ .untold
  • Scene Files โ€“ Save/load .untoldscene
  • Asset Browser โ€“ Browse runtime assets
  • Stream Models โ€“ Work with tiled streaming scenes
  • Gizmo Tools โ€“ Transform entities in viewport
  • Quick Preview โ€“ Inspect assets visually
  • Read-Only Rendering Inspection โ€“ Debug rendering state

๐Ÿง  Editor Scope (Important)

The Untold Editor is intentionally limited to:

โœ… Supported

  • Scene layout
  • Asset placement
  • Transform editing
  • Lighting & environment setup
  • Scene serialization

โŒ Not Supported

  • Animation binding
  • Script attachment
  • Physics configuration
  • Gameplay logic
  • Material authoring

These systems are handled in engine code, not the editor.


โœ… Requirements

  • macOS 14+
  • Xcode 15+ (or Swift 5.10+)
  • Metal-capable Mac

๐Ÿ“ฆ Development Setup

If your goal is game development, clone the engine first.

Clone the editor:

git clone https://github.com/untoldengine/UntoldEditor.git
cd UntoldEditor

The Editor is a Swift Package with an executable target named UntoldEditor. It declares a dependency on the Untold Engine package; Xcode/SwiftPM will resolve it automatically.

Build & run via CLI

swift build
swift run UntoldEditor

Open in Xcode (recommended)

  1. Open Xcode โ†’ File โ–ธ Open โ†’ select the Package.swift in this repo
  2. Xcode will create a workspace view for the package
  3. Choose the UntoldEditor scheme โ†’ Run

Pinning the Engine Dependency

By default, this repo pins Untold Engine to a released version. If you want the latest engine changes:

Option A โ€” Xcode UI

  • In the project navigator: Package Dependencies โ†’ UntoldEngine
  • Set Dependency Rule to Branch and type develop

Option B โ€” Edit Package.swift

.dependencies = [
    .package(url: "https://github.com/untoldengine/UntoldEngine.git", branch: "develop")
]

Then reload packages:

xcodebuild -resolvePackageDependencies
# or in Xcode: File โ–ธ Packages โ–ธ Resolve Package Versions

๐Ÿ•น Using the Editor

  1. Create / Open a Project โ€“ Use the start screen or File menu
  2. Set Asset Folder โ€“ Choose an external directory for your projectโ€™s assets
  3. Import Assets โ€“ Use the Asset Browser to import .untold, stream-model manifests, HDRs, materials, animations, and Gaussian assets
  4. Convert USD Assets When Needed โ€“ If you pick a USD asset, export it to .untold first through the importer flow
  5. Compose the Scene โ€“ Select root entities, place them with gizmos, and adjust scene-visible properties in the Inspector
  6. Save / Load Scenes โ€“ Save scenes as .untoldscene; reopen later to continue

๐Ÿ’ก Why an external asset folder?
It enables runtime importing and iteration without copying everything into the app bundle.


๐Ÿค Contributing

We welcome PRs!

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Commit your changes
  4. Push the branch and open a Pull Request

See CONTRIBUTING.md and CODE_OF_CONDUCT.md (coming soon).


๐Ÿ“œ License

Licensed under GNU LGPL v3.0.
See LICENSE for details.

About

untold editor

Resources

Code of conduct

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages