Skip to content

Instantly share code, notes, and snippets.

View chribbe's full-sized avatar

Christian Östman chribbe

View GitHub Profile
@chribbe
chribbe / index.html
Created November 30, 2012 13:30
A CodePen by Christian Östman. The Rope
<html>
<head>
</head>
<body>
</body>
</html>
@chribbe
chribbe / Impact3D.js
Created October 28, 2012 15:42
Helper to handle three.js objects to render an impactJS game
impact3D = {};
impact3D.models = impact3D.models || {};
impact3D.entities = impact3D.entities || {};
impact3D.player = impact3D.player || {};
impact3D.scene = null;
impact3D.updateCount = 0;
impact3D.init = function(scene)
{
console.log(" ***impact3D Init *** ");
@chribbe
chribbe / Impact3D.js
Created September 26, 2012 14:16
A simple helper for mapping a three.js scene to an impact Game
impact3D = {};
impact3D.models = impact3D.models || {};
impact3D.entities = impact3D.entities || {};
impact3D.player = impact3D.player || {};
impact3D.scene = null;
impact3D.updateCount = 0;
impact3D.clock = new THREE.Clock();
impact3D.init = function(scene)