Skip to content

+EA 23.188 Stable Patch 2 - Plugin.BaseCore

August 26, 2025

1 file modified.

Important Changes

None.

IO

public static void SaveText(string path, string text)

cs
		File.WriteAllText(path, text);
	}

	public static void SaveTextArray(string path, string[] text) 
	{ 
		CreateDirectory(Path.GetDirectoryName(path)); 
		Debug.Log("#io SaveFile;" + path); 
		File.WriteAllLines(path, text); 
	} 
	public static T LoadFile<T>(string path, bool compress = false, JsonSerializerSettings setting = null)
	{
		if (!File.Exists(path))