mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 01:44:35 +08:00
update pipeline export
This commit is contained in:
parent
98a5b086d6
commit
51a4327358
@ -689,7 +689,8 @@ namespace DCFApixels.DragonECS
|
|||||||
int i = 0;
|
int i = 0;
|
||||||
foreach (ref readonly SystemNode node in it)
|
foreach (ref readonly SystemNode node in it)
|
||||||
{
|
{
|
||||||
result.systems[i++] = new EcsPipelineTemplate.AddCommand(node.system, new AddParams(node.layerName, node.sortOrder, node.isUnique));
|
var prms = new AddParams(node.layerName, node.sortOrder, node.isUnique, AddParamsFlags.OverwriteAll | AddParamsFlags.NoImport);
|
||||||
|
result.systems[i++] = new EcsPipelineTemplate.AddCommand(node.system, prms);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user