Skip to main content
Version: SDK-6.0.0

Basic Information on How to Use BACKND

Declare namespace

To use BACKND SDK,
you must declare to use BACKND namespace by using the Using keyword in every script that calls BACKND functions.

Example

using BACKND;

Initialize BACKND SDK

All classes included in the BACKND SDK are initialized when initializing the BACKND SDK.
For more information on how to initialize the BACKND SDK, please refer to the SDK Initialization documentation.

Call BACKND functions

All functions of BACKND can be called via the Backnd singleton object.
For more information on how to call each function, please refer to each relevant documentation.

Namespace is BACKND, and BACKND object is Backnd. Please note that they are case-sensitive.

Example

using BACKND;

void MyFunction()
{
var bro = Backnd.Player.GetMyPlayerInfo();
Debug.Log(bro);
}