mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-17 17:34:36 +08:00
up version to 0.8.53
This commit is contained in:
parent
958375856d
commit
ef18594f82
@ -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.8.52",
|
"version": "0.8.53",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/DCFApixels/DragonECS.git"
|
"url": "https://github.com/DCFApixels/DragonECS.git"
|
||||||
|
@ -385,6 +385,10 @@ namespace DCFApixels.DragonECS
|
|||||||
return _entities[entityID].componentsCount;
|
return _entities[entityID].componentsCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool IsMatchesMask(IEcsComponentMask mask, int entityID)
|
||||||
|
{
|
||||||
|
return IsMatchesMask(mask.ToMask(this), entityID);
|
||||||
|
}
|
||||||
public bool IsMatchesMask(EcsMask mask, int entityID)
|
public bool IsMatchesMask(EcsMask mask, int entityID)
|
||||||
{
|
{
|
||||||
#if (DEBUG && !DISABLE_DEBUG) || !DISABLE_DRAGONECS_ASSERT_CHEKS
|
#if (DEBUG && !DISABLE_DEBUG) || !DISABLE_DRAGONECS_ASSERT_CHEKS
|
||||||
|
Loading…
Reference in New Issue
Block a user