Question?
Is there any way we can extend UTUIScene_MidGameMenu class so we can add our code? Or can we do this another way?
Is there any way we can extend UTUIScene_MidGameMenu class so we can add our code? Or can we do this another way?
class xTestMidGamePanel extends UTTabPage; event bool ActivatePage(int PlayerIndex, bool bActivate, optional bool bTakeFocus=true) { `log("[XCTFGame] - Our Page is Active"); return Super.ActivatePage(PlayerIndex, bActivate, bTakeFocus); }
class xTestMidGamePanel extends UTTabPage; event bool ActivatePage( int PlayerIndex, bool bActivate, optional bool bTakeFocus=true ) { `log("[XCTFGame] - Our Page is Active"); return Super.ActivatePage(PlayerIndex, bActivate, bTakeFocus); }
Comment