-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEngineSensor.class.js
47 lines (34 loc) · 1015 Bytes
/
EngineSensor.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
var EngineSensor = function(i) {
var that = {};
// name to identify this sensor
that.name = 'EngineDefaultSensor';
// declare of which type this sensor is
that.type = 'ground';
// declare which objects can collide with this sensor
that.match_objects = ["char", "beatnik", "ringbounce"];
// declare of which type the other sensor has to be
that.match_sensors = ["ground"];
that.x = null;
that.y = null;
that.width = 1;
that.height = 256;
// set of Objects are colliding with this sensor
that.colliding_with = new Set();
// do something while collision
that.collide = function() {};
/*
* method to update position of this sensor
*/
that.update = function(obj) {
that.x = obj.x + i;
that.y = obj.y + obj.heightMaps['floor'][i];
};
that.setHeight = function(val) {
that.height = val;
};
that.setWidth = function(val) {
that.width = val;
};
return that;
};
export { EngineSensor }