How to: Using Specials Telemetry
Prerequisites
1) Choose how you’ll provide telemetry
2) Option A - ScriptableObject provider (Inspector setup)
public override bool TryGetPressure(out float value) { /* set value */ } public override bool TryGetAveragePlayerHP(out float value) { /* set value */ }
3) Option B - Code provider (runtime injection)
4) Configure rules that use telemetry
5) Enable the Diagnostics HUD timing (optional but recommended)
6) Quick test workflow
7) Troubleshooting
Last updated