overte-HifiExperiments/examples/acScripts/toybox.js
2015-09-17 09:03:42 -07:00

17 lines
360 B
JavaScript

//TODO: Figure out why importing svo is only working locally
print("SHNUR SHNUR SHNUR")
var light = Entities.addEntity({
type: "Box",
position: {x: 493, y: 505, z: 602},
dimensions: {x: 3, y: 3, z: 3},
color: {red: 200, green : 10, blue: 200}
});
// function cleanup() {
// Entities.deleteEntity(light);
// }
// Script.scriptEnding.connect(cleanup);