A framework for building 3d adventure games in Bevy.
Interactive
trait is the backbone of the framework, allowing you to create powerful, dynamic objects in your world that can be interacted with and can affect other objects or global state.Scene
trait exposes a Plugin
-like interface for managing GLTF
scenes and assigning components to entities (based on bevy_scene_hook
)WorldState
resource, a stringly-typed storage for tracking progressionInventory
resource allows you to track held items and create recipes for combining themiyes_loopless
)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:
- CurrentSpot
resource, which determines your current camera spot in the scene.
When saving, save the name of the CameraSpot
from this resource.
When loading, create a new NextSpot
instance from the loaded name, and insert it with Commands
.
- 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.
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.