Skip to content

Commit

Permalink
Merge branch 'main' into multicam-api
Browse files Browse the repository at this point in the history
  • Loading branch information
kpal81xd authored Nov 18, 2024
2 parents 996d278 + 878d9d7 commit bd1a03e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/scene/scene.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ class Scene extends EventHandler {
/**
* Sets the environment lighting atlas.
*
* @type {Texture}
* @type {Texture|null}
*/
set envAtlas(value) {
if (value !== this._envAtlas) {
Expand Down Expand Up @@ -391,7 +391,7 @@ class Scene extends EventHandler {
/**
* Gets the environment lighting atlas.
*
* @type {Texture}
* @type {Texture|null}
*/
get envAtlas() {
return this._envAtlas;
Expand Down Expand Up @@ -529,7 +529,7 @@ class Scene extends EventHandler {
/**
* Sets the base cubemap texture used as the scene's skybox when skyboxMip is 0. Defaults to null.
*
* @type {Texture}
* @type {Texture|null}
*/
set skybox(value) {
if (value !== this._skyboxCubeMap) {
Expand All @@ -541,7 +541,7 @@ class Scene extends EventHandler {
/**
* Gets the base cubemap texture used as the scene's skybox when skyboxMip is 0.
*
* @type {Texture}
* @type {Texture|null}
*/
get skybox() {
return this._skyboxCubeMap;
Expand Down

0 comments on commit bd1a03e

Please sign in to comment.