Skip to content

Instantly share code, notes, and snippets.

@MD4
Created May 7, 2015 07:37
Show Gist options
  • Save MD4/d9cbb77e212c09c8eafc to your computer and use it in GitHub Desktop.
Save MD4/d9cbb77e212c09c8eafc to your computer and use it in GitHub Desktop.
P2 to PIXI mapping utils
define(function () {
return {
factor: 100,
pixi: function (value, y) {
return value * this.factor * (y ? -1: 1);
},
p2: function (value) {
return value / this.factor;
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment