The frontend refers to the HTML, CSS, images, and JavaScript/TypeScript code that runs in web browsers and allows them to connect to Unreal Engine Pixel Streaming applications and interact with them. The frontend library is the foundation that developers can modify and extend to suit the needs of their Pixel Streaming experience.
The frontend consists of two packages:
- lib-pixelstreamingfrontend: the core Pixel Streaming frontend for WebRTC, settings, input, and general functionality.
- lib-pixelstreamingfrontend-ui: the reference UI that users can either optionally apply on top of the core library or build on top of.
- The Settings Panel
- Customizing the Player Webpage
- HTML Page Requirements
- Customizing Player Input Options
- Customizing the Player Widget Style
- Accessing the Pixel Streaming Blueprint API
- Communicating from the Player Page to UE5
- Communicating from UE5 to the Player Page
- Timing Out Inactive Connections
The TypeScript libraries are provided as both an NPM package and a UMD module (available via unpkg), making it easy to consume the libraries from either TypeScript code or plain JavaScript code using modern web development tools and workflows.
When developing your own Pixel Streaming experience the intent is you will start with this library and extend it through the use of its public API. We have provided an example of this workflow in our implementations/typescript, which is an implementation of this library.
If part of the library is not exposed and you wish to extend it, please do so in your own branch and open a pull request with your change for our consideration.
- Install NodeJS LTS 18.17.0 on your system.
- Install npm globally using:
npm install npm -g
(yes this is required)
Changes to the library occur in the /library directory and require you to have NodeJS installed as part of your development environment. Once you have NodeJS installed:
cd library
npm install
npm run build
The user interface library is provided in /ui-library directory. You can either use it or provide your own user interface. To build run:
- Follow the steps to build the library first
cd ui-library
npm install
npm run build-all
The default user interface is provided under /implementations/typescript. To build run:
- Follow the steps to build the libary and ui-library first
cd implementations/typescript
npm install
npm run build-all
This will produce player.html
and player.js
under the SignallingWebServer/Public
directory - this is the default UI.
We recommend studying /ui-library and player.ts/player.html, or alternatively the sample React implementation in implementations/react, then once you have copied and modified the package.json and .ts
into your own implementation/your_implementation
directory, the process is similar:
cd implementation/your_implementation
npm build-all
The /library project has unit tests that test the Pixel Streaming functionality against a mocked connection. To run the tests manually, run:
cd library
npm install
npm run test
Copyright © 2024, Epic Games. Licensed under the MIT License, see the file LICENSE for details.