Closed davidlatwe closed 5 years ago
Nice work! Could you increment the version too? Then I'll make a new release for it.
Done !
Good stuff again David! :+1:
Awesome work @davidlatwe
Thanks :) Merging this, and pinging @mottosso for release :P
Yes, that is all fine! :)
One question though, that I noticed elsewhere as well, how come the instances are green, and yet checkable? :O I thought they were green only after having been processed, at which point they would not be checkable anymore?
Oh and I remembered you are able to make releases too, you are most welcome to do that here as well!
how come the instances are green, and yet checkable?
The reason it's green is that there's a plugin printing log message for every instances in collecting phase.
class ListHeros(pyblish.api.InstancePlugin):
order = pyblish.api.CollectorOrder + 0.1
def process(self, instance):
self.log.info(instance)
So yeah, they did been processed :)
at which point they would not be checkable anymore?
I intentionally set data["optional"] = False
to some instances at their creation, for the example ;D
Oh and I remembered you are able to make releases too
Haha, thanks :D
One question though, that I noticed elsewhere as well, how come the instances are green, and yet checkable? :O I thought they were green only after having been processed, at which point they would not be checkable anymore?
AND
The reason it's green is that there's a plugin printing log message for every instances in collecting phase.
Is this related to https://github.com/pyblish/pyblish-qml/issues/283?
This PR will fix #309 , and UX bug related to #281 but on plugin section.
Before
Batman
andDavid
should not be toggled, but the restriction got bypassed via toggling the section.After
Implementation