mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 14:22:37 +01:00
* OP-5661 - added new menu item to AE extension * OP-5661 - added support for addPlaceholder into extension * OP-5661 - fix broken abstract loader In some cases discover couldn't recognize that base plugin is abstract. Handled properly * OP-5661 - WIP of implementing workfile template builder * OP-5661 - added route to add placeholder * OP-5661 - added route to build workfile * OP-5661 - refactored arguments * OP-5661 - implemented build workfile operation moved from wrong position * OP-5661 - removed wrong base plugin * OP-5661 - implemented update placeholder logic * OP-5661 - fix update placeholder metadata * OP-5661 - added Creator placeholder plugin * OP-5661 - pre_create_data could be passed into Creator This allow to modify `pre_create_data` before automatically creating an instance. (Useful for overridding defaults.) * OP-5661 - implemented populate of Create placeholder * OP-5661 - implemented import of template * OP-5661 - fix to populate correct create placeholder Implemented function to select item(s) by their id. (CreateRender expects selected composition.) * OP-5661 - fix workfile builder schema to multiplatform path Path should be separated by platform. * OP-5661 - implemented adding loaded items instead of placeholders * OP-5661 - add Create Placeholder plugin to dropdown * OP-5661 - add templated workfile to Settings * OP-5661 - fix to choose template file from multiplatform * OP-5661 - added documentation
12 lines
248 B
Python
12 lines
248 B
Python
import six
|
|
from abc import ABCMeta
|
|
|
|
from openpype.pipeline import LoaderPlugin
|
|
from .launch_logic import get_stub
|
|
|
|
|
|
@six.add_metaclass(ABCMeta)
|
|
class AfterEffectsLoader(LoaderPlugin):
|
|
@staticmethod
|
|
def get_stub():
|
|
return get_stub()
|