integration
Unreal Engine Integration
Baseline setup for installing the plugin, authenticating, and binding telemetry in Unreal.
Unreal Engine Integration
This page defines the baseline path to get Twinise telemetry visible in Unreal Engine.
Prerequisites
- Unreal Engine project with C++ enabled
- Twinise plugin package
- A Twinise account — sign in from the plugin panel to authenticate (API-key access is planned)
- At least one provisioned device sending data
Install The Plugin
- Close Unreal Editor.
- Copy
Twiniseinto your projectPlugins/folder. - Regenerate project files.
- Build the project and reopen the editor.
- Verify the plugin is enabled in
Edit -> Plugins.
Configure Connectivity
In Project Settings -> Twinise:
- Set the cloud endpoint URL
- Adjust panel options as needed
Authentication happens via account sign-in from the plugin panel; reconnect behavior (backoff and heartbeats) is handled automatically.
Restart the editor after first-time setup.
Bind A Device To Scene Logic
- Choose a target actor (or manager actor).
- Register binding for a known
device_id. - Subscribe to telemetry update events/delegates.
- Map incoming values to scene outputs:
- Material parameter values
- Niagara user parameters
- Actor state and gameplay events
Recommended Runtime Pattern
- Use one telemetry manager subsystem per world.
- Keep bindings data-driven by
device_id. - Clamp/sanitize values before visual output.
- Separate visualization scaling from raw metric ingestion.
Verify End-To-End
Use this quick check:
- Confirm cloud stream has fresh events for target
device_id. - Print latest payload timestamp in Unreal.
- Move one visible metric (for example temperature to emissive).
- Confirm scene updates within expected latency.
Known Failure Modes
- Cloud receives data but Unreal does not:
- Invalid token or blocked outbound network
- Unreal receives data but actor does not react:
- Wrong
device_idmapping or missing delegate binding
- Wrong
- Values look wrong:
- Unit mismatch or scaling not normalized