Tiny insignificant change.
This commit is contained in:
parent
4762e67fe7
commit
bcc1f22153
2 changed files with 6 additions and 4 deletions
|
|
@ -1,3 +1,3 @@
|
|||
[default]
|
||||
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r640 \cu(Sat 26 Nov 22:13:48 CET 2022)\c-";
|
||||
SWWM_SHORTVER="\cw1.3pre r640 \cu(2022-11-26 22:13:48)\c-";
|
||||
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r641 \cu(Mon 28 Nov 00:35:00 CET 2022)\c-";
|
||||
SWWM_SHORTVER="\cw1.3pre r641 \cu(2022-11-28 00:35:00)\c-";
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
extend Class SWWMHandler
|
||||
{
|
||||
ui SWWMProjectionData projdata;
|
||||
transient ui ThinkerIterator dbgti;
|
||||
|
||||
private ui void DrawWorldLine( RenderEvent e, Vector3 apos, Vector3 bpos, Color col )
|
||||
{
|
||||
|
|
@ -104,9 +105,10 @@ extend Class SWWMHandler
|
|||
if ( !swwm_debugview ) return;
|
||||
// prepare projection data, we're going to need this
|
||||
SWWMUtility.PrepareProjData(projdata,e.ViewPos,e.ViewAngle,e.ViewPitch,e.ViewRoll,players[consoleplayer].fov);
|
||||
let ti = ThinkerIterator.Create("Actor");
|
||||
if ( !dbgti ) dbgti = ThinkerIterator.Create("Actor");
|
||||
else dbgti.Reinit();
|
||||
Actor a;
|
||||
while ( a = Actor(ti.Next()) )
|
||||
while ( a = Actor(dbgti.Next()) )
|
||||
{
|
||||
if ( (a == players[consoleplayer].Camera) && !(players[consoleplayer].cheats&CF_CHASECAM) ) continue;
|
||||
if ( a.bINVISIBLE && !(a is 'DynamicLight') ) continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue