feat(fusion): adding scripts (with bug which needs to be fixed)

This commit is contained in:
Jakub Jezek 2020-08-19 18:44:26 +02:00
parent 2701e152de
commit 152a00f945
No known key found for this signature in database
GPG key ID: C4B96E101D2A47F3
15 changed files with 547 additions and 74 deletions

View file

@ -1,6 +1,5 @@
import os
import sys
import avalon.api as avalon
import pype
from pypeapp import Logger
@ -9,16 +8,17 @@ log = Logger().get_logger(__name__)
def main(env):
from pype.hosts import fusion
from pype.hosts.fusion import menu
import avalon.fusion
# Registers pype's Global pyblish plugins
pype.install()
# activate resolve from pype
avalon.install(bmdvr)
avalon.api.install(avalon.fusion)
log.info(f"Avalon registred hosts: {avalon.registered_host()}")
log.info(f"Avalon registred hosts: {avalon.api.registered_host()}")
bmdvr.launch_pype_menu()
menu.launch_pype_menu()
if __name__ == "__main__":