Skip to content
Sonia RB edited this page Jun 14, 2021 · 1 revision

Skybox

Les images contenant la skybox sont stockés dans /src/public/skybox/ et en format png. La fonction createSkybox du fichier SceneryUtils en gère la gestion.

Il faut ajouter ces images dans le fichier data.json

data.json

  • posXPath: lien du fichier
  • negXPath: lien du fichier
  • posYPath: lien du fichier
  • negYPath: lien du fichier
  • posZPath: lien du fichier
  • negZPath: lien du fichier

Exemples

"scene": {
   "background": "#bfe3dd",
   "skybox": {
          "posXPath": "/public/skybox/path.png",
          "negXPath": "/public/skybox/path.png",
          "posYPath": "/public/skybox/path.png",
          "negYPath": "/public/skybox/path.png",
          "posZPath": "/public/skybox/path.png",
          "negZPath": "/public/skybox/path.png"
   }
},
Clone this wiki locally