mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 06:43:51 +02:00
Move VRChatConfigList
This commit is contained in:
@@ -19578,45 +19578,7 @@ speechSynthesis.getVoices();
|
|||||||
// VRChat Config JSON
|
// VRChat Config JSON
|
||||||
|
|
||||||
$app.data.VRChatConfigFile = {};
|
$app.data.VRChatConfigFile = {};
|
||||||
|
$app.data.VRChatConfigList = {};
|
||||||
$app.data.VRChatConfigList = {
|
|
||||||
cache_size: {
|
|
||||||
name: 'Max Cache Size [GB] (min 20)',
|
|
||||||
default: '20',
|
|
||||||
type: 'number',
|
|
||||||
min: 20
|
|
||||||
},
|
|
||||||
cache_expiry_delay: {
|
|
||||||
name: 'Cache Expiry [Days] (30 - 150)',
|
|
||||||
default: '30',
|
|
||||||
type: 'number',
|
|
||||||
min: 30,
|
|
||||||
max: 150
|
|
||||||
},
|
|
||||||
cache_directory: {
|
|
||||||
name: 'Custom Cache Folder Location',
|
|
||||||
default: '%AppData%\\..\\LocalLow\\VRChat\\vrchat'
|
|
||||||
},
|
|
||||||
dynamic_bone_max_affected_transform_count: {
|
|
||||||
name: 'Dynamic Bones Limit Max Transforms (0 disable all transforms)',
|
|
||||||
default: '32',
|
|
||||||
type: 'number',
|
|
||||||
min: 0
|
|
||||||
},
|
|
||||||
dynamic_bone_max_collider_check_count: {
|
|
||||||
name: 'Dynamic Bones Limit Max Collider Collisions (0 disable all colliders)',
|
|
||||||
default: '8',
|
|
||||||
type: 'number',
|
|
||||||
min: 0
|
|
||||||
},
|
|
||||||
fpv_steadycam_fov: {
|
|
||||||
name: 'First-Person Steadycam FOV',
|
|
||||||
default: '50',
|
|
||||||
type: 'number',
|
|
||||||
min: 30,
|
|
||||||
max: 110
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
$app.methods.readVRChatConfigFile = async function () {
|
$app.methods.readVRChatConfigFile = async function () {
|
||||||
this.VRChatConfigFile = {};
|
this.VRChatConfigFile = {};
|
||||||
@@ -19648,6 +19610,44 @@ speechSynthesis.getVoices();
|
|||||||
});
|
});
|
||||||
|
|
||||||
$app.methods.showVRChatConfig = async function () {
|
$app.methods.showVRChatConfig = async function () {
|
||||||
|
this.VRChatConfigList = {
|
||||||
|
cache_size: {
|
||||||
|
name: i18n.t('dialog.config_json.max_cache_size'),
|
||||||
|
default: '20',
|
||||||
|
type: 'number',
|
||||||
|
min: 20
|
||||||
|
},
|
||||||
|
cache_expiry_delay: {
|
||||||
|
name: i18n.t('dialog.config_json.cache_expiry_delay'),
|
||||||
|
default: '30',
|
||||||
|
type: 'number',
|
||||||
|
min: 30,
|
||||||
|
max: 150
|
||||||
|
},
|
||||||
|
cache_directory: {
|
||||||
|
name: i18n.t('dialog.config_json.cache_directory'),
|
||||||
|
default: '%AppData%\\..\\LocalLow\\VRChat\\vrchat'
|
||||||
|
},
|
||||||
|
// dynamic_bone_max_affected_transform_count: {
|
||||||
|
// name: 'Dynamic Bones Limit Max Transforms (0 disable all transforms)',
|
||||||
|
// default: '32',
|
||||||
|
// type: 'number',
|
||||||
|
// min: 0
|
||||||
|
// },
|
||||||
|
// dynamic_bone_max_collider_check_count: {
|
||||||
|
// name: 'Dynamic Bones Limit Max Collider Collisions (0 disable all colliders)',
|
||||||
|
// default: '8',
|
||||||
|
// type: 'number',
|
||||||
|
// min: 0
|
||||||
|
// },
|
||||||
|
fpv_steadycam_fov: {
|
||||||
|
name: i18n.t('dialog.config_json.fpv_steadycam_fov'),
|
||||||
|
default: '50',
|
||||||
|
type: 'number',
|
||||||
|
min: 30,
|
||||||
|
max: 110
|
||||||
|
}
|
||||||
|
};
|
||||||
await this.readVRChatConfigFile();
|
await this.readVRChatConfigFile();
|
||||||
this.$nextTick(() => adjustDialogZ(this.$refs.VRChatConfigDialog.$el));
|
this.$nextTick(() => adjustDialogZ(this.$refs.VRChatConfigDialog.$el));
|
||||||
this.VRChatConfigDialog.visible = true;
|
this.VRChatConfigDialog.visible = true;
|
||||||
|
|||||||
@@ -2587,7 +2587,7 @@ html
|
|||||||
| {{ $t('dialog.config_json.description1') }} #[br]
|
| {{ $t('dialog.config_json.description1') }} #[br]
|
||||||
| {{ $t('dialog.config_json.description2') }}
|
| {{ $t('dialog.config_json.description2') }}
|
||||||
br
|
br
|
||||||
span {{ $t('dialog.config_json.cache_size') }}
|
span(style="margin-right:5px") {{ $t('dialog.config_json.cache_size') }}
|
||||||
span(v-text="VRChatUsedCacheSize")
|
span(v-text="VRChatUsedCacheSize")
|
||||||
span /
|
span /
|
||||||
span(v-text="VRChatTotalCacheSize")
|
span(v-text="VRChatTotalCacheSize")
|
||||||
|
|||||||
@@ -803,6 +803,10 @@
|
|||||||
"delete_cache": "Delete Cache",
|
"delete_cache": "Delete Cache",
|
||||||
"delete_old_cache": "Delete old versions from cache",
|
"delete_old_cache": "Delete old versions from cache",
|
||||||
"sweep_cache": "Sweep Cache",
|
"sweep_cache": "Sweep Cache",
|
||||||
|
"max_cache_size": "Max Cache Size [GB] (min 20)",
|
||||||
|
"cache_expiry_delay": "Cache Expiry [Days] (30 - 150)",
|
||||||
|
"cache_directory": "Custom Cache Folder Location",
|
||||||
|
"fpv_steadycam_fov": "First-Person Steadycam FOV",
|
||||||
"camera_resolution": "Camera Resolution",
|
"camera_resolution": "Camera Resolution",
|
||||||
"screenshot_resolution": "Screenshot Resolution",
|
"screenshot_resolution": "Screenshot Resolution",
|
||||||
"disable_discord_presence": "Disable Discord Rich Presence",
|
"disable_discord_presence": "Disable Discord Rich Presence",
|
||||||
|
|||||||
Reference in New Issue
Block a user