Skip to content

Instantly share code, notes, and snippets.

@nbriz
Created June 7, 2013 21:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbriz/9fbfcb815feea9f3ab5a to your computer and use it in GitHub Desktop.
Save nbriz/9fbfcb815feea9f3ab5a to your computer and use it in GitHub Desktop.
randomly adjust all morph targets, for threejs_playGnd
/* ------------------- INSTRUCTIONS -----
to morph (or stretch) points in your mesh
place the 'for loop' below,
inside your setup() function,
below your 'material = new THREE.MeshBasicMaterial(...'
and above your 'mesh = new THREE.Mesh(geometry, material)'
-------------------------------------- */
for ( var i = 0; i < geometry.vertices.length; i ++ ) {
var vertices = [];
for ( var v = 0; v < geometry.vertices.length; v ++ ) {
vertices.push( geometry.vertices[ v ].clone() );
if ( v === i ) {
vertices[ vertices.length - 1 ].x *= 2;
vertices[ vertices.length - 1 ].y *= 2;
vertices[ vertices.length - 1 ].z *= 2;
}
}
geometry.morphTargets.push( { name: "target" + i, vertices: vertices } );
}
/* --------------------------------------
then place the code below
below your 'mesh = new THREE.Mesh(geometry, material)'
above your 'scene.add(mesh);'
-------------------------------------- */
mesh.material.morphTargets = true;
/* --------------------------------------
then add the code below to your
draw() fucntion
-------------------------------------- */
for(var v = 0; v < mesh.geometry.vertices.length; v ++ ){
mesh.morphTargetInfluences[ v ] = Math.random();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment