react-unity-webgl
Version:
React Unity WebGL provides a modern solution for embedding Unity WebGL builds in your React Application while providing advanced APIs for two way communication and interaction between Unity and React.
23 lines • 529 B
TypeScript
/**
* The status of the Unity loader.
*/
declare enum UnityLoaderStatus {
/**
* The Unity loader is idling and awaiting a resource it be loaded.
*/
Idle = "Idle",
/**
* The Unity loader is loading a resource.
*/
Loading = "Loading",
/**
* The Unity loader has loaded a resource.
*/
Loaded = "Loaded",
/**
* The Unity loader has failed to load a resource.
*/
Error = "Error"
}
export { UnityLoaderStatus };
//# sourceMappingURL=unity-loader-status.d.ts.map