Throw projectile (#19)

This commit is contained in:
extrawurst
2025-03-28 00:21:23 +08:00
committed by GitHub
parent f3358b9511
commit 1fa1b110db
12 changed files with 317 additions and 49 deletions

View File

@@ -19,6 +19,11 @@ pub struct AudioAssets {
#[asset(path = "sfx/ui/selection.ogg")]
pub selection: Handle<AudioSource>,
#[asset(path = "sfx/abilities/throw.ogg")]
pub throw: Handle<AudioSource>,
#[asset(path = "sfx/abilities/throw-explosion.ogg")]
pub throw_explosion: Handle<AudioSource>,
#[asset(path = "sfx/ui/backpack_open.ogg")]
pub backpack_open: Handle<AudioSource>,
#[asset(path = "sfx/ui/backpack_close.ogg")]
@@ -62,6 +67,9 @@ pub struct GameAssets {
#[asset(path = "models/cash.glb#Scene0")]
pub mesh_cash: Handle<Scene>,
#[asset(path = "models/head_misc/molotov_cocktail.glb#Scene0")]
pub molotov: Handle<Scene>,
#[asset(path = "models/alien_naked.glb#Scene0")]
pub mesh_alien: Handle<Scene>,