feat: Importiere SRGBColorSpace aus 'three' und passe Export an

This commit is contained in:
Torsten Schulz (local)
2026-05-21 08:39:46 +02:00
parent 9ac4d538aa
commit 65cc785988

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
};