Skip to main content

Pluggable architecture

Enjoy easy scalability and customization with a pluggable architecture that adapts to your project's unique needs.

SaveGameSystem follows pluggable architecture that leverage with Blueprint Components and Interfaces. Mainly BPC_SaveGameSystem_GS blueprint component act as the core-component that holds game state lifting features and BPC_SaveGameSystem_HUD blueprint component is the HUD utility that handles all the UI related core-features.

Components

There are set of other blurprint components under SubSystems that used to build the save game system features for the demonstration purposes, such as BPC_LocomotionSystem is used to drive the player's locomotion states, BPC_MissionSystem is used to handle a simple mission and objective system etc. You can either improve this subsystems based on your requirements or plug your own components.

Subsystems

Also, communication between multiple different blueprints are done by Interfaces and some scenarios such as UI updates using Event Dispatchers. We have added set of well defined interfaces that can be easily scalable and pluggable based on your needs.

Interfaces