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

crossbow:: fixed Z-fighting and arrow paths not visible in FPP

This commit is contained in:
Zeno Rogue
2023-10-29 09:57:19 +01:00
parent 0c6d286fa8
commit 8185657768
3 changed files with 19 additions and 13 deletions

View File

@@ -2977,14 +2977,14 @@ auto hooksw = addHook(hooks_swapdim, 100, [] {
});
#endif
}
shiftmatrix at_missile_level(const shiftmatrix& T) {
EX shiftmatrix at_missile_level(const shiftmatrix& T) {
if(WDIM == 3) return T;
if(GDIM == 3) return orthogonal_move(T, cgi.BODY);
return at_smart_lof(T, 1.15);
}
EX }
bool celldrawer::draw_shmup_monster() {
using namespace shmup;
#if CAP_SHAPES