Web browser compatibility
Web development and publishing process
Technical limitationsWeb technology imposes restrictions on Unity web applications designed to run in web browsers. Make sure youâre aware of the following technical limitations before you build your application for the Web platform.
Platform supportMost popular desktop browser versions support Unity Web content, but do note that different browsers offer different levels of support.
The following features in Web builds are either not available or limited due to constraints of the platform itself:
Lack of Web build debug support in Visual StudioDebugging Web builds isnât supported in Visual Studio. For more information, refer to Debug and troubleshoot Web builds.
Lack of Unity cache and caching script supportWeb builds donât support the Unity Cache and Caching Scripting API due to restricted access to the filesystem in browsers. Network requests to asset data and AssetBundles are instead cached in the browser cache. Refer to Cache behavior in Web.
Lack of managed threading supportManaged (C#) threads arenât supported due to the lack of a multithreaded garbage collection feature in WebAssembly. You can enable partial support for threading in the form of native C/C++ threads with the experimental Player setting Native C/C++ Multithreading. Refer to Multithreading support.
Due to this limitation, anything in the C# System.Threading
namespace isnât supported. For example, use of the System.Threading.Timer
class doesnât trigger in Web builds. As well, any timeouts specified in System.Threading.CancellationTokenSource
donât actually time out, because the cancellation mechanism is based on System.Threading.Timer
.
The following code highlights these behavioral differences:
using System.Threading;
using UnityEngine;
public class NoMultithreadedTimers : MonoBehaviour
{
private Timer t;
private static void TimerCallbackElapsed(object obj)
{
Debug.Log("Timer Callback Fired!"); // This will never fire in Web builds because multithreaded timers aren't available.
}
private void Awake()
{
t = new Timer(new TimerCallback(TimerCallbackElapsed), this, 1, -1);
}
}
public class NoCancellationTokenSourceTimeouts : MonoBehaviour
{
private CancellationTokenSource cs;
private void Awake()
{
cs = new CancellationTokenSource(0); // millisecondsDelay=0 to time out immediately
}
private void Update()
{
Debug.Log(cs.IsCancellationRequested.ToString()); // Will return false in Web builds since timeouts aren't tracked for cancellation tokens.
}
}
Networking limitations
There are a few networkingThe Unity system that enables multiplayer gaming across a computer network. More info
See in Glossary features that Web platform doesnât support:
Browsers donât allow direct access to IP sockets for networking due to security concerns. For more information, refer to Web networking.
.NET networking classes within the System.Net
namespace arenât supported.
Web platform doesnât support native socket access because of security limitations within browsers. Therefore, Web also doesnât support features like ICMP ping or UnityEngine.Ping.
There are some limitations in Web platform with the WebGLA JavaScript API that renders 2D and 3D graphics in a web browser. The Unity Web build option allows Unity to publish content as JavaScript programs which use HTML5 technologies and the WebGL rendering API to run Unity content in a web browser. More info
See in Glossary graphics API, which is based on the functionality of the OpenGL ES graphics library. For more information, refer to Web graphics.
Web builds use a custom back end for audio based on the Web Audio API, but it only supports the basic audio functionality. For more information, refer to Audio in Web.
Dynamic generation of codeWeb is an AOT platform, so it doesnât allow dynamic generation of code using System.Reflection.Emit
. This is the same on all other IL2CPPA Unity-developed scripting back-end which you can use as an alternative to Mono when building projects for some platforms. More info
See in Glossary platforms, iOS, and most consoles.
Although Unity provides multithreading support for native C/C++ code, the Web platform doesnât yet support C# multithreading due to limitations of WebAssembly. This means that applications built using the Web platform must run on a single C# thread.
Notes:
The Web platform supports C/C++ multithreading only if you enable Native C/C++ support in the Web Player settingsSettings that let you set various player-specific options for the final game built by Unity. More info
See in Glossary.
The Web platform supports multithreading, when your document is within a secure context.
The following HTTP response headers must be set by the server.
The recommended way to perform complex asynchronous tasks on the Web platform is to use Awaitable
, which can replace System.Threading.Tasks.Task
in most cases. For details, refer to Introduction to asynchronous programming with Awaitable.
You can also use coroutines for asynchronous workflows. But note that Awaitable
can return values directly and automatically throws errors, while coroutines require additional logic for both of these tasks.
The following factors limit the multithreading support:
Constraints on native stack scanningThe Web platform uses WebAssembly, which is a bytecode format for secure and efficient execution of Unity code in web browsers. Web browsers are designed to run the code in a secure and isolated environment which blocks direct access to the native WebAssembly stack. This affects multithreaded garbage collection as the Web garbage collector runs only once at the end of every frame unlike incrementally over multiple frames on other platforms.
No pre-emptive thread signaling supportBackground Workers on the web execute code in parallel independently from each other. On native platforms, the main thread can synchronously send signals to the other threads to pause for garbage collection. This synchronous signaling isnât supported on the web, which prevents WebAssembly compiled C# code from running in multiple threads.
Build and run limitationsUnity uses a web server with only basic functionality to host web builds created with Build and Run (menu: Edit > Build Profiles > Build and Run).
The server doesnât support data caching, which affects:
.data
file, which includes all scenesA Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces. More infoWeb browser compatibility
Web development and publishing process
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4