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