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,
|
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
|
||||||
WallSconce: Some((
|
WallSconce: Some((
|
||||||
variations: [
|
variations: [
|
||||||
|
@ -189,6 +189,7 @@ impl Block {
|
|||||||
| SpriteKind::WallLampSmall
|
| SpriteKind::WallLampSmall
|
||||||
| SpriteKind::WallSconce
|
| SpriteKind::WallSconce
|
||||||
| SpriteKind::FireBowlGround
|
| SpriteKind::FireBowlGround
|
||||||
|
| SpriteKind::ChristmasOrnament
|
||||||
| SpriteKind::Orb => Some(16),
|
| SpriteKind::Orb => Some(16),
|
||||||
SpriteKind::Velorite
|
SpriteKind::Velorite
|
||||||
| SpriteKind::VeloriteFrag
|
| SpriteKind::VeloriteFrag
|
||||||
|
@ -188,6 +188,7 @@ make_case_elim!(
|
|||||||
JungleLeafyPlant = 0xA1,
|
JungleLeafyPlant = 0xA1,
|
||||||
JungleRedGrass = 0xA2,
|
JungleRedGrass = 0xA2,
|
||||||
Bomb = 0xA3,
|
Bomb = 0xA3,
|
||||||
|
ChristmasOrnament = 0xA4,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -451,6 +452,7 @@ impl SpriteKind {
|
|||||||
| SpriteKind::TanningRack
|
| SpriteKind::TanningRack
|
||||||
| SpriteKind::Loom
|
| SpriteKind::Loom
|
||||||
| SpriteKind::DismantlingBench
|
| SpriteKind::DismantlingBench
|
||||||
|
| SpriteKind::ChristmasOrnament
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user