rrbox / ecs-swift

Entity Component System for swift
MIT License
3 stars 0 forks source link

Life cycle #4

Open rrbox opened 11 months ago

rrbox commented 11 months ago

World には以下の処理がデフォルトで実装されます。

rrbox commented 11 months ago

Build

以下の処理がここに含まれます。

なお、resource は commands を使用しても登録できます。ただし、build での resource は即時に world へ登録されるのに対して、commands による resource の挿入は apply commands のタイミングで登録されます。

rrbox commented 11 months ago

Set up [^1]

以下の処理が含まれます。

[^1]: Start up の方がわかりやすいかも?

rrbox commented 11 months ago

update

以下の処理が含まれます

rrbox commented 11 months ago

Pass through event

以下の処理が含まれます

rrbox commented 8 months ago

Start up frame

更新処理の一番最初のフレームです。 current time を必要とする初期化をここで行います。 Delta time などのセットアップをします。