feat: Importiere SRGBColorSpace aus 'three' und passe Export an
All checks were successful
Deploy to production / deploy (push) Successful in 1m53s

This commit is contained in:
Torsten Schulz (local)
2026-05-21 08:39:46 +02:00
parent 9a50d4df15
commit 7b56388bee

View File

@@ -7,7 +7,7 @@ import { Color } from 'three/src/math/Color.js';
import { TextureLoader } from 'three/src/loaders/TextureLoader.js';
import { WebGLRenderer } from 'three/src/renderers/WebGLRenderer.js';
import { Scene } from 'three/src/scenes/Scene.js';
import { sRGBEncoding, ACESFilmicToneMapping } from 'three/src/constants.js';
import { SRGBColorSpace, ACESFilmicToneMapping } from 'three';
export {
AmbientLight,
@@ -19,5 +19,5 @@ export {
Scene,
TextureLoader,
WebGLRenderer
,sRGBEncoding,ACESFilmicToneMapping
,SRGBColorSpace as sRGBEncoding,ACESFilmicToneMapping
};