mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
config.json editor 2
This commit is contained in:
@@ -62,7 +62,7 @@ namespace VRCX
|
||||
{
|
||||
return "";
|
||||
}
|
||||
var json = System.IO.File.ReadAllText(configFile);
|
||||
var json = File.ReadAllText(configFile);
|
||||
return json;
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ namespace VRCX
|
||||
{
|
||||
var logPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"Low\VRChat\VRChat\";
|
||||
var configFile = Path.Combine(logPath, @"config.json");
|
||||
System.IO.File.WriteAllText(configFile, json);
|
||||
File.WriteAllText(configFile, json);
|
||||
}
|
||||
|
||||
public void ShowDevTools()
|
||||
|
||||
Reference in New Issue
Block a user