- Support Settings inventory objects

- Add some missing caps and flags
- Fix prims out of order when fetching and building
This commit is contained in:
Casper Warden
2021-09-23 16:37:54 +01:00
parent 6ecad4db55
commit 2c4833baf7
13 changed files with 247 additions and 120 deletions

View File

@@ -828,6 +828,9 @@ export class ObjectStoreLite implements IObjectStore
result.push(this.objects[localID]);
}
}
result.sort((a: GameObject, b: GameObject) => {
return a.ID - b.ID;
});
return result;
}