mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
[Automated] Merged develop into main
This commit is contained in:
commit
700afa2d6f
3 changed files with 9 additions and 8 deletions
|
|
@ -573,7 +573,7 @@ def composite_rendered_layers(
|
|||
layer_ids_by_position[layer_position] = layer["layer_id"]
|
||||
|
||||
# Sort layer positions
|
||||
sorted_positions = tuple(sorted(layer_ids_by_position.keys()))
|
||||
sorted_positions = tuple(reversed(sorted(layer_ids_by_position.keys())))
|
||||
# Prepare variable where filepaths without any rendered content
|
||||
# - transparent will be created
|
||||
transparent_filepaths = set()
|
||||
|
|
|
|||
|
|
@ -306,11 +306,11 @@ def _load_modules():
|
|||
basename, ext = os.path.splitext(filename)
|
||||
|
||||
if os.path.isdir(fullpath):
|
||||
# Check existence of init fil
|
||||
# Check existence of init file
|
||||
init_path = os.path.join(fullpath, "__init__.py")
|
||||
if not os.path.exists(init_path):
|
||||
log.debug((
|
||||
"Module directory does not contan __init__.py file {}"
|
||||
"Module directory does not contain __init__.py file {}"
|
||||
).format(fullpath))
|
||||
continue
|
||||
|
||||
|
|
@ -353,11 +353,11 @@ def _load_modules():
|
|||
basename, ext = os.path.splitext(filename)
|
||||
|
||||
if os.path.isdir(fullpath):
|
||||
# Check existence of init fil
|
||||
# Check existence of init file
|
||||
init_path = os.path.join(fullpath, "__init__.py")
|
||||
if not os.path.exists(init_path):
|
||||
log.debug((
|
||||
"Module directory does not contan __init__.py file {}"
|
||||
"Module directory does not contain __init__.py file {}"
|
||||
).format(fullpath))
|
||||
continue
|
||||
|
||||
|
|
|
|||
|
|
@ -220,11 +220,12 @@
|
|||
"repre_names": [
|
||||
"exr",
|
||||
"dpx",
|
||||
"mov"
|
||||
"mov",
|
||||
"mp4",
|
||||
"h264"
|
||||
],
|
||||
"loaders": [
|
||||
"LoadSequence",
|
||||
"LoadMov"
|
||||
"LoadClip"
|
||||
]
|
||||
}
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue