Unity Game SDKv0.5.1Download SDK
RUEN

Settings and data

Launcher gives every game isolated persistent, cache and log directories. Never write into the installed game directory.

Manifest paths

SDK fieldPurposeDisposable
Paths.PersistentDirsettings and durable local datano
Paths.CacheDirregenerable local cacheyes
Paths.LogDirgame logs and diagnostic snapshotsby rotation

Version settings

{
  "schema": "com.studio.game.settings.v2",
  "master_volume": 0.8,
  "subtitles": true,
  "difficulty": "normal"
}

Write atomically through a temporary file and migration step.

Never store

Never persist SessionToken, the complete launch manifest, license keys or personal data in PlayerPrefs or logs.

Session state

Keep live score in memory, publish snapshots with UpdateScoreAsync, and send the final state through CompleteAsync.