Skip to content

Commit

Permalink
Merge pull request #681 from BigRoy/chore/houdini_remove_mantraifd_pr…
Browse files Browse the repository at this point in the history
…oduct

Houdini: Remove `Mantra IFD` product
  • Loading branch information
moonyuet authored Jun 24, 2024
2 parents 2a0597e + 7daf688 commit 2e0335b
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 71 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ class CollectDataforCache(plugin.HoudiniInstancePlugin):

# Run after Collect Frames
order = pyblish.api.CollectorOrder + 0.11
families = ["ass", "pointcache",
"mantraifd", "redshiftproxy",
"vdbcache", "model"]
families = ["ass", "pointcache", "redshiftproxy", "vdbcache", "model"]
targets = ["local", "remote"]
label = "Collect Data for Cache"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ class CollectChunkSize(plugin.HoudiniInstancePlugin,
"""Collect chunk size for cache submission to Deadline."""

order = pyblish.api.CollectorOrder + 0.05
families = ["ass", "pointcache",
"vdbcache", "mantraifd",
"redshiftproxy", "model"]
families = ["ass", "pointcache", "vdbcache", "redshiftproxy", "model"]
targets = ["local", "remote"]
label = "Collect Chunk Size"
chunk_size = 999999
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class CollectFrames(plugin.HoudiniInstancePlugin):
# this plugin runs after CollectRopFrameRange
order = pyblish.api.CollectorOrder + 0.1
label = "Collect Frames"
families = ["camera", "vdbcache", "imagesequence", "ass", "mantraifd",
families = ["camera", "vdbcache", "imagesequence", "ass",
"redshiftproxy", "review", "pointcache", "fbx"]

def process(self, instance):
Expand Down
2 changes: 1 addition & 1 deletion server_addon/houdini/client/ayon_houdini/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring AYON addon 'houdini' version."""
__version__ = "0.3.3"
__version__ = "0.3.4"
2 changes: 1 addition & 1 deletion server_addon/houdini/package.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "houdini"
title = "Houdini"
version = "0.3.3"
version = "0.3.4"

client_dir = "ayon_houdini"

Expand Down
7 changes: 0 additions & 7 deletions server_addon/houdini/server/settings/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ class CreatePluginsModel(BaseSettingsModel):
CreateKarmaROP: CreatorModel = SettingsField(
default_factory=CreatorModel,
title="Create Karma ROP")
CreateMantraIFD: CreatorModel = SettingsField(
default_factory=CreatorModel,
title="Create Mantra IFD")
CreateMantraROP: CreatorModel = SettingsField(
default_factory=CreatorModel,
title="Create Mantra ROP")
Expand Down Expand Up @@ -119,10 +116,6 @@ class CreatePluginsModel(BaseSettingsModel):
"enabled": True,
"default_variants": ["Main"]
},
"CreateMantraIFD": {
"enabled": True,
"default_variants": ["Main"]
},
"CreateMantraROP": {
"enabled": True,
"default_variants": ["Main"]
Expand Down

0 comments on commit 2e0335b

Please sign in to comment.