mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 01:44:35 +08:00
Compare commits
3 Commits
eee0bb5a4d
...
ae45e9fc46
Author | SHA1 | Date | |
---|---|---|---|
![]() |
ae45e9fc46 | ||
![]() |
1c09c94c3e | ||
![]() |
f306fc88e2 |
@ -10,7 +10,7 @@
|
|||||||
<RootNamespace>DCFApixels.DragonECS</RootNamespace>
|
<RootNamespace>DCFApixels.DragonECS</RootNamespace>
|
||||||
|
|
||||||
<Title>DragonECS</Title>
|
<Title>DragonECS</Title>
|
||||||
<Version>0.9.16</Version>
|
<Version>0.9.17</Version>
|
||||||
<Authors>DCFApixels</Authors>
|
<Authors>DCFApixels</Authors>
|
||||||
<Description>ECS Framework for Game Engines with C# and .Net Platform</Description>
|
<Description>ECS Framework for Game Engines with C# and .Net Platform</Description>
|
||||||
<Copyright>DCFApixels</Copyright>
|
<Copyright>DCFApixels</Copyright>
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
"displayName": "DragonECS",
|
"displayName": "DragonECS",
|
||||||
"description": "C# Entity Component System Framework",
|
"description": "C# Entity Component System Framework",
|
||||||
"unity": "2020.3",
|
"unity": "2020.3",
|
||||||
"version": "0.9.16",
|
"version": "0.9.17",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/DCFApixels/DragonECS.git"
|
"url": "https://github.com/DCFApixels/DragonECS.git"
|
||||||
|
@ -457,9 +457,9 @@ namespace DCFApixels.DragonECS
|
|||||||
combinedIncs = combinerBuilder._incsSet;
|
combinedIncs = combinerBuilder._incsSet;
|
||||||
combinedExcs = combinerBuilder._excsSet;
|
combinedExcs = combinerBuilder._excsSet;
|
||||||
combinedAnys = combinerBuilder._anysSet;
|
combinedAnys = combinerBuilder._anysSet;
|
||||||
combinedIncs.Union(_incsSet);
|
combinedIncs.UnionWith(_incsSet);
|
||||||
combinedExcs.Union(_excsSet);
|
combinedExcs.UnionWith(_excsSet);
|
||||||
combinedAnys.Union(_anysSet);
|
combinedAnys.UnionWith(_anysSet);
|
||||||
|
|
||||||
if (_sortedCombinedChecker == false)
|
if (_sortedCombinedChecker == false)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user