Skip to content

SusSplashScreenContent

SusSplashScreenContent

Boot splash — indeterminate spinner + title banner; set title via SetTitle.

Package

SusGame · Screens (commercial)

Open in Playground

SusGame · Screens

Props

No public props.

Slots

No slots.

Events

No public events.

Style hooks

USS class contract — override appearance without touching C#. States toggle via these classes:

  • sus-splash
  • sus-splash-brand
  • sus-splash-entering
  • sus-splash-spinner
  • sus-splash-status

Usage

No Prop<>. Call SetTitle after create / when boot phase changes.

xml
<template>
  <sus:SusSplashScreenContent />
</template>

<script>
// No Prop<>. After mount: SetTitle("My Game");
</script>
csharp
var splash = new SusSplashScreenContent();
splash.SetTitle("My Game");
// Optional: splash.TitleBanner / splash.Spinner for direct tweaks
Prop / APIRole
SetTitle(title)Updates TitleBanner.Text
TitleBanner / SpinnerBuilt hosts (SusBanner / indeterminate SusProgressCircular)

Notes

  • Default title «Loading…».
  • USS includes opacity transition (sus-splash / sus-splash-entering) for enter fades from host.
  • Content-only — host owns duration / route to menu or loading.