mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
a.m32: add [']+[F] menu function setting xvel=1 on all sel. wall/floor sprites.
For sanitizing underwater sections, see r4166. Also, don't print "Menu function executed successfully" when the function printed something itself. git-svn-id: https://svn.eduke32.com/eduke32@4169 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ffed49b395
commit
bc54631888
2 changed files with 13 additions and 1 deletions
|
@ -1540,6 +1540,18 @@ defstate moveselsects
|
||||||
}
|
}
|
||||||
ends
|
ends
|
||||||
|
|
||||||
|
defstate sanitize_underwater_sprites
|
||||||
|
"Xvel=1 for wall/flr spr."
|
||||||
|
for i selsprites
|
||||||
|
{
|
||||||
|
set j .cstat
|
||||||
|
and j 49
|
||||||
|
ife j 17 set .xvel 1
|
||||||
|
ife j 33 set .xvel 1
|
||||||
|
}
|
||||||
|
printmessage16 "Set xvel=1 on highlighted wall/floor sprites"
|
||||||
|
ends
|
||||||
|
|
||||||
// This must be *compiled* with script_expertmode
|
// This must be *compiled* with script_expertmode
|
||||||
/*
|
/*
|
||||||
defstate setstartpos
|
defstate setstartpos
|
||||||
|
|
|
@ -13108,7 +13108,7 @@ static void FuncMenu(void)
|
||||||
|
|
||||||
if (vm.flags&VMFLAG_ERROR)
|
if (vm.flags&VMFLAG_ERROR)
|
||||||
printmessage16("There were errors while executing the menu function");
|
printmessage16("There were errors while executing the menu function");
|
||||||
else
|
else if (lastpm16time != totalclock)
|
||||||
printmessage16("Menu function executed successfully");
|
printmessage16("Menu function executed successfully");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue