SoulFire LogoSoulFire

Set bot rotation

Sets the bot's view rotation (look direction). Yaw is normalized to -180 to 180, pitch is clamped to -90 to 90. The action is queued and executed on the next game tick.

POST
/v1/instances/p0/bots/p1/rotation:set

Sets the bot's view rotation (look direction). Yaw is normalized to -180 to 180, pitch is clamped to -90 to 90. The action is queued and executed on the next game tick.

Authorization

AuthorizationBearer <token>

Preferred API authentication. Use a JWT with the api audience.

In: header

Path Parameters

instance_id*string

The UUID of the SoulFire instance containing the bot.

Formatuuid
bot_id*string

The profile UUID of the bot to rotate.

Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

yaw*number

Horizontal rotation angle in degrees (yaw). Range: -180 to 180 (values outside this range are normalized). Direction mapping: 0 = South, 90 = West, -90 = East, +/-180 = North.

Formatfloat
pitch*number

Vertical rotation angle in degrees (pitch). Range: -90 to 90 (values outside this range are clamped). Direction mapping: -90 = looking up, 0 = horizon, 90 = looking down.

Formatfloat

Response Body

application/json

application/json

application/json

application/json

curl -X POST "http://127.0.0.1:38765/v1/instances/p0/bots/p1/rotation:set" \  -H "Content-Type: application/json" \  -d '{    "yaw": 0.1,    "pitch": 0.1  }'
{  "success": true,  "error": "string"}

How is this page?