mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 06:43:51 +02:00
Transparent wrist overlay toggle
This commit is contained in:
@@ -7513,6 +7513,7 @@ speechSynthesis.getVoices();
|
||||
$app.data.worldAutoCacheInviteFilter = configRepository.getBool('VRCX_worldAutoCacheInviteFilter');
|
||||
$app.data.worldAutoCacheGPSFilter = configRepository.getBool('VRCX_worldAutoCacheGPSFilter');
|
||||
$app.data.autoSweepVRChatCache = configRepository.getBool('VRCX_autoSweepVRChatCache');
|
||||
$app.data.vrBackgroundEnabled = configRepository.getBool('VRCX_vrBackgroundEnabled');
|
||||
var saveOpenVROption = function () {
|
||||
configRepository.setBool('openVR', this.openVR);
|
||||
configRepository.setBool('openVRAlways', this.openVRAlways);
|
||||
@@ -7532,6 +7533,7 @@ speechSynthesis.getVoices();
|
||||
configRepository.setBool('VRCX_worldAutoCacheInviteFilter', this.worldAutoCacheInviteFilter);
|
||||
configRepository.setBool('VRCX_worldAutoCacheGPSFilter', this.worldAutoCacheGPSFilter);
|
||||
configRepository.setBool('VRCX_autoSweepVRChatCache', this.autoSweepVRChatCache);
|
||||
configRepository.setBool('VRCX_vrBackgroundEnabled', this.vrBackgroundEnabled);
|
||||
this.updateVRConfigVars();
|
||||
};
|
||||
$app.data.TTSvoices = speechSynthesis.getVoices();
|
||||
@@ -7561,6 +7563,7 @@ speechSynthesis.getVoices();
|
||||
$app.watch.worldAutoCacheInviteFilter = saveOpenVROption;
|
||||
$app.watch.worldAutoCacheGPSFilter = saveOpenVROption;
|
||||
$app.watch.autoSweepVRChatCache = saveOpenVROption;
|
||||
$app.watch.vrBackgroundEnabled = saveOpenVROption;
|
||||
$app.watch.notificationTTS = saveNotificationTTS;
|
||||
$app.data.themeMode = configRepository.getString('VRCX_ThemeMode');
|
||||
if (!$app.data.themeMode) {
|
||||
@@ -7630,6 +7633,10 @@ speechSynthesis.getVoices();
|
||||
$app.data.worldAutoCacheGPS = 'Never';
|
||||
configRepository.setString('VRCX_worldAutoCacheGPS', $app.data.worldAutoCacheGPS);
|
||||
}
|
||||
if (!configRepository.getBool('VRCX_vrBackgroundEnabled')) {
|
||||
$app.data.vrBackgroundEnabled = false;
|
||||
configRepository.setBool('VRCX_vrBackgroundEnabled', $app.data.vrBackgroundEnabled);
|
||||
}
|
||||
if (!configRepository.getString('sharedFeedFilters')) {
|
||||
var sharedFeedFilters = {
|
||||
noty: {
|
||||
@@ -7876,7 +7883,8 @@ speechSynthesis.getVoices();
|
||||
minimalFeed: this.minimalFeed,
|
||||
notificationPosition: this.notificationPosition,
|
||||
notificationTimeout: this.notificationTimeout,
|
||||
notificationTheme
|
||||
notificationTheme,
|
||||
backgroundEnabled: this.vrBackgroundEnabled
|
||||
};
|
||||
sharedRepository.setObject('VRConfigVars', VRConfigVars);
|
||||
this.updateSharedFeed(true);
|
||||
|
||||
Reference in New Issue
Block a user