mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Add glowing christmas ornaments
This commit is contained in:
parent
f097be4366
commit
201101c059
@ -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: [
|
||||
|
@ -189,6 +189,7 @@ impl Block {
|
||||
| SpriteKind::WallLampSmall
|
||||
| SpriteKind::WallSconce
|
||||
| SpriteKind::FireBowlGround
|
||||
| SpriteKind::ChristmasOrnament
|
||||
| SpriteKind::Orb => Some(16),
|
||||
SpriteKind::Velorite
|
||||
| SpriteKind::VeloriteFrag
|
||||
|
@ -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
|
||||
)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user