Add project files.

This commit is contained in:
recroom2016tutorial
2022-06-11 21:42:46 -04:00
parent 7d424a2611
commit e95084d5fe
34 changed files with 5689 additions and 0 deletions

99
Launcherapi/Settings.cs Normal file
View File

@@ -0,0 +1,99 @@
using System;
using System.Collections.Generic;
using System.IO;
using Newtonsoft.Json;
namespace OpenRec2.Launcherapi
{
internal class Settings
{
public static List<Setting> CreateDefaultSettings()
{
return new List<Setting>
{
new Setting
{
Key = "MOD_BLOCKED_TIME",
Value = 0f.ToString()
},
new Setting
{
Key = "MOD_BLOCKED_DURATION",
Value = 0f.ToString()
},
new Setting
{
Key = "PlayerSessionCount",
Value = 0f.ToString()
},
new Setting
{
Key = "ShowRoomCenter",
Value = 1f.ToString()
},
new Setting
{
Key = "QualitySettings",
Value = 3.ToString()
},
new Setting
{
Key = "Recroom.OOBE",
Value = 100.ToString()
},
new Setting
{
Key = "VoiceFilter",
Value = 0f.ToString()
},
new Setting
{
Key = "VIGNETTED_TELEPORT_ENABLED",
Value = 0f.ToString()
},
new Setting
{
Key = "CONTINUOUS_ROTATION_MODE",
Value = 0f.ToString()
},
new Setting
{
Key = "ROTATION_INCREMENT",
Value = 0f.ToString()
},
new Setting
{
Key = "ROTATE_IN_PLACE_ENABLED",
Value = 0f.ToString()
},
new Setting
{
Key = "TeleportBuffer",
Value = 0f.ToString()
},
new Setting
{
Key = "VoiceChat",
Value = 1f.ToString()
},
new Setting
{
Key = "PersonalBubble",
Value = 0f.ToString()
},
new Setting
{
Key = "ShowNames",
Value = 1f.ToString()
},
new Setting
{
Key = "H.264 plugin",
Value = 1f.ToString()
}
};
}
}
}