Bevy_adventure

A framework for building 3d adventure games in Bevy.

Features

Notes

Save States

bevy_adventure intentionally omits implementing save state functionality, as different games will have different requirements.

If you want to implement this, here is what you need to keep track of: - AtSpot camera component, which determines your current spot in the scene - CurrentState<State> resource, (from iyes_loopless) which determines what scene is currently loaded - Inventory resource, which tracks what items the player is holding - WorldState resource, the global game state storage

You will also have to enable the serde feature to allow serialization and deserialization of these resources.

Using WorldState

When you are building interactives, you have the ability to store information in the component itself or the WorldState.

The component should only hold temporary state information - like which drawer is open on a dresser or if an entity has been spawned.

If you want to store any other kind of information, it should be done in the WorldState resource. This is so other interactives in your scene can access this state (for example, you'd flip a switch and the lights would go out) and so you are storing state information in a single place.

TODO