Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 696 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 696 Bytes

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.