-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex16.js
63 lines (52 loc) · 1.88 KB
/
ex16.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import * as THREE from 'three';
import TWEEN from 'tween';
//init
const scene = new THREE.Scene()
const camera = new THREE.PerspectiveCamera(75, window.innerWidth/window.innerHeight, 0.1, 1000)
const renderer = new THREE.WebGLRenderer()
renderer.setSize(window.innerWidth, window.innerHeight)
document.body.appendChild(renderer.domElement)
//camera
camera.position.set(0,0,55)
camera.lookAt(0,0,0)
//--------------------------------------------------------------------------
const alphaGroup = new THREE.Group()
const loader = new THREE.FontLoader();
scene.add(alphaGroup)
const onDocumentKeyDown = ( event ) => {
loader.load( 'font/helvetiker_regular.typeface.json', font => {
let geometry = new THREE.TextGeometry( event.key, {
font: font,
size: 2,
height: 1,
curveSegments: 5,
bevelEnabled: false,
bevelThickness: 10,
bevelSize: 8,
bevelOffset: 0,
bevelSegments: 5
} );
let letterMesh = new THREE.Mesh(geometry, material)
const material = new THREE.MeshBasicMaterial( { wireframe: true,
vertexColors: THREE.FaceColors } );
letterMesh.position.set(THREE.Math.randInt(-50, 50 ),
20,
0)
alphaGroup.add(letterMesh)
new TWEEN.Tween(letterMesh.position)
.to({
x: letterMesh.position.x , y: -100, z: 0 }, 10000)
.easing(TWEEN.Easing.Quadratic.Out).start()
} )
}
const animate = () => {
requestAnimationFrame( animate )
render()
}
function render() {
TWEEN.update();
//alphaGroup.position.y -=.08
renderer.render( scene, camera )
}
document.addEventListener('keydown', onDocumentKeyDown)
animate()