Ashley, got a quick question for ya.
Why are you using this:
var slash = "\\";
path = require("path");
if (process["platform"] !== "win32")
slash = "/";
Wouldn't it be better/efficient/sexier/insert-adjective-of-choice to use path.sep instead?
Develop games in your browser. Powerful, performant & highly capable.
\\ is used to Mac and Linux Path
Yeah, you're right, path.sep would have been more elegant... maybe I'll change that for the next build :P