mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 19:12:36 +02:00
* Bring back notion of tracking "bad scripts" to fail stampeding entities as a set * Update stampede JS tests to highlight/troubleshoot preexisting unload issue
21 lines
642 B
JavaScript
21 lines
642 B
JavaScript
(function() {
|
|
return {
|
|
preload: function(uuid) {
|
|
var props = Entities.getEntityProperties(uuid);
|
|
var shape = props.shape === 'Sphere' ? 'Cube' : 'Sphere';
|
|
|
|
Entities.editEntity(uuid, {
|
|
shape: shape,
|
|
color: { red: 0xff, green: 0xff, blue: 0xff },
|
|
});
|
|
this.name = props.name;
|
|
print("preload", this.name);
|
|
},
|
|
unload: function(uuid) {
|
|
print("unload", this.name);
|
|
Entities.editEntity(uuid, {
|
|
color: { red: 0xff, green: 0x0f, blue: 0x0f },
|
|
});
|
|
},
|
|
};
|
|
})
|