Skip to content

Console

How to add console commands, e.g.

1
2
3
Api.profile.program.sendCommand('UE', { method: 'POST', url: '/api/engine/console/variables/set', body: {
  'r.BloomQuality': '5'
} });

Tip

You can find a comprehensive list of console variables and commands for Unreal Engine here.
This resource will help you when using the console in UE.

Set values of Console(UE)

POST /api/engine/console/variables/set

Set values of Console (in UE) variables

Request Body

1
2
3
{
  "r.AllowHDR": 0
}

Response

None

Get values of Console variables(UE)

POST /api/engine/console/variables/get

Get values of Console (in UE) variables

Request Body

1
2
3
{
  "r.AllowHDR"
}

Response

1
2
3
{
  "r.AllowHDR": 1
}

Execute Console Command

POST /api/engine/console/command

Execute Console command