added missing definition of launch hooks

This commit is contained in:
Jakub Trllo 2022-08-25 15:37:34 +02:00
parent 6914c626a1
commit d78d73f391

View file

@ -25,5 +25,12 @@ class FlameAddon(OpenPypeModule, IHostModule):
if not env.get(key):
env[key] = value
def get_launch_hook_paths(self, app):
if app.host_name != self.host_name:
return []
return [
os.path.join(HOST_DIR, "hooks")
]
def get_workfile_extensions(self):
return [".otoc"]