Add BotOptionFlags.StoreMyAttachmentsOnly for ultra light-weight footprint

This commit is contained in:
Casper Warden
2017-12-14 02:18:50 +00:00
parent 60e300f052
commit ba121281dc
16 changed files with 96 additions and 17 deletions

View File

@@ -13,7 +13,7 @@ loginParameters.start = "last";
// If you don't intend to use the object store (i.e you have no interest in inworld objects, textures, etc,
// using ObjectStoreLite will drastically reduce the footprint
//
const options = nmv.BotOptionFlags.LiteObjectStore;
const options = nmv.BotOptionFlags.LiteObjectStore | nmv.BotOptionFlags.StoreMyAttachmentsOnly;
const bot = new nmv.Bot(loginParameters, options);