Загрузка данных


<style>
      html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: black;
      }
      #unity-container {
        width: 100%;
        height: 100%;
      }
      #unity-canvas {
        width: 100% !important;
        height: 100% !important;
        display: none; /* скрыт до загрузки */
      }
      #unity-loading-bar {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        font-family: sans-serif;
      }
      #unity-logo {
        width: 200px;
        height: 80px;
        margin: 0 auto 20px auto;
        background: url('TemplateData/unity-logo-dark.png') no-repeat center;
        background-size: contain;
      }
      #unity-progress-bar-empty {
        width: 200px;
        height: 20px;
        background: #444;
        margin: 10px auto;
        border-radius: 10px;
        overflow: hidden;
      }
      #unity-progress-bar-full {
        width: 0%;
        height: 100%;
        background: #09f;
        transition: width 0.2s;
      }
    </style>