UNPKG

metaeditor

Version:

The Pixel Streaming library for ReactJS facilitates the integration of Unreal Engine v.5 into a web browser. It enables the transmission of commands and receipt of callbacks from the stream server once Unreal Engine is launched.

10 lines (9 loc) 311 B
import { EmitOptions } from '../types'; export default function useStreamActions(): { readonly player: any; play(): void; reconnect(): void; emitUi(payload: object, options?: EmitOptions): void; emitSys(payload: object, options?: EmitOptions): void; resetResolution(): void; };