Add tons of new footstep platforms

This commit is contained in:
Sofia 2026-08-07 22:30:24 +03:00
parent 7fc2da4800
commit f9ed07988b
4 changed files with 13 additions and 5 deletions

View File

@ -131,6 +131,9 @@ name = "congusbongus"
[[people.credits]] [[people.credits]]
credit = "Bones rattle" credit = "Bones rattle"
link = "https://opengameart.org/content/bones-rattle" link = "https://opengameart.org/content/bones-rattle"
[[people.credits]]
credit = "Footsteps on different surfaces"
link = "https://opengameart.org/content/footsteps-on-different-surfaces"
[[people]] [[people]]
name = "Florian Karsten" name = "Florian Karsten"

@ -1 +1 @@
Subproject commit 90a6be6e060d2730fbeeed679b4827ad63259439 Subproject commit aa1a8048ef0175aed34798cc705c28cf48bb70e0

View File

@ -1,7 +1,4 @@
use godot::{ use godot::{classes::StaticBody3D, prelude::*};
classes::{IStaticBody3D, StaticBody3D},
prelude::*,
};
use crate::player::effects::FootstepKind; use crate::player::effects::FootstepKind;

View File

@ -11,6 +11,14 @@ pub enum FootstepKind {
#[default] #[default]
Normal, Normal,
Sand, Sand,
Bone,
Grass,
Gravel,
Metal,
Grate,
Tile,
Water,
Wood,
} }
#[derive(GodotClass)] #[derive(GodotClass)]