Hi @alexaz sorry fot the delay, until now the project was first as always.
I installed RV on Windows 10 with Nuke 11.3v2.
On RV I activated the Nuke and Installed the files on .Nuke.
Inside My user .nuke the is a
ini.py with:
nuke.pluginAddPath(’./rvnuke’).
And a menu.py with:
import rvNuke
menubar = nuke.menu (‘Nuke’)
menubar.addCommand (‘RV/Start RV’, ‘rvNuke.startRv()’, icon=“rvNuke.png”)
menubar.addCommand (‘RV/Create Checkpoint’, ‘rvNuke.createCheckpoint()’, icon=‘rvNukeCheck.png’)
menubar.addCommand (‘RV/View in RV’, ‘rvNuke.viewReadsInRv(False)’, icon=‘Viewer.png’)
menubar.addCommand (‘RV/Render to RV’, ‘rvNuke.Render()’, icon=‘Write.png’)
menubar.addCommand (‘RV/Project Settings …’, ‘rvNuke.showSettingsPanel()’, icon=‘Modify.png’)
menubar.addCommand (‘RV/Preferences …’, ‘rvNuke.showPrefs()’, icon=‘rvNukeGear.png’)
toolbar = nuke.toolbar( ‘RV’ )
toolbar.addCommand (‘Start RV’, ‘rvNuke.startRv()’, icon=‘rvNuke.png’)
toolbar.addCommand (‘Create Checkpoint’, ‘rvNuke.createCheckpoint()’, icon=‘rvNukeCheck.png’)
toolbar.addCommand (‘View in RV’, ‘rvNuke.viewReadsInRv(False)’, ‘alt+r’, icon=‘Viewer.png’ )
toolbar.addCommand (‘Render to RV’, ‘rvNuke.Render()’, icon=‘Write.png’)
toolbar.addCommand (‘Project Settings …’, ‘rvNuke.showSettingsPanel()’, icon=‘Modify.png’)
toolbar.addCommand (‘Preferences …’, ‘rvNuke.showPrefs()’, icon=‘rvNukeGear.png’)
When I select a exr files inside Nuke and use the shortcut “alt+r” RV is opening fine, but is not loading the EXR files. The console from RV is not showing any error. And the same configuration on my MAC is working fine and loading the exr files.
Where can be my mistake
?
Many Thanks