-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObjectBackgroundAngelIsland.class.js
55 lines (40 loc) · 1.11 KB
/
ObjectBackgroundAngelIsland.class.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import { ObjectBackground } from './ObjectBackground.class.js'
import { EngineStateMachine } from './EngineStateMachine.class.js';
var ObjectBackgroundAngelIsland = function() {
var that = new ObjectBackground();
that.bootstrap = "new ObjectBackgroundAngelIsland()";
that.repeat = 'repeat-x';
that.Chill = function(obj) {
var foobar = {};
foobar.id = 0;
foobar.name = 'Chill';
foobar.image = new Image();
foobar.image.src = 'images/BackgroundAngelIsland.png';
foobar.breakable = function(foo) { return false; };
foobar.loop = false;
foobar.length = 1;
foobar.frames = [];
foobar.frames[0] = [];
foobar.frames[0].width = 416;
foobar.frames[0].height = 218;
foobar.frames[0].margin = 0;
foobar.enter = function(sm, obj) {
obj.frame = 0;
obj.foo = 0;
};
foobar.update = function(sm, obj) {
obj.y += Math.sin(obj.foo) * 0.05;
obj.foo += 0.02;
};
foobar.exit = function(sm) {
};
return foobar;
};
/*
* Create new State Machine
*/
that.sm = new EngineStateMachine();
that.sm.changeState( that.Chill(), that );
return that;
};
export { ObjectBackgroundAngelIsland }