-added EmptySystem supprort (called once per frame, sholud be once per jobs)

-EntitiesData can contain "thread_id" which is filled with ID of current thread
This commit is contained in:
Mergul 2020-03-06 13:52:21 +01:00
parent 5399b584dd
commit d6b53425dd
3 changed files with 237 additions and 156 deletions

View file

@ -94,6 +94,8 @@ package:
bool m_execute = true;
///system id
ushort m_id;
///is system empty? Empty systems don't update entities, and is called once per update
bool m_empty = false;
///should system update and catch events?
bool m_enabled = false;