tuly Posted February 15, 2024 Share Posted February 15, 2024 hello everyone. Does anyone know how to get Houdini to start from frame 1001, as soon as you start the program? Quote Link to comment Share on other sites More sharing options...
Sepu Posted February 19, 2024 Share Posted February 19, 2024 In a 456.py You can do this - This will open every new session with the frame at 1001 and it will set the playback range from 1001 to 1240 def frame_settings(): hou.setFps(24) hou.setFrame(1001) hou.playbar.setFrameRange(1001, 1240) hou.playbar.setPlaybackRange(1001, 1240) frame_settings() 2 Quote Link to comment Share on other sites More sharing options...
tuly Posted February 23, 2024 Author Share Posted February 23, 2024 Thank you very much, for this golden nugget of knowledge jejeje 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.