mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
Merge branch 'develop' into enhancement/OP-6943_Display-mode-or-Viewport-style-not-shown-correctly-when-creating-review-in-3dsMax
This commit is contained in:
commit
ddeedcc7fb
12 changed files with 12 additions and 12 deletions
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
|
|
@ -35,6 +35,7 @@ body:
|
||||||
label: Version
|
label: Version
|
||||||
description: What version are you running? Look to OpenPype Tray
|
description: What version are you running? Look to OpenPype Tray
|
||||||
options:
|
options:
|
||||||
|
- 3.17.2-nightly.4
|
||||||
- 3.17.2-nightly.3
|
- 3.17.2-nightly.3
|
||||||
- 3.17.2-nightly.2
|
- 3.17.2-nightly.2
|
||||||
- 3.17.2-nightly.1
|
- 3.17.2-nightly.1
|
||||||
|
|
@ -134,7 +135,6 @@ body:
|
||||||
- 3.14.11-nightly.1
|
- 3.14.11-nightly.1
|
||||||
- 3.14.10
|
- 3.14.10
|
||||||
- 3.14.10-nightly.9
|
- 3.14.10-nightly.9
|
||||||
- 3.14.10-nightly.8
|
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ class SetFrameRangeLoader(load.LoaderPlugin):
|
||||||
"yeticache",
|
"yeticache",
|
||||||
"pointcache"]
|
"pointcache"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"*"}
|
extensions = {"*"}
|
||||||
|
|
||||||
label = "Set frame range"
|
label = "Set frame range"
|
||||||
order = 11
|
order = 11
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ class LoadBackdropNodes(load.LoaderPlugin):
|
||||||
|
|
||||||
families = ["workfile", "nukenodes"]
|
families = ["workfile", "nukenodes"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"nk"}
|
extensions = {"nk"}
|
||||||
|
|
||||||
label = "Import Nuke Nodes"
|
label = "Import Nuke Nodes"
|
||||||
order = 0
|
order = 0
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ class AlembicCameraLoader(load.LoaderPlugin):
|
||||||
|
|
||||||
families = ["camera"]
|
families = ["camera"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"abc"}
|
extensions = {"abc"}
|
||||||
|
|
||||||
label = "Load Alembic Camera"
|
label = "Load Alembic Camera"
|
||||||
icon = "camera"
|
icon = "camera"
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ class LoadEffects(load.LoaderPlugin):
|
||||||
|
|
||||||
families = ["effect"]
|
families = ["effect"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"json"}
|
extensions = {"json"}
|
||||||
|
|
||||||
label = "Load Effects - nodes"
|
label = "Load Effects - nodes"
|
||||||
order = 0
|
order = 0
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ class LoadEffectsInputProcess(load.LoaderPlugin):
|
||||||
|
|
||||||
families = ["effect"]
|
families = ["effect"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"json"}
|
extensions = {"json"}
|
||||||
|
|
||||||
label = "Load Effects - Input Process"
|
label = "Load Effects - Input Process"
|
||||||
order = 0
|
order = 0
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ class LoadGizmo(load.LoaderPlugin):
|
||||||
|
|
||||||
families = ["gizmo"]
|
families = ["gizmo"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"gizmo"}
|
extensions = {"gizmo"}
|
||||||
|
|
||||||
label = "Load Gizmo"
|
label = "Load Gizmo"
|
||||||
order = 0
|
order = 0
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ class LoadGizmoInputProcess(load.LoaderPlugin):
|
||||||
|
|
||||||
families = ["gizmo"]
|
families = ["gizmo"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"gizmo"}
|
extensions = {"gizmo"}
|
||||||
|
|
||||||
label = "Load Gizmo - Input Process"
|
label = "Load Gizmo - Input Process"
|
||||||
order = 0
|
order = 0
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ class MatchmoveLoader(load.LoaderPlugin):
|
||||||
|
|
||||||
families = ["matchmove"]
|
families = ["matchmove"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"py"}
|
extensions = {"py"}
|
||||||
|
|
||||||
defaults = ["Camera", "Object"]
|
defaults = ["Camera", "Object"]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ class AlembicModelLoader(load.LoaderPlugin):
|
||||||
|
|
||||||
families = ["model", "pointcache", "animation"]
|
families = ["model", "pointcache", "animation"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"abc"}
|
extensions = {"abc"}
|
||||||
|
|
||||||
label = "Load Alembic"
|
label = "Load Alembic"
|
||||||
icon = "cube"
|
icon = "cube"
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ class LinkAsGroup(load.LoaderPlugin):
|
||||||
|
|
||||||
families = ["workfile", "nukenodes"]
|
families = ["workfile", "nukenodes"]
|
||||||
representations = ["*"]
|
representations = ["*"]
|
||||||
extension = {"nk"}
|
extensions = {"nk"}
|
||||||
|
|
||||||
label = "Load Precomp"
|
label = "Load Precomp"
|
||||||
order = 0
|
order = 0
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
"""Package declaring Pype version."""
|
"""Package declaring Pype version."""
|
||||||
__version__ = "3.17.2-nightly.3"
|
__version__ = "3.17.2-nightly.4"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue