From 436cd9c5d2e1e153a8fca59591f8145d46979f45 Mon Sep 17 00:00:00 2001 From: Evan Hemsley <2342303+ehemsley@users.noreply.github.com> Date: Thu, 5 Dec 2019 23:55:17 -0800 Subject: [PATCH] fix write priorities not breing cleared after frame --- encompass-cs/Collections/TypedComponentStore.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/encompass-cs/Collections/TypedComponentStore.cs b/encompass-cs/Collections/TypedComponentStore.cs index cb84a6d..9e02b46 100644 --- a/encompass-cs/Collections/TypedComponentStore.cs +++ b/encompass-cs/Collections/TypedComponentStore.cs @@ -48,6 +48,7 @@ namespace Encompass public override void Clear() { store.Clear(); + priorities.Clear(); } public IEnumerable<(Entity, TComponent)> All()