mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
use AYON prefix in fusion env variables
This commit is contained in:
parent
ee018456c8
commit
d13498a4e8
2 changed files with 2 additions and 2 deletions
|
|
@ -308,7 +308,7 @@ class FusionEventThread(QtCore.QThread):
|
|||
# getattr of UIManager.GetEvent tries to resolve the Remote Function
|
||||
# through the PyRemoteObject
|
||||
get_event = app.UIManager.GetEvent
|
||||
delay = int(os.environ.get("OPENPYPE_FUSION_CALLBACK_INTERVAL", 1000))
|
||||
delay = int(os.environ.get("AYON_FUSION_CALLBACK_INTERVAL", 1000))
|
||||
while True:
|
||||
if self.isInterruptionRequested():
|
||||
return
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ class PulseThread(QtCore.QThread):
|
|||
app = getattr(sys.modules["__main__"], "app", None)
|
||||
|
||||
# Interval in milliseconds
|
||||
interval = os.environ.get("OPENPYPE_FUSION_PULSE_INTERVAL", 1000)
|
||||
interval = os.environ.get("AYON_FUSION_PULSE_INTERVAL", 1000)
|
||||
|
||||
while True:
|
||||
if self.isInterruptionRequested():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue