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

Method Add

Source/Tools/Flax.Build/Build/Graph/TaskGraph.cs:62–67  ·  view source on GitHub ↗

Adds a new task to the graph. The type of the task. The created task.

()

Source from the content-addressed store, hash-verified

60 /// <typeparam name="T">The type of the task.</typeparam>
61 /// <returns>The created task.</returns>
62 public T Add<T>() where T : Task, new()
63 {
64 var task = new T();
65 Tasks.Add(task);
66 return task;
67 }
68
69 /// <summary>
70 /// Adds a new task to the graph that copies a file.

Callers 15

MainMethod · 0.45
ReadMethod · 0.45
ReadMethod · 0.45
GetAllProjectsMethod · 0.45
LoadMethod · 0.45
GetMembersMethod · 0.45
ParseMethod · 0.45
ConfigureMethod · 0.45
GenerateSolutionMethod · 0.45
GenerateAsciiSolutionMethod · 0.45
GetInstancesMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected