mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-20 06:03:01 +00:00
orbsize is now affected by creature_scale
This commit is contained in:
parent
55331270d4
commit
e1683463d2
@ -653,7 +653,10 @@ void geometry_information::prepare_basics() {
|
||||
hexf = rhexf = hexvdist = csc * .5;
|
||||
}
|
||||
|
||||
if(scale_used()) scalefactor *= vid.creature_scale;
|
||||
if(scale_used()) {
|
||||
scalefactor *= vid.creature_scale;
|
||||
orbsize *= vid.creature_scale;
|
||||
}
|
||||
|
||||
zhexf = BITRUNCATED ? hexf : crossf* .55;
|
||||
if(scale_used()) zhexf *= vid.creature_scale;
|
||||
|
Loading…
Reference in New Issue
Block a user