def asset_results(self, value): chosen_asset = value[0] project = Project() self.body = project.get_body(chosen_asset) self.comment = qd.HoudiniInput(parent=houdini_main_window(), title="Any comments?") self.comment.submitted.connect(self.publish_hda)
def create_body(self): self.input = qd.HoudiniInput(parent=houdini_main_window(), title="What is the name of this asset?") self.input.submitted.connect(self.name_results)
def shot_results(self, value): self.chosen_asset = value[0] self.comment = qd.HoudiniInput(parent=houdini_main_window(), title="Any comments?") self.comment.submitted.connect(self.shot_comment)
def publish_content_hda(self, node): self.node = node self.comment = qd.HoudiniInput(parent=houdini_main_window(), title="Any comments?") self.comment.submitted.connect(self.publish_content_hda_comment)