コード例 #1
0
 public EncyData(string encyTitle, string encyText, EncyNode encyNode, Texture2D encyPic)
 {
     title       = encyTitle;
     description = encyText;
     node        = encyNode;
     image       = encyPic;
 }
コード例 #2
0
 public static string GetEncyPath(EncyNode node)
 {
     return(EncyNodes[node]);
 }
コード例 #3
0
 public static string[] GetEncyNodes(EncyNode node)
 {
     return(EncyNodes[node].Split('/'));
 }
コード例 #4
0
 /// <summary>
 /// This method returning the full path of encyclopedia tab.
 /// </summary>
 public static string GetEncyPath(EncyNode node) => EncyNodes[node];
コード例 #5
0
 /// <summary>
 /// This method returning the full path of encyclopedia tab in splitted form.
 /// </summary>
 public static string[] GetEncyNodes(EncyNode node) => EncyNodes[node].Split('/');