New Feature Added: External Video Creation Support "Telemetry Output" Function
A function has been added to send in-game information to external tools in real time.
Function Overview: UDP transmission to 127.0.0.1 (on your PC only)
Sends game status in JSON format every frame (60 times/second)
Can be linked with external video editing software or custom tools to create perfectly synchronized video sequences for HP, damage taken, shooting, etc.
Main information sent in JSON:
{
"scene": "OutdoorsScene",
"hp_percent": 78.5,
"is_dead": false,
"is_damaged": true,
"is_shooting_main": true,
"is_shooting_missile": false,
"movie_time": 0.0
}
How to Use:
Start the game
Click the "設定変更" button on the start screen (外部送信) to turn it ON
Port number is 9000 (no change required)
Receive 127.0.0.1:9000 with an external tool (Python, Node.js, dedicated synchronization tool, etc.)