Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add deadline cloud soho script #189

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,20 @@
label "Render with Take"
export none
}
parm {
name "soho_program"
label "SOHO program"
type string
invisible
default { "deadline_cloud_soho.py" }
}
parm {
name "soho_outputmode"
label "SOHO output mode"
type integer
invisible
default { "2" }
}
group {
name "job_settings"
label "Shared Job Settings"
Expand Down
7 changes: 7 additions & 0 deletions src/deadline/houdini_submitter/soho/deadline_cloud_soho.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

import hou

hou.ui.displayMessage(
"Please use the 'Submit' button within the Deadline Cloud node to render with AWS Deadline Cloud."
)