dependabot[bot] on bundler
Bump activesupport from 4.2.6 t… (compare)
label = "Collect Geometries"
tooltip = """
foo bar foo bar foo bar ... foo bar
foo bar foo bar foo bar ... foo bar
foo bar foo bar foo bar ... foo bar
"""
Hey @p4vv37,
There is something wrong with using such high values for the order, but it should support it. I'll make a bug issue about it. If you run the following code with smaller order values, it should output the expected result:
import pyblish.api
items = ["john", "door"]
class CollectInstances(pyblish.api.ContextPlugin):
order = 0
def process(self, context):
for item in items:
context.create_instance(item)
class PrintInstances(pyblish.api.InstancePlugin):
order = 1
def process(self, instance):
print("Instance is: %s" % instance)
pyblish.api.register_plugin(CollectInstances)
pyblish.api.register_plugin(PrintInstances)
import pyblish.util
context = pyblish.util.publish()