LogoLogo
Quick Links
  • Arcware Cloud
  • Arcware Cloud Platform
    • Getting started with Arcware Cloud
      • Sign up and sign in
      • Select a Plan & Creating your Tenant
      • Creating your Tenant
      • 04. Creating your first project
      • 05. Upload and manage your Unreal packages
      • 06. Setting up your project
      • 07. Preview and share the stream
      • 08. Upgrade your Tenant
      • πŸ‘‘09. Organization
      • πŸ‘‘10. Add-ons
      • 11. Help Center
      • πŸ‘‘12. Customer Support
    • πŸ‘‘Add-ons guide
      • Direct Flow
      • Asset Management
    • Advanced settings
      • 01. AFK Module - User inactivity
      • 02. Max instance run-time
    • Common Arcware Cloud Questions
  • Unreal Engine Setup
    • Set up Pixel Streaming in your own project​
      • 01. Core Settings
        • 01.1. Plugin
        • 01.2. Pixel Streaming Input / Json messages
        • 01.3. Resolution
        • 01.4. Camera Aspect Ratio
        • 01.5. Framerate
        • 01.6. Mouse
        • 01.7. Touch Input Setup for Mobile
        • 01.8. DirectX version
      • 02. Optional Settings
        • 02.1 Touch Controllers
        • 02.2 Playing Media files
    • Using the Arcware Pixel Streaming Template Project
      • Template Overview
      • Getting Started
        • 01. Template download
        • 02. Arcware Blueprints
          • 02.1. Arcware GameMode
          • 02.2. Arcware Player Controller
            • 02.2.1. Sending and Receiving Json messages
            • 02.2.2. Creating and Testing Your Own Events
          • 02.3. Arcware Pawn
            • 02.3.1 Change Movement Mode
            • 02.3.2 Set Collision Channels
            • 02.3.3 Add new camera views
          • 02.4. Arcware HUD
        • 03. Packaging your project
  • ARCWARE FEATURES
    • Screenshot Functionality
      • Frontend Overview
        • Web UI
        • In-Game UI
      • Blueprint overview
  • Web Integration
    • ⬆️PixelStreaming WebSDK
      • Implementing the stream on your app
        • Getting Started
        • Code examples
          • Javascript + HTML
          • React
          • VueJS
          • AngularJS
        • Migration from @arcware/webrtc-plugin
        • Best practices
      • Configuration
      • Interacting with the Stream
        • Stream Container
        • Video Element
        • Customizing the User Interface
        • Handling Dynamic Content
        • Stream Display Customization
      • Interacting with Unreal Engine
      • In depth
        • Ticket destroyed.
        • Events handlers
        • Disconnect
        • ConnectionIdentifier
        • Settings-Menu
        • AFK-module
      • Showcase
    • ⬇️WebRTC Plugin
      • Getting started
      • Props and Types
      • SizeContainer, container and videoRef
      • Enabling the audio
      • Afk-module
      • Interacting with Unreal Engine
      • Example WebRTC Plugin Applications
        • React
        • AngularJS
        • VueJS
        • Plain HTML
Powered by GitBook
LogoLogo

Arcware Cloud Platform

  • Getting started​
  • Add-ons guide
  • Common Arcware Cloud Questions

Unreal Engine Setup

  • Set up Pixel Streaming in your own project​
  • Using the Arcware Pixel Streaming Template Project
  • Common Unreal Engine Questions

Arcware Features

  • Screenshot Functionality

Web Integration

  • PixelStreaming WebSDK
  • WebRTC Plugin

Copyright 2024 - Arcware GmbH

On this page
  • What is Asset Management?
  • WebUI
  • Example: CURL commands
  • Example: Loading glTF assets into Unreal Engine
  • File Server technical documentation
  1. Arcware Cloud Platform
  2. Add-ons guide

Asset Management

Arcware Cloud user portal - Add-ons guide

PreviousDirect FlowNextAdvanced settings

Last updated 10 months ago

Note: Asset Management is currently in limited, closed Beta. If you would like to use this feature please .

What is Asset Management?

Asset Management is an Add-On to Arcware Cloud that gives you access to the file server located in the same LAN as the GPU servers running your projects. Typical, intended use-case for that feature would be to load assets that are not part of the UE application (3D models, textures, scenes etc.) dynamically, at runtime, with very high speed. But you are also free to use access to this server for other purposes - there are no artificial limitations from Arcware side.

Main benefits of using Asset Management on Arcware Cloud together with Pixelstreaming applications are:

  • Speed - File server and GPU server running UE projects are on the same LAN.

  • Full control over your files with access through both WebUI and API.

  • Compatibility with Unreal Engine - you can upload or download files from the server directly from UE application, without any middleware.

WebUI

If you already have access, you can use your login and password to login to the UI to upload or download files.

Alternatively you can test the UI with the demo account (with read-only access): Login: demo Password: demo

Example: CURL commands

  • Download:

    curl -u <login>:<password> -O https://am.arcware.cloud/<username>/<file.ext>
  • Upload:

    curl -u <login>:<password> -F "file=@<file.ext>" https://am.arcware.cloud/<username>/

Example: Loading glTF assets into Unreal Engine

Installing glTFRuntime plugin

  1. Create a project with C++ support.

  2. Download latest release for your version of Unreal Engine.

  3. Extract the downloaded zip file into Plugin directory in your project. Plugin directory may not exist yet, so if that's the case, create it.

  4. Generate Visual Studio project files by right-clicking on your .uproject file and choosing corresponding action:

  5. Rebuild your project.

  6. In Unreal Editor go to plugins and enable glTFRuntime plugin:

  7. Restart UE and you are done with installation.

Loading 3D model

We start by adding a glTF load asset from url (with progress) action:

This action requires URL (string) and Headers (array) to be provided.

In Headers we have to provide basic authorization for file server with in a form like this:

  • Key: Authorization

  • Value: Basic [Base64 encoded login:password]

In this case we use demo account with "demo" as password. To use it as authorization header this login and password in form of "demo:demo" have to be encoded in Base64 into a string "ZGVtbzpkZW1v".

Complete authorization header in our case looks like this:

  • Key: Authorization

  • Value: Basic ZGVtbzpkZW1v

Example: If your login is "hansolo" and password is "milleniumfalcon", your authorization value from endoding "hansolo:milleniumfalcon" and adding Basic as prefix, would be: "Basic aGFuc29sbzptaWxsZW5pdW1mYWxjb24="

You can add support for Progress event, which will trigger each time a new update to download progress is made. Usually, for bigger files, it would show progress to the user. We’ll skip it here.

Also optionally you can provide Loader Config object if you want to specify general configuration for the loaded models. We’ll skip it here.

Once the download is complete it will trigger the Completed event. There we will use the downloaded asset to spawn new actor on the level.

In this example we use SpawnActor action to spawn asset loaded by the glTF Load Asset from URL action at the position defined by transform.

It’s important to select a proper class of the actor spawning class. There are two to choose from - regular and async one:

glTFRuntimeAssetActor will give you more options to choose from, like ability to filter lights or cameras from the scene you are loading but spawning action will freeze the application for the time it’s required to process all the meshes, textures and shaders. Animations are working out-of-the-box.

glTFRuntimeAssetActorAsync always loads complete scene/model, without any filters possible, but will not freeze the application while loading. Minor stuttering caused by CPU usage spike is still possible, but the app will remain responsive during the load. In this class you have an option to Show While Loading which makes part of the model appear as soon as they are ready. If disabled the whole model will appear at once when everything is loaded completely.

Animations are not playing automatically when loaded from async. Some extra trigger to start them may be required.

File Server technical documentation

The file server for the Asset Management is located at .

Get list:

In this example on how to load assets dynamically at runtime using Arcware's Asset Management Server we will use plugin.

It can be installed quickly via Marketplace, but it requires a fee to do it this way. Alternatively, as it's open-source software, it can be compiled manually from and be used for free.

Go to the of the glTFRuntime repository.

For URL we'll use one of the files on the demo account:

To encode your own login and password you can use online tools like

As backend for the file server we are using HFS server: Documentation:

πŸ‘‘
https://am.arcware.cloud
https://am.arcware.cloud/demo/?get=list&folders=*
glTFRuntime
GitHub repository
Latest Releases
https://am.arcware.cloud/demo/bigcity.glb
https://www.base64encode.org
https://github.com/rejetto/hfs
https://rejetto.com/wiki/index.php/HFS_Documentation_%28English%29
contact us