/
AwaitSpaceBeginLoadingByTag (Unity)
AwaitSpaceBeginLoadingByTag (Unity)
public static void AwaitSpaceBeginLoadingByTag(string tag, Action<string> onBeginLoading)
- Description
Triggers when you begin attempting to join a space by Tag, returning the ID of the space being joined.
For more information on Tags, visit Mutli-Space Connections Using Tags
- Sample
using CavrnusSdk.API;
using UnityEngine;
public class TestScript: MonoBehaviour
{
void Start()
{
CavrnusFunctionLibrary.AwaitSpaceBeginLoadingByTag("A", spaceId => {
print("Space A is now loading!");
});
}
}
, multiple selections available,
Related content
AwaitSpaceConnectionByTag (Unity)
AwaitSpaceConnectionByTag (Unity)
More like this
AwaitAnySpaceBeginLoading (Unity)
AwaitAnySpaceBeginLoading (Unity)
More like this
AwaitAnySpaceBeginLoading (Unreal Engine)
AwaitAnySpaceBeginLoading (Unreal Engine)
More like this
awaitAnySpaceBeginLoading (Javascript)
awaitAnySpaceBeginLoading (Javascript)
More like this
AwaitAnySpaceConnection (Unity)
AwaitAnySpaceConnection (Unity)
More like this
JoinSpace (Unity)
JoinSpace (Unity)
More like this