overte-HifiExperiments/examples/example/cleanupChessboards.js
Chris Collins 602275a0f7 First pass moving scripts into an example folder.
This is just a quick first pass to move some of the scripts into an
examples folder. There are also a couple of obvious deletions.
2015-01-06 11:16:40 -08:00

8 lines
No EOL
295 B
JavaScript

var entities = Entities.findEntities(MyAvatar.position, 10000);
var URL = "https://s3.amazonaws.com/hifi-public/models/props/chess/";
for(var i in entities) {
if (Entities.getEntityProperties(entities[i]).modelURL.slice(0, URL.length) === URL) {
Entities.deleteEntity(entities[i]);
}
}