Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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);
- }
- }
- }
|