Needs a lot of cleanup. Data has been de-duplicated, and where identical copies existed, one of them has been replaced with a symlink. Some files have been excluded, such as binaries, installers and debug dumps. Some of that may still be present.
40 lines
640 B
JavaScript
40 lines
640 B
JavaScript
(function() {
|
|
var boxIndex = 0;
|
|
var boxProps = {
|
|
type: 'Box',
|
|
color: {
|
|
red: 255,
|
|
green: 0,
|
|
blue: 0
|
|
},
|
|
dimensions: {
|
|
x: 0.25,
|
|
y: 0.25,
|
|
z: 0.25
|
|
}
|
|
}
|
|
|
|
function makeBox() {
|
|
print('making box::'+boxIndex);
|
|
boxProps.position = {
|
|
x: boxIndex/2,
|
|
y: 0,
|
|
z: boxIndex/2
|
|
};
|
|
Entities.addEntity(boxProps);
|
|
boxIndex++;
|
|
}
|
|
|
|
|
|
Script.setInterval(makeBox, 1000);
|
|
var _this;
|
|
NaughtyBug = function() {
|
|
_this = this;
|
|
};
|
|
|
|
NaughtyBug.prototype = {
|
|
|
|
};
|
|
|
|
return new NaughtyBug();
|
|
})
|