632366134
632366134
 https://user-images.githubusercontent.com/50910792/188355759-7745cccb-d499-4c1f-81b3-62bfcbd197c6.mp4
无法使用videotextureload如何在3D环境中渲染video
let geometry = new THREE.PlaneGeometry(2, 2); let loader = new THREE.TextureLoader(); const texture = await loader.loadAsync(data); const material = new THREE.MeshBasicMaterial({ side: THREE.DoubleSide, map: texture, }); texture.minFilter = THREE.LinearFilter; texture.flipY...
import { OrbitControls } from "three-platformize/examples/jsm/controls/OrbitControls"; this.camera =new THREE.PerspectiveCamera(20, this.canvas.width / this.canvas.height, 1, 10000); const renderer = (this.renderer = new THREE.WebGL1Renderer({ antialias: true, alpha: true, canvas: this.canvas, })); this.orbitControl =...