Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(GLTFCesiumRTCExtension.d.ts): implements THREE.js's GLTFLoaderPlugin #871

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/plugins/three/gltf/GLTFCesiumRTCExtension.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export class GLTFCesiumRTCExtension {
import { GLTFLoaderPlugin } from 'three/examples/jsm/loaders/GLTFLoader.js';

export class GLTFCesiumRTCExtension implements GLTFLoaderPlugin {

name: 'CESIUM_RTC';

Expand Down
3 changes: 2 additions & 1 deletion src/plugins/three/gltf/GLTFMeshFeaturesExtension.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Vector3 } from 'three';
import { GLTFLoaderPlugin } from 'three/examples/jsm/loaders/GLTFLoader.js';

export class GLTFMeshFeaturesExtension {
export class GLTFMeshFeaturesExtension implements GLTFLoaderPlugin {

name: 'EXT_mesh_features';

Expand Down
3 changes: 2 additions & 1 deletion src/plugins/three/gltf/GLTFStructuralMetadataExtension.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Vector3, Texture } from 'three';
import { GLTFLoaderPlugin } from 'three/examples/jsm/loaders/GLTFLoader.js';

export class GLTFStructuralMetadataExtension {
export class GLTFStructuralMetadataExtension implements GLTFLoaderPlugin {

name: 'EXT_structural_metadata';

Expand Down
Loading