Skip to content

Commit

Permalink
Vertigo (Dolly/Zoom) camera tool should work in LOPs qLab#1443
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyquest committed May 4, 2024
1 parent 722c2d1 commit df070d2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions viewer_states/qLib_camera_zoom_vertigo_ql_lop.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import hou


import qLibCameraZoomVertigo



def createViewerStateTemplate():
state_name = "qLib::camera_zoom_vertigo_ql_lop"
state_label = "Camera Zoom/Vertigo (lop) [qL]"
template = hou.ViewerStateTemplate(
state_name,
state_label,
hou.lopNodeTypeCategory(),
#contexts = [ hou.sopNodeTypeCategory(), hou.dopNodeTypeCategory(), hou.lopNodeTypeCategory(), ],
)
template.bindFactory(qLibCameraZoomVertigo.State)

return template




0 comments on commit df070d2

Please sign in to comment.