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 511 B
/** * Metrics configuration type definition. * This type is used to define the configuration for metrics collection in Unity. * It includes an optional interval property to specify the frequency of metrics collection. */ type MetricsConfig = { /** * The interval in milliseconds at which to collect metrics. Otherwise an * interval of 1000 milliseconds (1 second) is used by default. */ interval?: number; }; export type { MetricsConfig }; //# sourceMappingURL=metrics-config.d.ts.map