import * as THREE from 'three';
import {OrbitControls} from 'three/examples/jsm/controls/OrbitControls'
const loader = new GLTFLoader();
const draco = new DRACOLoader();
draco.setDecoderPath( '/examples/jsm/libs/draco/' );
loader.setDRACOLoader( draco );
// Load a glTF resource
loader.load(
// resource URL
'/home.glb',
gltf => {
gltf.scene.scale.set(.1,.1,.1);
this._scene.add(gltf.scene);
},
xhr => {
let percent = xhr.loader / xhr.total*100;
console.log('${percent}% of solar system model loaded.');
},
undefined
);
السؤال
Zeina Almakdisi
مرحبا..
احاول تشغيل كود بلاحقة glb. ضمن مشروع Three.js"
قمت بتضمين ملف home.glb ضمن المشروع
واضفت الكود التالي الى Script.js
import * as THREE from 'three'; import {OrbitControls} from 'three/examples/jsm/controls/OrbitControls' const loader = new GLTFLoader(); const draco = new DRACOLoader(); draco.setDecoderPath( '/examples/jsm/libs/draco/' ); loader.setDRACOLoader( draco ); // Load a glTF resource loader.load( // resource URL '/home.glb', gltf => { gltf.scene.scale.set(.1,.1,.1); this._scene.add(gltf.scene); }, xhr => { let percent = xhr.loader / xhr.total*100; console.log('${percent}% of solar system model loaded.'); }, undefined );
وضمن كود ل html:
لكن لم تظهر أي نتيحة في المتصفح ، علما انه لايوجد اي خطأ في السيرفر
3 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.