config.json editor 1

This commit is contained in:
Natsumi
2021-05-04 00:48:45 +12:00
parent 1d826ddf68
commit 45319e613b
2 changed files with 11 additions and 10 deletions

View File

@@ -10912,10 +10912,11 @@ speechSynthesis.getVoices();
$app.data.VRChatConfigFile = {};
$app.data.VRChatConfigList = {
cache_size: 'Max Cache Size in Gigabytes (minimum 20)',
cache_expiry_delay: 'Expire Cache in Days (minimum 30)',
dynamic_bone_max_affected_transform_count: 'Dynamic Bones Limit Max Transforms (0 disables all components)',
dynamic_bone_max_collider_check_count: 'Dynamic Bones Limit Max Collider Collisions (0 disables all components)'
cache_size: { name: 'Max Cache Size in Gigabytes (minimum 20)', default: '20' },
cache_expiry_delay: { name: 'Expire Cache in Days (minimum 30)', default: '30' },
cache_directory: { name: 'Custom Cache Directory Location', default: '%AppData%\\..\\LocalLow\\VRChat\\vrchat' },
dynamic_bone_max_affected_transform_count: { name: 'Dynamic Bones Limit Max Transforms (0 disables all components)', default: '32' },
dynamic_bone_max_collider_check_count: { name: 'Dynamic Bones Limit Max Collider Collisions (0 disables all components)', default: '8' }
};
$app.methods.ReadVRChatConfigFile = async function () {
@@ -10938,7 +10939,7 @@ speechSynthesis.getVoices();
screenshotRes: false
};
API.$on('LOGOUT', function () {
API.$on('LOGIN', function () {
$app.VRChatConfigDialog.visible = false;
});