mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Added cave mushrooms
This commit is contained in:
parent
217890e70d
commit
b37be14b86
@ -3,7 +3,7 @@
|
||||
(15, VeloriteFrag),
|
||||
(110, Stones),
|
||||
(150, ShortGrass),
|
||||
(60, Mushroom),
|
||||
(120, CaveMushroom),
|
||||
(2, ShinyGem),
|
||||
(2, Chest),
|
||||
(15, Crate),
|
||||
|
@ -519,6 +519,13 @@ Mushroom: Some((
|
||||
offset: (-6.0, -6.0, 0.0),
|
||||
lod_axes: (1.0, 1.0, 1.0),
|
||||
),
|
||||
],
|
||||
wind_sway: 0.1,
|
||||
)),
|
||||
|
||||
// Cave Mushrooms
|
||||
CaveMushroom: Some((
|
||||
variations: [
|
||||
(
|
||||
model: "voxygen.voxel.sprite.mushrooms.mushroom-11",
|
||||
offset: (-8.0, -8.0, 0.0),
|
||||
|
@ -173,6 +173,7 @@ impl Block {
|
||||
SpriteKind::WallLamp => Some(16),
|
||||
SpriteKind::FireBowlGround => Some(16),
|
||||
SpriteKind::Velorite | SpriteKind::VeloriteFrag => Some(6),
|
||||
SpriteKind::CaveMushroom => Some(12),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
|
@ -108,6 +108,7 @@ make_case_elim!(
|
||||
ChestBurried = 0x52,
|
||||
Mud = 0x53,
|
||||
FireBowlGround = 0x54,
|
||||
CaveMushroom = 0x55,
|
||||
}
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user