• Как сделать окно UNITY адаптивным в браузере в режиме fullscreen?

    @Likeyourbrother Автор вопроса
    <!DOCTYPE html>
    <html lang="en-us">
      <head>
        <meta charset="utf-8">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>Unity WebGL Player | Fight</title>
        <link rel="shortcut icon" href="TemplateData/favicon.ico">
        <link rel="stylesheet" href="TemplateData/style.css">
        <script src="TemplateData/UnityProgress.js"></script>
        <script src="Build/UnityLoader.js"></script>
        <script>
          var gameInstance = UnityLoader.instantiate("gameContainer", "Build/123.json", {onProgress: UnityProgress});
        </script>
      </head>
      <body>
        <div class="webgl-content">
          <div class="ecran" id="gameContainer"></div>
          </div>
        </div>
      </body>
    </html>