mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
feat(nks): wip of loader plugin
This commit is contained in:
parent
679acb519a
commit
61ca2dee62
1 changed files with 15 additions and 1 deletions
|
|
@ -1,4 +1,7 @@
|
||||||
from avalon import api
|
from avalon import api
|
||||||
|
import hiero
|
||||||
|
from pype.nukestudio import lib
|
||||||
|
reload(lib)
|
||||||
|
|
||||||
|
|
||||||
class LoadSequencesToTimelineAssetOrigin(api.Loader):
|
class LoadSequencesToTimelineAssetOrigin(api.Loader):
|
||||||
|
|
@ -17,7 +20,18 @@ class LoadSequencesToTimelineAssetOrigin(api.Loader):
|
||||||
color = "orange"
|
color = "orange"
|
||||||
|
|
||||||
def load(self, context, name, namespace, data):
|
def load(self, context, name, namespace, data):
|
||||||
pass
|
|
||||||
|
data.update({
|
||||||
|
# "projectBinPath": "Loaded",
|
||||||
|
"hieroWorkfileName": hiero.ui.activeProject().name()
|
||||||
|
})
|
||||||
|
|
||||||
|
self.log.info("data: `{}`".format(data))
|
||||||
|
|
||||||
|
clip_loader = lib.ClipLoader(self, context, **data)
|
||||||
|
clip_loader.load()
|
||||||
|
|
||||||
|
self.log.info("Loader done: `{}`".format(name))
|
||||||
|
|
||||||
def switch(self, container, representation):
|
def switch(self, container, representation):
|
||||||
self.update(container, representation)
|
self.update(container, representation)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue