@hyperplay/browser-sdk
v0.0.5
Published
SDK for browser projects integrating with HyperPlay's Browser Platform.
Downloads
23
Maintainers
Keywords
Readme
HyperPlay Browser SDK
SDK for browser projects integrating with HyperPlay's Browser Platform.
Installation
npm install @hyperplay/browser-sdk
Integration
The following code snippet can be tested with the browser-sdk-demo project.
import { requestFullscreen } from '@hyperplay/browser-sdk'
...
<button onClick={() => {requestFullscreen({ elementId: 'gameCanvas', setStyle: true })}}>Request Fullscreen</button>
...
<div id="gameCanvas">Some Content</div>
Note that requestFullscreen
will call Element.requestFullscreen
by default if your project is not being rendered in the HyperPlay Store.