UNPKG

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.

14 lines (13 loc) 307 B
/** * Unity Boolean Like Type Declaration. This type declaration is used to * represent the boolean values `true` and `false` in the Unity Module. */ declare type UnityBooleanLike = /** * Represents the boolean value `false`. */ | 0 /** * Represents the boolean value `true`. */ | 1;