본문 바로가기
2D 소프트웨어/누크 (Nuke)

[Nuke] 누크 기즈모 설치법 (Gizmo)

by Minkyu Lee 2023. 12. 6.

 

초기 세팅법

1. 누크 기본 폴더 세팅

- C:\Users\계정이름\.nuke에 init.py 생성

- init.py 편집하여, 기즈모 폴더 경로 설정 (원하는 경로)

import nuke

nuke.pluginAddPath('D:/NukeGizmo')

 

2. 기즈모 폴더 세팅

- 기즈모 폴더에 init.py 생성

- init.py 편집하여, 아이콘 폴더 경로 설정

import nuke

nuke.pluginAddPath('./Icons')

 

- menu.py 생성

- menu.py 편집

메뉴바 생성법이다.

import nuke

m = nuke.menu('Nuke')

 

기즈모 추가

- .gizmo 파일을 기즈모 폴더에 놓기

- .png 등의 아이콘 파일을 Icons 폴더에 놓기
- menu.py 편집

import nuke

m = nuke.menu('Nuke')

folder_name = 'MyCustom'
m.addCommand(folder_name+'/aeMotionBlur', 'nuke.nodes.aeMotionBlur()', icon='aeMotionBlur_icon.png')
 

 

참고영상

https://youtu.be/E3imwLY00g0

 

댓글