Skip to content

What is SUS?

SUS UI is a reactive UI framework for Unity UI Toolkit, inspired by Vue.

Pillars

  1. ReactivityProp<T>, Computed<T>, Watch — change data, DOM updates.
  2. .sharq SFC — single-file components: <template> + <script> + <style>.
  3. Component library — SusKit (general UI) + SusGame (HUD / inventory / screens).
  4. Router — Vue Router-like navigation for screens and modals.
  5. Theming — design tokens, density, breakpoints, world-space overlays.

Package map

sus-core (MIT, free)
   └── sus-router (MIT, free)
         └── sus-kit (commercial)
               └── sus-game (commercial, requires kit)

Mental model

If you know Vue SFCs, you already know the shape of .sharq:

VueSUS
propsProp<T> (use .Value)
v-if / :classsame directives
<slot><slot>
watchWatch / WatchEffect
Vue RouterSusRouter

Open-core: Core & Router MIT · Kit & Game commercial