/// <summary>
/// 安全设置路径
/// </summary>
private string _configSavePath = "/storage/emulated/0/Android/data/com.pvr.seethrough.setting/files/config1.txt";
private void SetBoundary() { if (!File.Exists(_configSavePath)) { string str = "AutoDelete 0\r\n" + "ForceTOC 0\r\n" + "ForceNOUI 1\r\n" + "ForceReset6Dof 1\r\n" + "height 1.05\r\n" + "ForceClose 0\r\n" + "ForceStart 0\r\n" + "#circle_r 6.0\r\n" + "#circle_pcount 36"; File.WriteAllText(_configSavePath, str); } }
if (Application.platform == RuntimePlatform.Android) SetBoundary();
标签:string,configSavePath,手动,Pico,设置,SetBoundary,Android,circle From: https://www.cnblogs.com/WalkingSnail/p/18367296