rename '_' postfix to '$' prefix on VRCX internal variables

This commit is contained in:
pypy
2020-01-11 23:13:58 +09:00
parent c0f66ac064
commit f4842bec59
3 changed files with 194 additions and 178 deletions

View File

@@ -596,14 +596,14 @@ if (window.CefSharp) {
occupants: 0,
instances: [],
// custom
labs_: false,
$isLabs: false,
//
...ref
};
this.cachedWorlds.set(ctx.id, ctx);
}
if (ctx.tags) {
ctx.labs_ = ctx.tags.includes('system_labs');
ctx.$isLabs = ctx.tags.includes('system_labs');
}
return ctx;
};