mirror of
https://git.sleeping.town/mirrors/foxy-moxy
synced 2024-11-15 00:27:43 +00:00
skeleton of Fox class
This commit is contained in:
parent
fcd6dbad41
commit
fc79fddac4
1 changed files with 40 additions and 0 deletions
40
js/fox.js
Normal file
40
js/fox.js
Normal file
|
@ -0,0 +1,40 @@
|
|||
// TODO: use query params for these
|
||||
var gen = require('random-seed');
|
||||
var IMG_WIDTH = 64;
|
||||
var IMG_HEIGHT = 64;
|
||||
|
||||
// move to helper function
|
||||
var Point = function (x, y) {
|
||||
return {
|
||||
x: x,
|
||||
y: y
|
||||
};
|
||||
};
|
||||
|
||||
var randomFox = (function () {
|
||||
|
||||
// head top left corner
|
||||
var origin = Point(IMG_WIDTH / 4, IMG_HEIGHT / 4);
|
||||
// head width and height
|
||||
var width = IMG_WIDTH / 2;
|
||||
var height = IMG_HEIGHT / 2;
|
||||
|
||||
var ears = (function () {
|
||||
// TODO: generate stuff
|
||||
return {
|
||||
left: {
|
||||
x: null
|
||||
},
|
||||
right: {
|
||||
x: null
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
return {
|
||||
ears: ears,
|
||||
eyes: eyes,
|
||||
nose: nose,
|
||||
mouth: mouth
|
||||
};
|
||||
}());
|
Loading…
Reference in a new issue