Call from Unity Runtime
Invoke scripts from an authenticated game client in the Unity Editor.
Read time 4 minutesLast updated a day ago
Run a script by calling it from an authenticated game client in the Unity Editor.
Prerequisites
To use Cloud Code in the Unity Editor, you must first install the Cloud Code SDK and link your Unity Gaming Services project to the Unity Editor.Link project
Link your Unity Gaming Services project with the Unity Editor. You can find your UGS project ID in the Unity Dashboard.- In Unity Editor, select Edit > Project Settings > Services.
-
Link your project.
-
If your project doesn't have a Unity project ID:
- Select Create a Unity Project ID > Organizations, then select an organization from the dropdown menu.
- Select Create project ID.
-
If you have an existing Unity project ID:
- Select Use an existing Unity project ID.
- Select an organization and a project from the dropdown menus.
- Select Link project ID.
-
If your project doesn't have a Unity project ID:
UnityEditor.CloudProjectSettings.projectIdSDK installation
To install the latest Cloud Code package for Unity Editor:- In the Unity Editor, open Window > Package Manager.
- In the Package Manager, select the Unity Registry list view.
- Search for , or locate the Cloud Code package in the list.
com.unity.services.cloudcode - Select the package, then click Install.
SDK setup
The Cloud Code SDK can only call published scripts. Refer to Write scripts for more information on how to write and publish scripts. To get started with the Cloud Code SDK:- Ensure the service is enabled via the Cloud Code page in the Unity Dashboard page.
- Ensure that you have installed both the Cloud Code and the Authentication SDKs.
- Sign into your cloud project from within Unity Editor by selecting Edit > Project Settings... > Services.
- Create a new C# Monobehaviour script in Unity Editor. Refer to Creating and using scripts in the Unity Manual.
- In the script, initialize the Core SDK using await .
UnityServices.InitializeAsync() - In the script, initialize the Authentication SDK.
Typical workflow
You can call the Cloud Code SDK from a regular MonoBehaviour C# script within the Unity Editor.- Create a C# script within Unity Engine. Refer to Unity - Manual: Creating and Using Scripts.
MonoBehaviour - Within the script, configure the Unity Authentication service.
MonoBehaviour - Within the script, add a call to the Cloud Code SDK.
MonoBehaviour - Attach the script to a game object. Refer to Editor Scripting.
MonoBehaviour - Select Play and run the project to see Cloud Code in action.
Authentication
Players must have a valid player ID and access token to access the Cloud Code services. You must authenticate players with the Authentication SDK before using any of the Cloud Code APIs. You can do this by initializing the Authentication SDK inside a C# Monobehaviour script. Refer to Authenticate players. To initialize the Authentication SDK, include the following in your C# Monobehaviour script: C#To get started, we recommend using anonymous authentication. The following example demonstrates how to start anonymous authentication using the authentication package and log the player ID in a script within Unity Editor. C#await AuthenticationService.Instance.SignInAnonymouslyAsync();
using Unity.Services.Authentication;using System.Threading.Tasks;using Unity.Services.Core;using UnityEngine;public class AuthenticationExample : MonoBehaviour{ internal async Task Awake() { await UnityServices.InitializeAsync(); await SignInAnonymously(); } private async Task SignInAnonymously() { AuthenticationService.Instance.SignedIn += () => { var playerId = AuthenticationService.Instance.PlayerId; Debug.Log("Signed in as: " + playerId); }; AuthenticationService.Instance.SignInFailed += s => { // Take some action here... Debug.Log(s); }; await AuthenticationService.Instance.SignInAnonymouslyAsync(); }}
Calling a Cloud Code script
After including authentication in your newly created script, you are ready to call a Cloud Code script. Include the following namespace to integrate Cloud Code into your Unity Editor project: C#To run a created script, use theUsing Unity.Services.CloudCode;
CallEndpointAsyncCloudCodeService.InstanceNote that the/// <summary>/// Calls a Cloud Code function./// </summary>/// <param name="function">Cloud Code function to call.</param>/// <param name="args">Arguments for the cloud code function. Will be serialized to JSON.</param>/// <typeparam name="TResult">Serialized from JSON returned by Cloud Code.</typeparam>/// <returns>Serialized output from the called function.</returns>/// <exception cref="CloudCodeException">Thrown if request is unsuccessful.</exception>/// <exception cref="CloudCodeRateLimitedException">Thrown if the service returned rate limited error.</exception>public async Task<TResult> CallEndpointAsync<TResult>(string function, Dictionary<string, object> args)
functionFull integration example using C# Monobehaviour script
You can use the following code to publish aRollDicediceSidesJavaScript
The following is a full example of how to integrate both the Authentication and Cloud Code services into your script:const _ = require("lodash-4.17");module.exports = async ({ params, context, logger }) => { const roll = rollDice(params.diceSides); if (roll > params.diceSides) { // Log an error message with information about the exception logger.error("The roll is greater than the number of sides: " + roll); // Return an error back to the client throw Error("Unable to roll dice!"); } return { sides: params.diceSides, roll: roll, };};function rollDice(sides) { return _.random(1, sides);}
To test the script, attach it to a game object in the Unity Editor, then select Play. You can include the following code in theusing System.Collections.Generic;using UnityEngine;using Unity.Services.Authentication;using Unity.Services.CloudCode;using Unity.Services.Core;public class RollDiceExample : MonoBehaviour{ // ResultType structure is the serialized response from the RollDice script in Cloud Code private class ResultType { public int Roll; public int Sides; } // Call this method to roll the dice (use a button) public async void CallMethod() { await UnityServices.InitializeAsync(); // Sign in anonymously into the Authentication service if (!AuthenticationService.Instance.IsSignedIn) await AuthenticationService.Instance.SignInAnonymouslyAsync(); // Call out to the Roll Dice script in Cloud Code var response = await CloudCodeService.Instance.CallEndpointAsync<ResultType>("RollDice", new Dictionary<string, object>( ) { { "diceSides", 6 } }); // Log the response of the script in console Debug.Log($"You rolled {response.Roll} / {response.Sides}"); }}
Start()CallMethod()You can serialize the response from the Cloud Code script into your preferred type. To learn more about the Cloud Code SDK, check Cloud Code SDK API.public void Start(){ CallMethod();}