mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-17 17:34:36 +08:00
Compare commits
3 Commits
1c09c94c3e
...
1605108e49
Author | SHA1 | Date | |
---|---|---|---|
![]() |
1605108e49 | ||
![]() |
0a9bf9d906 | ||
![]() |
d67afc74a0 |
@ -10,7 +10,7 @@
|
||||
<RootNamespace>DCFApixels.DragonECS</RootNamespace>
|
||||
|
||||
<Title>DragonECS</Title>
|
||||
<Version>0.9.17</Version>
|
||||
<Version>0.9.18</Version>
|
||||
<Authors>DCFApixels</Authors>
|
||||
<Description>ECS Framework for Game Engines with C# and .Net Platform</Description>
|
||||
<Copyright>DCFApixels</Copyright>
|
||||
|
@ -8,7 +8,7 @@
|
||||
"displayName": "DragonECS",
|
||||
"description": "C# Entity Component System Framework",
|
||||
"unity": "2020.3",
|
||||
"version": "0.9.17",
|
||||
"version": "0.9.18",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DCFApixels/DragonECS.git"
|
||||
|
@ -1105,7 +1105,7 @@ namespace DCFApixels.DragonECS
|
||||
public ReadOnlySpan<object> GetComponentsFor(int entityID)
|
||||
{
|
||||
int count = GetComponentTypeIDsFor_Internal(entityID, ref _componentIDsBuffer);
|
||||
ArrayUtility.UpsizeWithoutCopy(ref _componentIDsBuffer, count);
|
||||
ArrayUtility.UpsizeWithoutCopy(ref _componentsBuffer, count);
|
||||
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user