Function elementalist::player::avatar::spawn_player_avatar
source · pub fn spawn_player_avatar(
commands: Commands<'_, '_>,
spell_choices: ResMut<'_, SpellChoices>,
game_data: Res<'_, GameData>,
existing_players: Query<'_, '_, &PlayerAvatar>
)
Expand description
Spawns the player avatar if there isn’t one already.
This system is used to spawn the player’s avatar in the game. It checks if there is already a player avatar in the game, and if there isn’t, it spawns one. It also sets the player’s primary and secondary spells to the first two spells that are found in the game data.
This will put the avatar as a child of the player entity, which should exist already.