Skip to content

Commit 2d19d3d

Browse files
authored
Merge pull request #8 from Float3/dev
Dev 8
2 parents 6b5b6bd + f888487 commit 2d19d3d

1 file changed

Lines changed: 20 additions & 20 deletions

File tree

VRCLauncher/ViewModel/ViewModel.cs

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@ public class ViewModel : INotifyPropertyChanged
1212
public ViewModel()
1313
{
1414
Config = Config.Load();
15-
_noVR = NoVR;
16-
_fps = FPS;
17-
_legacyFBTCalibrate = LegacyFBTCalibrate;
18-
_profile = Profile;
19-
_watchWorlds = WatchWorlds;
20-
_watchAvatars = WatchAvatars;
21-
_fullscreen = Fullscreen;
22-
_width = Width;
23-
_height = Height;
24-
_monitor = Monitor;
25-
_udonDebugLogging = UdonDebugLogging;
26-
_debugGUI = DebugGUI;
27-
_sdkLogLevels = SDKLogLevels;
28-
_verboseLogging = VerboseLogging;
29-
_midiDevice = MidiDevice;
30-
_oscPorts = OSCPorts;
31-
_customArmRatio = CustomArmRatio;
32-
_disableShoulderTracking = DisableShoulderTracking;
33-
_launchInstance = LaunchInstance;
34-
_arbitraryArguments = ArbitraryArguments;
15+
_noVR = Config.NoVR;
16+
_fps = Config.FPS;
17+
_legacyFBTCalibrate = Config.LegacyFBTCalibrate;
18+
_profile = Config.Profile;
19+
_watchWorlds = Config.WatchWorlds;
20+
_watchAvatars = Config.WatchAvatars;
21+
_fullscreen = Config.Fullscreen;
22+
_width = Config.Width;
23+
_height = Config.Height;
24+
_monitor = Config.Monitor;
25+
_udonDebugLogging = Config.UdonDebugLogging;
26+
_debugGUI = Config.DebugGUI;
27+
_sdkLogLevels = Config.SDKLogLevels;
28+
_verboseLogging = Config.VerboseLogging;
29+
_midiDevice = Config.MidiDevice;
30+
_oscPorts = Config.OSCPorts;
31+
_customArmRatio = Config.CustomArmRatio;
32+
_disableShoulderTracking = Config.DisableShoulderTracking;
33+
_launchInstance = Config.LaunchInstance;
34+
_arbitraryArguments = Config.ArbitraryArguments;
3535
}
3636

3737
private bool _noVR;

0 commit comments

Comments
 (0)