mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-25 17:40:36 +00:00
3D:: hide some queuecircleat's
This commit is contained in:
parent
6ac9820644
commit
9b968e648b
@ -5423,17 +5423,17 @@ void drawMarkers() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CAP_QUEUE
|
#if CAP_QUEUE
|
||||||
if(lmouseover && vid.drawmousecircle && ok && DEFAULTCONTROL && MOBON) {
|
if(lmouseover && vid.drawmousecircle && ok && DEFAULTCONTROL && MOBON && DIM == 2) {
|
||||||
queuecircleat(lmouseover, .8, darkena(lmouseover->cpdist > 1 ? 0x00FFFF : 0xFF0000, 0, 0xFF));
|
queuecircleat(lmouseover, .8, darkena(lmouseover->cpdist > 1 ? 0x00FFFF : 0xFF0000, 0, 0xFF));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(global_pushto && vid.drawmousecircle && ok && DEFAULTCONTROL && MOBON) {
|
if(global_pushto && vid.drawmousecircle && ok && DEFAULTCONTROL && MOBON && DIM == 2) {
|
||||||
queuecircleat(global_pushto, .6, darkena(0xFFD500, 0, 0xFF));
|
queuecircleat(global_pushto, .6, darkena(0xFFD500, 0, 0xFF));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CAP_SDLJOY && CAP_QUEUE
|
#if CAP_SDLJOY && CAP_QUEUE
|
||||||
if(joydir.d >= 0)
|
if(joydir.d >= 0 && DIM == 2)
|
||||||
queuecircleat(cwt.at->modmove(joydir.d+cwt.spin), .78 - .02 * sintick(199),
|
queuecircleat(cwt.at->modmove(joydir.d+cwt.spin), .78 - .02 * sintick(199),
|
||||||
darkena(0x00FF00, 0, 0xFF));
|
darkena(0x00FF00, 0, 0xFF));
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user