Spectr20 Posted April 3, 2018 Share Posted April 3, 2018 Собственно вопрос возможно ли реализовать полное отключение и соответствено последующие включение интерфейса в ангаре. @ Quote Link to comment Short link Share on other sites More sharing options...
ktulho Posted April 3, 2018 Share Posted April 3, 2018 Мод Скриншоты ангара aka HangarScreenshots не подойдет? @ Quote Link to comment Short link Share on other sites More sharing options...
Spectr20 Posted April 4, 2018 Author Share Posted April 4, 2018 9 часов назад, ktulho сказал: не подойдет? Неа мне нужно полное отключение @ Quote Link to comment Short link Share on other sites More sharing options...
SkepticalFox Posted April 4, 2018 Share Posted April 4, 2018 (edited) 1 hour ago, Spectr20 said: Неа мне нужно полное отключение в орионе запусти находясь в ангаре from gui.app_loader.loader import g_appLoader from gui.Scaleform.framework import ViewTypes hide_interface = False try: app = g_appLoader.getDefLobbyApp() if app is not None: for comp in app.containerManager.getView(ViewTypes.VIEW).components.values(): comp.flashObject.visible = hide_interface v = app.containerManager.getView(ViewTypes.LOBBY_SUB) if v is not None: v.flashObject.visible = hide_interface except: import traceback traceback.print_exc() Включение на True поменяй False, хотя это скорее поломает интерфейс уже Edited April 4, 2018 by SkepticalFox @ Quote Link to comment Short link Share on other sites More sharing options...
Spectr20 Posted April 4, 2018 Author Share Posted April 4, 2018 5 часов назад, SkepticalFox сказал: в орионе запусти находясь в ангаре Спасибо @ Quote Link to comment Short link Share on other sites More sharing options...
Mixaill Posted April 4, 2018 Share Posted April 4, 2018 (edited) Почему так сложно? Выключение from gui.app_loader.loader import g_appLoader app = g_appLoader.getApp() app.component.visible = False app.graphicsOptimizationManager.switchOptimizationEnabled(False) Включение from gui.app_loader.loader import g_appLoader app = g_appLoader.getApp() app.component.visible = True app.graphicsOptimizationManager.switchOptimizationEnabled(True) И ничего не ломает. Edited April 5, 2018 by Mixaill исправил опечатку 3 @ Quote Link to comment Short link Share on other sites More sharing options...
SkepticalFox Posted April 5, 2018 Share Posted April 5, 2018 20 hours ago, Mixaill said: Почему так сложно? ну вот до твоего кода я так и не дошел) у меня и клиента 1.0 до сих пор нет для теста @ Quote Link to comment Short link Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.