mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
15 lines
221 B
TypeScript
15 lines
221 B
TypeScript
import {
|
|
LightProbe,
|
|
Mesh
|
|
} from '../../../src/Three';
|
|
|
|
export class LightProbeHelper extends Mesh {
|
|
|
|
constructor( lightProbe: LightProbe, size: number );
|
|
|
|
lightProbe: LightProbe;
|
|
size: number;
|
|
|
|
dispose(): void;
|
|
|
|
}
|