Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

- Declaration

public awaitAnySpaceBeginLoading(): Promise<string>

- Description

Returns a promise of the space ID when attempting to join a space.

- Sample

import { CavrnusSpatialConnector } from "../services/csc";
function async awaitSpaceLoad()
{
    const csc = new CavrnusSpatialConnector();
	try
	{
		const spaceId = await csc.awaitAnySpaceBeginLoading();
	}
	catch (err)
	{
		throw err;
	}
}
  • No labels