MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetAllProjects

Method GetAllProjects

Source/Editor/ProjectInfo.cs:205–210  ·  view source on GitHub ↗

Gets all projects including this project, it's references and their references (any deep level of references). The collection of projects.

()

Source from the content-addressed store, hash-verified

203 /// </summary>
204 /// <returns>The collection of projects.</returns>
205 public HashSet<ProjectInfo> GetAllProjects()
206 {
207 var result = new HashSet<ProjectInfo>();
208 GetAllProjects(result);
209 return result;
210 }
211
212 private void GetAllProjects(HashSet<ProjectInfo> result)
213 {

Callers 5

GetAllProjectsFunction · 0.45
LoadProductMethod · 0.45
TryGetProjectAtFolderMethod · 0.45
CanCreateMethod · 0.45
InitMethod · 0.45

Calls 2

GetAllProjectsFunction · 0.85
AddMethod · 0.45

Tested by

no test coverage detected