Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- using System.IO;
- using UnityEngine;
-
- namespace UnifiedIO.SystemIO.Internal
- {
- public static class Path
- {
- public static string BaseFolder = Application.persistentDataPath;
-
- public static string GetFullPath(string path)
- {
- if (path.StartsWith("/") || path.StartsWith("\\"))
- {
- path = path.Substring(1);
- }
- return System.IO.Path.Combine(BaseFolder, path);
- }
- }
- }
|