Remove unnecessary video property

This commit is contained in:
Manuel Martin 2023-05-30 16:43:48 +02:00
Родитель 418d225e21
Коммит dab2c2dbec
2 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -1,9 +1,10 @@
import { LinearFilter, Texture } from "three";
import { Mapping, TextureDataType, TextureFilter, PixelFormat, Wrapping, Source } from "three";
import { Mapping, TextureDataType, TextureFilter, PixelFormat, Wrapping } from "three";
export class HubsVideoTexture extends Texture {
isVideoTexture: boolean;
wasPaused: boolean;
video: HTMLVideoElement;
constructor(
video: HTMLVideoElement,

4
types/three.d.ts поставляемый
Просмотреть файл

@ -24,8 +24,4 @@ declare module "three" {
interface Mesh {
reflectionProbeMode: "static" | "dynamic" | false;
}
interface Texture {
video: HTMLVideoElement;
}
}