jChicote / Dungeon_Breakout

An fps roguelike monster game, where you are trapped inside the walls of the dungeon where many creatures remain.
MIT License
0 stars 0 forks source link

Create an Initialization Event method for Objects that will be known to exist during level initialisation #115

Open jChicote opened 1 year ago

jChicote commented 1 year ago

Description

Pawns or any objects that require certain services to exist outside of the persistence game objects, would have "BeginPlay" events running in parallel. This would mean that there would need to be an intentional delay to ensure that certain actors are initialised before others. This becomes trickey to keep track as the project grows.

Thus it will be more manageable to have a custom level sequencer to properly handle level initialisation.

Acceptance Criteria

Implementation