View setAnimation.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// rAF polyfill based on https://gist.github.com/1579671 | |
(function(w) { | |
"use strict"; | |
// Find vendor prefix, if any | |
var vendors = ['ms', 'moz', 'webkit', 'o']; | |
for( var i = 0; i < vendors.length && !w.requestAnimationFrame; i++ ) { | |
w.requestAnimationFrame = w[vendors[i]+'RequestAnimationFrame']; | |
} |
View mousemove.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import time | |
import win32api | |
if (len(sys.argv) < 4): | |
print "Usage: python mousemove.py dx dy speed" | |
sys.exit() | |
current = win32api.GetCursorPos() | |
cx = sx = current[0] |
View server.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
let http = require('http'), | |
url = require('url'), | |
querystring = require('querystring'), | |
fs = require('fs'), | |
editorIndex = 'editor/editor.html', | |
port = parseInt(process.argv[2] || 8080, 10); | |
View gist:50672afc9bd6ceb36a3e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ig.module( | |
'plugins.gamepad' | |
) | |
.requires( | |
'impact.input', | |
'impact.game' | |
) | |
.defines(function(){ | |
// Assign some values to the Gamepad buttons. We use an offset of 256 |
View gist:3939020
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ig.module( | |
'plugins.analog-stick' | |
) | |
.requires( | |
'impact.system' | |
) | |
.defines(function(){ | |
ig.AnalogStick = ig.Class.extend({ | |
stickSize: 30, |
View OBJLoader.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @author mrdoob / http://mrdoob.com/ | |
*/ | |
THREE.OBJLoader = function () { | |
THREE.EventDispatcher.call( this ); | |
}; |
View plugins.json.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ig.module( | |
'plugins.json' | |
) | |
.defines(function(){ "use strict"; | |
ig.JSON = ig.Class.extend({ | |
data: null, | |
path: '', | |
View gist:3824284
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ig.module( | |
'plugins.touch-button' | |
) | |
.requires( | |
'impact.system', | |
'impact.input', | |
'impact.image' | |
) | |
.defines(function(){ |
NewerOlder