bruce-cesium 0.5.7 → 0.5.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2329,6 +2329,19 @@ var VisualsRegister;
2329
2329
  }
2330
2330
  return found;
2331
2331
  };
2332
+ /**
2333
+ * Returns all registered entity ids.
2334
+ */
2335
+ Register.prototype.GetIds = function () {
2336
+ var ids = [];
2337
+ for (var entityId in this.rego) {
2338
+ var regos = this.rego[entityId];
2339
+ if (regos && regos.length) {
2340
+ ids.push(entityId);
2341
+ }
2342
+ }
2343
+ return ids;
2344
+ };
2332
2345
  Register.prototype.updateAllEntities = function () {
2333
2346
  for (var entityId in this.rego) {
2334
2347
  var regos = this.rego[entityId];