-
Notifications
You must be signed in to change notification settings - Fork 0
Skybox
Sonia RB edited this page Jun 14, 2021
·
1 revision
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
- posXPath: lien du fichier
- negXPath: lien du fichier
- posYPath: lien du fichier
- negYPath: lien du fichier
- posZPath: lien du fichier
- negZPath: lien du fichier
"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"
}
},