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.
15 lines • 365 B
TypeScript
/**
* Unity Boolean Like Type Declaration. This type declaration is used to
* represent the boolean values `true` and `false` in the Unity Module.
*/
type UnityBooleanLike =
/**
* Represents the boolean value `false`.
*/
0
/**
* Represents the boolean value `true`.
*/
| 1;
export type { UnityBooleanLike };
//# sourceMappingURL=unity-boolean-like.d.ts.map