changed usage of schemas in code

This commit is contained in:
iLLiCiTiT 2021-04-01 10:47:28 +02:00
parent 2d86b54841
commit b495e5fbc3
21 changed files with 28 additions and 27 deletions

View file

@ -247,7 +247,7 @@ class BlendActionLoader(pype.hosts.blender.api.plugin.AssetLoader):
"""Remove an existing container from a Blender scene.
Arguments:
container (avalon-core:container-1.0): Container to remove,
container (openpype:container-1.0): Container to remove,
from `host.ls()`.
Returns:

View file

@ -217,7 +217,7 @@ class BlendAnimationLoader(pype.hosts.blender.api.plugin.AssetLoader):
"""Remove an existing container from a Blender scene.
Arguments:
container (avalon-core:container-1.0): Container to remove,
container (openpype:container-1.0): Container to remove,
from `host.ls()`.
Returns:

View file

@ -216,7 +216,7 @@ class BlendCameraLoader(pype.hosts.blender.api.plugin.AssetLoader):
"""Remove an existing container from a Blender scene.
Arguments:
container (avalon-core:container-1.0): Container to remove,
container (openpype:container-1.0): Container to remove,
from `host.ls()`.
Returns:

View file

@ -251,7 +251,7 @@ class BlendLayoutLoader(plugin.AssetLoader):
"""Remove an existing container from a Blender scene.
Arguments:
container (avalon-core:container-1.0): Container to remove,
container (openpype:container-1.0): Container to remove,
from `host.ls()`.
Returns:
@ -648,7 +648,7 @@ class UnrealLayoutLoader(plugin.AssetLoader):
"""Remove an existing container from a Blender scene.
Arguments:
container (avalon-core:container-1.0): Container to remove,
container (openpype:container-1.0): Container to remove,
from `host.ls()`.
Returns:

View file

@ -211,7 +211,7 @@ class BlendModelLoader(plugin.AssetLoader):
"""Remove an existing container from a Blender scene.
Arguments:
container (avalon-core:container-1.0): Container to remove,
container (openpype:container-1.0): Container to remove,
from `host.ls()`.
Returns:

View file

@ -267,7 +267,7 @@ class BlendRigLoader(plugin.AssetLoader):
"""Remove an existing container from a Blender scene.
Arguments:
container (avalon-core:container-1.0): Container to remove,
container (openpype:container-1.0): Container to remove,
from `host.ls()`.
Returns:

View file

@ -110,7 +110,7 @@ def containerise(track_item,
"""
data_imprint = OrderedDict({
"schema": "avalon-core:container-2.0",
"schema": "openpype:container-2.0",
"id": AVALON_CONTAINER_ID,
"name": str(name),
"namespace": str(namespace),

View file

@ -256,7 +256,7 @@ class ReferenceLoader(api.Loader):
Deprecated; this functionality is replaced by `api.remove()`
Arguments:
container (avalon-core:container-1.0): Which container
container (openpype:container-1.0): Which container
to remove from scene.
"""

View file

@ -110,7 +110,7 @@ def containerise(timeline_item,
"""
data_imprint = OrderedDict({
"schema": "avalon-core:container-2.0",
"schema": "openpype:container-2.0",
"id": AVALON_CONTAINER_ID,
"name": str(name),
"namespace": str(namespace),

View file

@ -99,7 +99,7 @@ class AnimationFBXLoader(api.Loader):
container=container_name, path=asset_dir)
data = {
"schema": "avalon-core:container-2.0",
"schema": "openpype:container-2.0",
"id": pipeline.AVALON_CONTAINER_ID,
"asset": asset,
"namespace": asset_dir,

View file

@ -96,7 +96,7 @@ class SkeletalMeshFBXLoader(api.Loader):
container=container_name, path=asset_dir)
data = {
"schema": "avalon-core:container-2.0",
"schema": "openpype:container-2.0",
"id": pipeline.AVALON_CONTAINER_ID,
"asset": asset,
"namespace": asset_dir,

View file

@ -67,7 +67,7 @@ class AnimationCollectionLoader(api.Loader):
container=container_name, path=asset_dir)
data = {
"schema": "avalon-core:container-2.0",
"schema": "openpype:container-2.0",
"id": pipeline.AVALON_CONTAINER_ID,
"asset": asset,
"namespace": asset_dir,

View file

@ -79,7 +79,7 @@ class StaticMeshFBXLoader(api.Loader):
container=container_name, path=asset_dir)
data = {
"schema": "avalon-core:container-2.0",
"schema": "openpype:container-2.0",
"id": pipeline.AVALON_CONTAINER_ID,
"asset": asset,
"namespace": asset_dir,