Neonix V2

This is the static guide to Neonix's current authoring vocabulary and Atomic Protocol V2. The examples on these pages are display-only teaching material. They are not sent to a compiler, runtime, preview renderer, or export process.

Start with the model

Neonix separates intent from rendering:

MCP / AI / future editor
        -> high-level authoring intent
        -> Atomic Protocol V2
        -> Runtime IR
        -> frame evaluation
        -> preview or export adapter

The same V2 meaning must be preserved across preview and export, but this guide itself only explains the contracts.

Composition tree

Composition
+-- View
+-- Background
+-- Timeline
\-- Nodes
    +-- Shape
    +-- Path
    +-- Text
    \-- Group

Current rules

  • Atomic Protocol V2 is the current protocol contract.
  • Transform data is designed around a 4x4 matrix.
  • A normal 2D layer is a 3D layer with zero Z rotation and zero Z position.
  • anchor describes the pivot; z describes position along the world axis.
  • High-level patterns and components are future authoring vocabulary, not atoms.
  • Static documentation examples explain meaning but do not render media.

Continue