Add glowing christmas ornaments

This commit is contained in:
Christof Petig 2021-12-13 11:51:56 -06:00 committed by Joshua Barretto
parent f097be4366
commit 201101c059
3 changed files with 18 additions and 0 deletions

View File

@ -2015,6 +2015,21 @@ WallLampSmall: Some((
],
wind_sway: 0.0,
)),
ChristmasOrnament: Some((
variations: [
(
model: "voxygen.voxel.sprite.furniture.snowflake_light",
offset: (-5.5, 0.5, 0.0),
lod_axes: (1.0, 1.0, 1.0),
),
(
model: "voxygen.voxel.sprite.furniture.moravian-star-orange",
offset: (-5.5, -7.5, 0.0),
lod_axes: (1.0, 1.0, 1.0),
),
],
wind_sway: 0.2,
)),
// WallSconce
WallSconce: Some((
variations: [

View File

@ -189,6 +189,7 @@ impl Block {
| SpriteKind::WallLampSmall
| SpriteKind::WallSconce
| SpriteKind::FireBowlGround
| SpriteKind::ChristmasOrnament
| SpriteKind::Orb => Some(16),
SpriteKind::Velorite
| SpriteKind::VeloriteFrag

View File

@ -188,6 +188,7 @@ make_case_elim!(
JungleLeafyPlant = 0xA1,
JungleRedGrass = 0xA2,
Bomb = 0xA3,
ChristmasOrnament = 0xA4,
}
);
@ -451,6 +452,7 @@ impl SpriteKind {
| SpriteKind::TanningRack
| SpriteKind::Loom
| SpriteKind::DismantlingBench
| SpriteKind::ChristmasOrnament
)
}
}