-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
57 lines (49 loc) · 914 Bytes
/
index.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
56
57
/**
* live runner for darlingjs (http://darlingjs.github.io)
*
* it updates world of darlingjs on each animation frame
*
* @type {exports}
*/
'use strict';
var raf = require('raf');
module.exports = function(ops) {
ops = ops || {};
return function(step){
var api = {
/**
* start runner
*
* @returns {api}
*/
start: function() {
if (this.playing) {
return this;
}
this.playing = true;
raf(function tick() {
step();
raf(tick);
});
return this;
},
/**
* stop runner
*
* @returns {api}
*/
stop: function() {
if (!this.playing) {
return this;
}
this.playing = false;
raf.cancel();
return this;
}
};
if (ops.autostart) {
api.start();
}
return api;
};
};