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

new player shape: spaceship

This commit is contained in:
Zeno Rogue
2024-10-04 15:35:54 +02:00
parent 02ad45c6e6
commit b6b4755309
5 changed files with 45 additions and 4 deletions

View File

@@ -3121,7 +3121,11 @@ bool celldrawer::draw_shmup_monster() {
col = (mirrorcolor(det(view.T) < 0) << 8) | 0xFF;
else
col = (minf[m->get_parenttype()].color << 8) | 0xFF;
if(getcs().charid >= 4) {
if(getcs().charid >= 10) {
queuepoly(at_missile_level(view), cgi.shMissile, col);
ShadowV(view, cgi.shMissile);
}
else if(getcs().charid >= 4) {
queuepoly(at_missile_level(view), cgi.shPHead, col);
ShadowV(view, cgi.shPHead);
}