nightshade-editor 0.14.2

Interactive map editor for the Nightshade game engine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod dev_tools;
mod ecs;
mod editor_scene;
mod gltf_fetch;
mod project;
mod scene_writeback;
mod state;
mod systems;
mod undo;

use nightshade::prelude::launch;
use state::Editor;

pub const HDR_BYTES: &[u8] = include_bytes!("../assets/sky/moonrise.hdr");

fn main() -> Result<(), Box<dyn std::error::Error>> {
    launch(Editor::default())
}