What’s on our mind?

Collection of articles, design, site, and resources made by designers and publisher @Menu View

2022/05 61건이 검색되었습니다.

우주

index22 class THREEScene { constructor(container = document.body) { this.container = container; this.init(); } init() { this.setup(); this.camera(); this.addToScene(); this.eventListeners(); this.render(); } setup() { this.group = new THREE.Group(); this.textureLoader = new THREE.TextureLoader(); this.clock = new THREE.Clock(); this.scene = new THREE.Scene(); this.renderer = new THREE.WebGLRende..

더 보기