Unreal Engine 5
Install Particle SDK to local UE5 project
- Open your project root directory which
[ProjectName].uproject
locate at - Create a directory, and set its name to
Plugins
. IfPlugins
already exists, skip this step. - Copy directory
Plugins/ParticleSDK
of Particle SDK toPlugins
directory.
Open UE5 Editor, navigator to Menu → Edit → Plugins
, check the option to enable ParticleSDK.
Try our demo for more use cases.
initialize ParticleSDK create a Init
function in the Widget Blueprint, and then complete its parameters.
Default Browser Widget
: it can be set toW_ExecuteWebBrowser
of Particle SDK. If you want to use your custom WebBrowser Blueprint, it must follow the structure ofW_ExecuteWebBrowser
In Config
: Json string, required project id, client key and appId, could have more parameters, for more details, click hereIn Theme
: Json string, could be empty, it works for custom web wallet ui, for more details, click hereIn Language
: support en-US, zh-CN, zh-TW, ja-JP, ko-KRIn Chain Name / In Chain Id
: support EVM chains and Solana, take a look ChainId And ChainName Configs
Init
create a Login
function in the Widget Blueprint, and then complete its parameters.
Preferred Auth Type
: optional, you can pass "phone" / "email" / "jwt" , or emptyAccount
: optional, you can pass phone number (E.164) / email address / json web token, or empty.OnLoginEvent
: Json string, When user login succeed, user info will be returned as event data,including user uuid, token, wallet info and so on, you should persistent the user info data by yourself.
Login
create a SignMessage
function in the Widget Blueprint, and then complete its parameters.
Message
: the message to be signed by Particle Auth Service. in evm, request utf8 string, like "hello world", in solana, request base58 string.OnSignMessageEvent
: Json string, when user confirmed signing the message in Particle Auth Service, a result will be return as event data, it should contain error or signature.
Sign message
create a SignAndSendTransaction
function in the Widget Blueprint, and then complete its parameters.
Transaction
: the transaction to be signed by Particle Auth Service. in evm, request utf8 json string, in solana, request base58 string.MakeEvmTransaction
: is a helper method to create a evm transaction, also you can create by yourself, then serilized to json string.OnSignAndSendTransactionEvent
: Json string, when user confirmed signing the transaction in Particle Auth Service, a result will be return as event data, it should contain error or signature.
Sign and send transaction
only support evm, create a SignTypedData
function in the Widget Blueprint, and then complete its parameters.
Message
: the message to be signed by Particle Auth Service. in evm, request utf8 json stringVersion
: we support v1, v3, v4, default is v4.OnSignTypedDataEvent
: Json string, when user confirmed signing the message in Particle Auth Service, a result will be return as event data, it should contain error or signature.
Sign typed data
only support solana, create a SignTransaction
function in the Widget Blueprint, and then complete its parameters.
Transaction
: the transaction to be signed by Particle Auth Service. request base58 stringOnSignTransactionEvent
: Json string, when user confirmed signing the message in Particle Auth Service, a result will be return as event data, it should contain error or signature.
Sign transaction
only support solana, create a SignAllTransactions
function in the Widget Blueprint, and then complete its parameters.
Transactions
: the transactions to be signed by Particle Auth Service. request base58 string array.OnSignAllTransactionsEvent
: Json string, when user confirmed signing the message in Particle Auth Service, a result will be return as event data, it should contain error or signature.
Sign all transaction