docs.unity3d.com
    Show / Hide Table of Contents

    Customize web application

    Implementing the Web Application

    The web application source code can be found in the WebApp folder on GitHub. You can clone the repository using the command below:

    git clone https://github.com/Unity-Technologies/UnityRenderStreaming
    

    The directory structure under the WebApp folder is given below:

    WebApp
    ├─index.html
    ├─public
    │  ├─images
    │  ├─scripts
    │  └─stylesheets
    ├─src
    │  └─class
    └─test
    

    If you want to change the user interface on the browser, you need to customize scripts in the public folder.

    While you want to change the signaling process, please check under the src folder. This source code is written TypeScript.

    Building the Web Application

    Node.js must also be installed to use the source code. Use the following commands to start the web app through npm command:

    cd WebApp
    npm install
    npm run build
    npm run start
    

    Use this command to display the help guide:

    npm run start -- -h
    

    See the documentation for details on the options.

    This command will start the server using ts-node:

    npm run dev
    

    Distributing the web application

    When distributing the web app, the app can be converted into executable binary in order to cut the effort required to set up the environment. Use the following command:

    npm run pack
    
    Back to top
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023