mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-17 00:06:17 +02:00
17 lines
360 B
JavaScript
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);
|