plutonium_engine 0.7.0

Pure Rust Graphics Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Architecture

- Renderer stays ECS-agnostic (immediate-mode draw API in plutonium_engine).
- Game crates: core (ECS/schedules/time/events/RNG), input, assets, ui, audio, gameplay.
- Examples: demo_card_game wires a window loop and calls into schedules.

Key boundaries:
- Render systems build RenderCommands; a submission function calls engine draws.
- Assets resolve to engine handles (textures/fonts) at render time.
- Input collects raw events → actions/edges.

Schedules:
- startup: one-time world setup.
- fixed_update: deterministic step (accumulator in app loop).
- update: variable per-frame logic.
- render: optional systems preparing draw commands.