We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acfe97c commit e3824c0Copy full SHA for e3824c0
src/Exomia.ECS/EntityManager.cs
@@ -85,7 +85,7 @@ private void InitializeEntitySystems(uint managerMask)
85
EntitySystemConfigurationAttribute attribute;
86
if ((attribute = t.GetCustomAttribute<EntitySystemConfigurationAttribute>(false)) != null)
87
{
88
- if (attribute.ManagerFlags == 0 || (attribute.ManagerFlags & managerMask) == managerMask)
+ if (attribute.ManagerFlags == 0 || (managerMask & attribute.ManagerFlags) == attribute.ManagerFlags)
89
90
switch (attribute.EntitySystemType)
91
0 commit comments