1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-21 17:07:40 +00:00

2d3d:: smaller cones for fires/bonfires/buoys/thumpers

This commit is contained in:
Zeno Rogue
2019-05-12 20:10:01 +02:00
parent 33e42d9ed6
commit dea2073714
3 changed files with 37 additions and 30 deletions

View File

@@ -4249,7 +4249,7 @@ struct floorshape {
int pstrength; // pattern strength in 3D
int fstrength; // frame strength in 3D
PPR prio;
vector<hpcshape> b, shadow, side[SIDEPARS], gpside[SIDEPARS][MAX_EDGE], levels[SIDEPARS], cone;
vector<hpcshape> b, shadow, side[SIDEPARS], gpside[SIDEPARS][MAX_EDGE], levels[SIDEPARS], cone[2];
basic_textureinfo tinf3;
floorshape() { prio = PPR::FLOOR; pstrength = fstrength = 10; }
};