overte-HifiExperiments/scripts/developer/tests/entityStampedeTest-entity.js
2017-02-23 19:10:44 -05:00

12 lines
330 B
JavaScript

(function() {
return {
preload: function(uuid) {
var shape = Entities.getEntityProperties(uuid).shape === 'Sphere' ? 'Cube' : 'Sphere';
Entities.editEntity(uuid, {
shape: shape,
color: { red: 0xff, green: 0xff, blue: 0xff },
});
}
};
})