123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>three.js webgl - collada - skinning</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
- <style>
- body {
- background:#777;
- padding:0;
- margin:0;
- font-weight: bold;
- overflow:hidden;
- }
- #info {
- position: absolute;
- top: 0px;
- width: 100%;
- color: #ffffff;
- padding: 5px;
- font-family:Monospace;
- font-size:13px;
- text-align:center;
- }
- a {
- color: #ffffff;
- }
- </style>
- </head>
- <body>
- <div id="container"></div>
- <div id="info">
- <a href="https://threejs.org" target="_blank">three.js</a> webgl - collada - skinning
- </div>
- <script src="../build/three.js"></script>
- <script src="js/loaders/ColladaLoader.js"></script>
- <script src="js/controls/OrbitControls.js"></script>
- <script src="js/Detector.js"></script>
- <script src="js/libs/stats.min.js"></script>
- <script>
- if ( ! Detector.webgl ) Detector.addGetWebGLMessage();
- var container, stats, clock;
- var camera, scene, renderer, mixer;
- init();
- animate();
- function init() {
- container = document.getElementById( 'container' );
- camera = new THREE.PerspectiveCamera( 25, window.innerWidth / window.innerHeight, 1, 10000 );
- camera.position.set( - 7, 4, 7 );
- scene = new THREE.Scene();
- clock = new THREE.Clock();
- // collada
- var loader = new THREE.ColladaLoader();
- loader.options.convertUpAxis = true;
- loader.load( "./models/collada/avatar.dae", function ( collada ) {
- var object = collada.scene;
- mixer = new THREE.AnimationMixer( object );
- object.traverse( function ( child ) {
- if ( child instanceof THREE.SkinnedMesh ) {
- var clip = THREE.AnimationClip.parseAnimation( child.geometry.animation, child.geometry.bones );
- mixer.clipAction( clip, child ).play();
- }
- } );
- scene.add( object );
- } );
- //
- var gridHelper = new THREE.GridHelper( 5, 20 );
- scene.add( gridHelper );
- //
- var ambientLight = new THREE.AmbientLight( 0xcccccc );
- scene.add( ambientLight );
- var directionalLight = new THREE.DirectionalLight( 0xffffff );
- directionalLight.position.set( -1, 0.5, -1 ).normalize();
- scene.add( directionalLight );
- //
- renderer = new THREE.WebGLRenderer( { antialias: true } );
- renderer.setPixelRatio( window.devicePixelRatio );
- renderer.setSize( window.innerWidth, window.innerHeight );
- renderer.sortObjects = false;
- container.appendChild( renderer.domElement );
- //
- controls = new THREE.OrbitControls( camera, renderer.domElement );
- //
- stats = new Stats();
- container.appendChild( stats.dom );
- //
- window.addEventListener( 'resize', onWindowResize, false );
- }
- function onWindowResize() {
- camera.aspect = window.innerWidth / window.innerHeight;
- camera.updateProjectionMatrix();
- renderer.setSize( window.innerWidth, window.innerHeight );
- }
- function animate() {
- requestAnimationFrame( animate );
- render();
- stats.update();
- }
- function render() {
- var delta = clock.getDelta();
- if ( mixer !== undefined ) {
- mixer.update( delta );
- }
- renderer.render( scene, camera );
- }
- </script>
- </body>
- </html>
|