UnityEditor.iOS.Xcode.PBXProject.GetGroupChildrenFiles C# (CSharp) 메소드

GetGroupChildrenFiles() 개인적인 메소드

private GetGroupChildrenFiles ( string projectPath ) : List
projectPath string
리턴 List
        internal List<string> GetGroupChildrenFiles(string projectPath)
        {
            projectPath = PBXPath.FixSlashes(projectPath);
            PBXGroupData data = this.GroupsGetByProjectPath(projectPath);
            if (data == null)
            {
                return null;
            }
            List<string> list2 = new List<string>();
            foreach (string str in (IEnumerable<string>) data.children)
            {
                PBXFileReferenceData data2 = this.FileRefsGet(str);
                if (data2 != null)
                {
                    list2.Add(data2.name);
                }
            }
            return list2;
        }
PBXProject