Version: 2023.1
言語: 日本語
WebGLのキャッシュ動作
Audio in WebGL

WebGL graphics

WebGL はウェブブラウザーでグラフィックスをレンダリングするための API で、OpenGL ES グラフィックスライブラリの機能にもとづいています。WebGL 1.0 は OpenGL ES 2.0 の機能とほぼ一致し、WebGL 2.0 は OpenGL ES 3.0 の機能とほぼ一致します。

Camera clear

By default, Unity WebGL clears the drawing buffer after each frame, which means the content of the frame buffer clears regardless of the Camera.clearFlags setting. However, you can change this behavior at instantiation time. To do this, set webglContextAttributes.preserveDrawingBuffer to true in your WebGL template:

script.onload = () => {
       config['webglContextAttributes'] = {"preserveDrawingBuffer": true}; //  WebGL Template のindex.html ファイルにこの行を加える
       createUnityInstance(canvas, config, (progress) => }

Deferred rendering

Unity WebGL only supports Deferred Rendering Path if WebGL2.0 is available. On WebGL 1.0, Unity WebGL runtime falls back to Forward Rendering.

グローバルイルミネーション

Unity WebGL only supports baked GI. Realtime Global Illumination isn’t currently supported in WebGL. In addition, Unity WebGL supports Non-Directional lightmaps only.

Linear rendering

Unity WebGL は WebGL 2.0 で リニア色空間レンダリング のみをサポートします。リニア色空間レンダリングで WebGL 1.0 のフォールバックサポートはありません。リニア色空間レンダリングを使用して WebGL プレイヤーをビルドするには、Player 設定で WebGL 1.0 API を削除し、Other Settings パネルを開き、Automatic Graphics API 設定を無効にします。

一部のウェブブラウザーは sRGB DXT テクスチャ圧縮 をサポートしていません。これにより、すべての DXT テクスチャをランタイムに解凍するため、リニアレンダリングを使用するときにレンダリングパフォーマンスの品質が低下します。

Video clip importer

You can’t use VideoClipImporter to import video clips to your Unity project, because it might increase the initial asset data download size and prevent network streaming. For video playback, use the URL option in the VideoPlayer component and place the asset in the StreamingAssets/ directory to use the built-in network streaming of your browser.

WebGL shader code restrictions

The WebGL 1.0 specification imposes some limitations on GLSLS shader code, which are more restrictive than most OpenGL ES 2.0 implementations. This is mostly relevant when you write your own shaders.

WebGL has specific restrictions on which values to use to index arrays or matrices. For example, WebGL only allows dynamic indexing with constant expressions, loop indices or a combination, except for uniform access in vertex shaders, which you can index using any expression.

Note for WebGL 1.0: Additional restrictions apply on control structures in WebGL 1.0, where it doesn’t allow while loops and most type of for loops. However, it allows counting for loops, where the field initializer sets a variable to a constant, the update adds a constant to or subtracts a constant from the variable, and the continuation test compares the variable to a constant.

Note: Due to limited available memory in WebGL, you should avoid including unneeded shader variants which can lead to unnecessary memory usage. Therefore, Unity recommends familiarizing yourself with shader variants and shader stripping, and take extra care to ensure that you don’t add shaders with too many variants (for example, Unity’s Standard Shader) to the [Always-included Shaders] section(class-GraphicsSettings#Always) in Graphics Settings.

フォントレンダリング

Unity WebGL supports dynamic font rendering similar to other Unity platforms. However, as it doesn’t have access to the fonts installed on the user’s machine, if you want to use any fonts, make sure to include them in the project folder (including any fallback fonts for international characters, or bold/italic versions of fonts), and set as fallback font names.

アンチエイリアス

WebGL は、ブラウザーと GPU のほとんどすべて (ただし、すべてではない) の組み合わせでアンチエイリアスをサポートします。これを使用するには、WebGL プラットフォームのデフォルトの Quality 設定でアンチエイリアスを有効にする必要があります。

Reflection probes

Unity WebGL supports all reflection probes. Note: WebGL 1.0 doesn’t support Smooth realtime reflection probes.

WebGL 2.0 のサポート

Unity には WebGL 2.0 API のサポートが含まれており、ウェブに対する OpenGL ES 3.0 レベルのレンダリング機能を提供します。

By default, Unity WebGL builds support the WebGL 2.0 API. You can configure this in the WebGL Player settings > Other Settings panel by disabling the Automatic Graphics API property and adding the WebGL 1.0 API to your project.

Browsers with WebGL 2.0 support have the following advantages:

  • The content in the Standard Shader is of high quality.
  • Support for GPU Instancing and directional lightmap.
  • There’s no restrictions on indexing and loops in shader code
  • Better performance.

ランタイムに SystemInfo.graphicsDeviceType を使用すると、Unity インスタンスが OpenGLES3 (WebGL2.0) と OpenGLES2 (WebGL1.0)、どちらでレンダリングしているかを判断できます。

Additional resources:


  • WebGL 2.0 のリニアレンダリングは2017.2 で追加 NewIn20172
WebGLのキャッシュ動作
Audio in WebGL