File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
--[[
2
- Roblox-ECS v1.2 [2020-12-05 20:03 ]
2
+ Roblox-ECS v1.2.1 [2020-12-10 02:40 ]
3
3
4
4
Roblox-ECS is a tiny and easy to use ECS (Entity Component System) engine for
5
5
game development on the Roblox platform
@@ -1771,7 +1771,7 @@ local function NewExecutionPlan(world, systems)
1771
1771
-- systems that process the onRemove event
1772
1772
local onRemoveSystems = {}
1773
1773
1774
- for k , system in pairs (systems ) do
1774
+ for k , system in pairs (systems ) do
1775
1775
if system .Update ~= nil then
1776
1776
if updateSteps [system .Step ][system .Order ] == nil then
1777
1777
updateSteps [system .Step ][system .Order ] = {}
@@ -1790,7 +1790,7 @@ local function NewExecutionPlan(world, systems)
1790
1790
end
1791
1791
end
1792
1792
1793
- for _ , order in ipairs (updateStepsOrder ) do
1793
+ for _ , order in pairs (updateStepsOrder ) do
1794
1794
table.sort (order )
1795
1795
end
1796
1796
You can’t perform that action at this time.
0 commit comments