Skip to content

Instantly share code, notes, and snippets.

@polyclick
Created July 20, 2015 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save polyclick/7747b7ff707c0c60c805 to your computer and use it in GitHub Desktop.
Save polyclick/7747b7ff707c0c60c805 to your computer and use it in GitHub Desktop.
threejs cube boilerplate scene + tweenmax update ticker
'use strict';
function Application() {
this.camera = null;
this.scene = null;
this.renderer = null;
this.mesh = null;
this.init();
}
Application.prototype = {
init: function() {
this.createScene();
},
createScene: function() {
// renderer
this.renderer = new THREE.WebGLRenderer();
this.renderer.setPixelRatio( window.devicePixelRatio );
this.renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( this.renderer.domElement );
// camera
this.camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 1, 1000 );
this.camera.position.z = 400;
// scene
this.scene = new THREE.Scene();
// geomertry, material & mesh
var geometry = new THREE.BoxGeometry( 200, 200, 200 );
var material = new THREE.MeshBasicMaterial( { color:'#ff0000', wireframe:true } );
this.mesh = new THREE.Mesh( geometry, material );
this.scene.add( this.mesh );
// render & animation ticker
TweenMax.ticker.fps(60);
TweenMax.ticker.addEventListener( 'tick', this.tick.bind( this ) );
// resize
window.addEventListener( 'resize', this.resize.bind( this ), false );
},
tick: function() {
this.animate();
this.render();
},
animate: function() {
this.mesh.rotation.x += 0.005;
this.mesh.rotation.y += 0.01;
},
render: function() {
this.renderer.render( this.scene, this.camera );
},
resize: function() {
// update camera
this.camera.aspect = window.innerWidth / window.innerHeight;
this.camera.updateProjectionMatrix();
// update renderer
this.renderer.setSize( window.innerWidth, window.innerHeight );
}
};
new Application();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment