Last active
October 12, 2021 08:18
-
-
Save U29/31259758a30a1937ee47288fca6df04b to your computer and use it in GitHub Desktop.
Nukeでchannelsがalphaでwhite_clampが無効になっているGradeノードの名前を返すスクリプト
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nuke | |
def search_error_grade(): | |
error_grade = [] | |
for n in nuke.allNodes("Grade"): | |
if(n["channels"].getValue() == 4.0 and n["white_clamp"].getValue() == 0): | |
error_grade.append(n.name()) | |
return error_grade | |
print(search_error_grade()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
エラーを自動修正(white_clampをオン)