As discussed on the discord server, I’m going to start working on implementing the new publisher in Blender host, as I think it would be a great improvement over the previous one. As suggested by @milan I’m creating this post so we can keep track of the progress, help and suggestions made in the process. Hopefully this can help when other hosts switch to the new publisher as well.
So far I opened the new publisher by switching the method called in the LaunchPublisher class in openpype/hosts/blender/api/ops.py from host_tools.show_publish() to host_tools.show_publisher()
I noticed the following issues so far that I will need to address:
There is not list of publishable instances before pressing the play or validate button, as collectors are only run after pressing either of these buttons. This implies you can’t toggle which instance you want to publish or not, and there is no way to know what will be published before proceeding with the publish.
Optional plugins cannot be toggled.
I saw a disabled plugin listed in my plugins.
I will dig into what has been done on Maya side (Maya PR #4388) and see what I can do
Hello! I managed to have blender creators displayed in the Create panel, but when I launch the publisher from blender I can’t interact with anything on this panel. All the buttons are grayed out and can’t be interacted with, except for the publish related buttons at the bottom and selecting other tabs. I don’t have any error in the console except about a creator that fails to import (it’s part of an addon we use and it’s not compatible with this branch as it relies on code that hasn’t been merged yet in the develop branch).
Hmm, I guess blender is one of last host integrations that don’t use HostBase (and it’s interfaces IWorkfileHost, ILoadHost, IPublishHost) for host integration. Publisher requires that.
The host integration should be a class that is registered as host (instead of api module). The registration in blender is in openpype/hosts/blender/blender_addon/startup/init.py. Look at other hosts how they make their classes. The class can re-use existing functions so it won’t break backwards compatibility.
I have made progress on this feature, but it is still a work in progress. In its current state I can open the new publisher (the create button opens the create page and the publish button opens the publish page), instances can be created, and fetched when reopening the publisher. Optional publish plugins can be toggled, but I still have issues to fix before the full publish sequence works as intended.
It is not yet part of the develop branch, therefore it is normal that you still have the legacy pyblish window.
Hi everyone, any update about the new Publisher? Just curious about the current status, I am currently testing Blender features while still running the old publisher. Thank you!