Skip to content

Commit 2dfaa06

Browse files
authored
Create index.js
1 parent 4987e2e commit 2dfaa06

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
const Soup = require('@stews/soup');
2+
const aepl = require('aepl');
3+
const OUT = new Soup(Object);
4+
5+
6+
class SceneCameraGroup extends Soup {
7+
constructor() {
8+
super(Object);
9+
}
10+
11+
create(name, properties) {
12+
13+
}
14+
15+
sift(callback) {
16+
for (let [k, obj] of this) {
17+
if (callback(obj)) return obj;
18+
}
19+
}
20+
}
21+
22+
23+
OUT.push("SceneCameraGroup", aepl.init("SceneCameraGroup", SceneCameraGroup));
24+
module.exports = OUT.pour();

0 commit comments

Comments
 (0)