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

Nuke: Camera product type loaded is not updating - OP-7973 #12

Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
6f21911
Refactor create_editorial.py for better track handling
jakubjezek001 Dec 11, 2023
fc179be
improving plugin label so it is easier to read
jakubjezek001 Dec 11, 2023
69096ac
Merge branch 'develop' into bugfix/traypublish-editorial-avoid-audio-…
jakubjezek001 Dec 20, 2023
dadf898
Use QDialog as super class and pass parent to init
iLLiCiTiT Jan 26, 2024
34b42c1
ignore enter and return event key
iLLiCiTiT Jan 26, 2024
acc2f9f
Merge branch 'develop' into bugfix/traypublish-editorial-avoid-audio-…
jakubjezek001 Jan 26, 2024
87b4b6e
removed '_make_sure_on_top'
iLLiCiTiT Jan 26, 2024
781bd61
add comments to enter and return keys
iLLiCiTiT Jan 26, 2024
3acd53e
Merge branch 'develop' into bugfix/traypublish-editorial-avoid-audio-…
jakubjezek001 Jan 29, 2024
0bbe25f
Refactor code for creating and publishing editorial clips
jakubjezek001 Jan 29, 2024
449e601
Show message with error on action failure.
tokejepsen Jan 29, 2024
2b31607
Feedback action finished.
tokejepsen Jan 30, 2024
d0a09bc
Illicit suggestion
tokejepsen Jan 31, 2024
149f53d
identifier > name
tokejepsen Jan 31, 2024
b39c41f
Use label
tokejepsen Jan 31, 2024
b26ea7a
Fix getting node and node name.
tokejepsen Feb 1, 2024
6290343
Use better resolution of Ayon apps on 4k display
kalisp Feb 5, 2024
9452cdb
define 'get_qt_app' in tools utils
iLLiCiTiT Feb 5, 2024
1c9c125
enhancement/OP-8033
Feb 6, 2024
1d3c1c7
enhancement/OP-8033
Feb 6, 2024
4cbbffe
[Automated] Merged develop into main
ynbot Feb 7, 2024
bac4f6d
[Automated] Bump version
ynbot Feb 7, 2024
2b91660
[Automated] Merged main into develop
ynbot Feb 7, 2024
4243ee4
chore(): update bug report / version
github-actions[bot] Feb 7, 2024
0993e79
Merge branch 'develop' into bugfix/publisher-window-as-dialog
iLLiCiTiT Feb 7, 2024
5b9b260
feat: Add settings category for Tray Publisher
jakubjezek001 Feb 7, 2024
2669a6d
Merge branch 'develop' into bugfix/traypublish-editorial-avoid-audio-…
jakubjezek001 Feb 7, 2024
71f09ed
Merge pull request #6202 from ynput/bugfix/OP-8138_traypublisher-miss…
iLLiCiTiT Feb 7, 2024
75dd13c
Merge pull request #6199 from ynput/chore/use_better_resolution_fusion
iLLiCiTiT Feb 7, 2024
9affc2c
Merge pull request #6176 from ynput/bugfix/publisher-window-as-dialog
iLLiCiTiT Feb 7, 2024
0c37c0e
Merge pull request #6038 from ynput/bugfix/traypublish-editorial-avoi…
iLLiCiTiT Feb 7, 2024
9058962
Merge pull request #6179 from ynput/enhancement/OP-8067_publisher_act…
jakubjezek001 Feb 7, 2024
f846497
Merge pull request #6201 from ynput/enhancement/OP-8033
mkolar Feb 7, 2024
1fcdde0
AfterEffects: added toggle for applying values from DB during creatio…
kalisp Feb 8, 2024
b70b418
update ayon unreal plugin
iLLiCiTiT Feb 8, 2024
ac69128
Merge pull request #6208 from ynput/enhancement/update-ayon-unreal-pl…
iLLiCiTiT Feb 8, 2024
3298385
Merge branch 'develop' into bugfix/OP-7973_camera-product-type-loaded…
jakubjezek001 Feb 8, 2024
2c4e22a
Add submodule
tokejepsen Feb 9, 2024
0dbd55f
Merge branch 'develop' into bugfix/OP-7973_camera-product-type-loaded…
tokejepsen Feb 9, 2024
6d2a6e4
Fix AE json
tokejepsen Feb 9, 2024
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
7 changes: 3 additions & 4 deletions client/ayon_core/hosts/nuke/plugins/load/load_camera_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ def update(self, container, representation):
project_name = get_current_project_name()
version_doc = get_version_by_id(project_name, representation["parent"])

object_name = container["node"]

# get main variables
version_data = version_doc.get("data", {})
vname = version_doc.get("name", None)
Expand All @@ -139,7 +137,7 @@ def update(self, container, representation):
file = get_representation_path(representation).replace("\\", "/")

with maintained_selection():
camera_node = nuke.toNode(object_name)
camera_node = container["node"]
camera_node['selected'].setValue(True)

# collect input output dependencies
Expand All @@ -154,9 +152,10 @@ def update(self, container, representation):
xpos = camera_node.xpos()
ypos = camera_node.ypos()
nuke.nodeCopy("%clipboard%")
camera_name = camera_node.name()
nuke.delete(camera_node)
nuke.nodePaste("%clipboard%")
camera_node = nuke.toNode(object_name)
camera_node = nuke.toNode(camera_name)
camera_node.setXYpos(xpos, ypos)

# link to original input nodes
Expand Down
Loading