From 9603a09f827e444f4f68a79119598325e46e400d Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Wed, 17 Jul 2019 12:20:05 +0300 Subject: [PATCH] - added PSprite.bMirror flag to ZScript class definition https://forum.zdoom.org/viewtopic.php?t=65372 --- wadsrc/static/zscript/actors/player/player.zs | 1 + 1 file changed, 1 insertion(+) diff --git a/wadsrc/static/zscript/actors/player/player.zs b/wadsrc/static/zscript/actors/player/player.zs index c6e3a370e..0b7723a3b 100644 --- a/wadsrc/static/zscript/actors/player/player.zs +++ b/wadsrc/static/zscript/actors/player/player.zs @@ -2544,6 +2544,7 @@ class PSprite : Object native play native bool bPowDouble; native bool bCVarFast; native bool bFlip; + native bool bMirror; native void SetState(State newstate, bool pending = false);