Deep Links

You can use URL query parameters to automatically log in, navigate to a page, search for gameObject, and even run console commands.

Examples

// Automatically log in, navigate to the inspector page, and search for "player"
> http://127.0.0.1:7759?pass=1234&page=inspector&s=player

// Automatically log in, navigate to the inspector page, and select the gameObject with the name "player"
> http://127.0.0.1:7759?pass=1234&page=inspector&go=player

// Automatically log in, navigate to the console page, and run "ls player"
> http://127.0.0.1:7759?pass=1234&page=console&run=ls%20player

General Parameters

ParameterDescription
passAutomatically connects with the given password.
pageNavigates to the given page. Options are "inspector", "logs", and "console"

Inspector Parameters

ParameterDescription
sSets the gameObject search filter
goAutomatically selects the gameObject with the given name

Console Parameters

ParameterDescription
runRuns the given console command