From f38c83f96cba51fc15fcfbcde777f30fb68597de 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 8c8a89464..0ef5b446a 100644 --- a/wadsrc/static/zscript/actors/player/player.zs +++ b/wadsrc/static/zscript/actors/player/player.zs @@ -2558,6 +2558,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);