Documentation

SiliconGhetto Docs

Browser-first game engine built in Rust + WebAssembly. These docs cover the engine architecture, design decisions, and how to build with it.

Quick Start

<script src="https://cdn.siliconghetto.com/engine/v0.1/sg.js"></script>
<script>
  const game = sg.init({ canvas: '#game' });
  game.spawn({ x: 0, y: 10, z: 0, sprite: { id: 'player' } });
</script>