Jump to content

How to apply "global" settings in takes?


Recommended Posts

In order to isolate lights and reflection panels I need for single render passes I use takes to isolate/activate certain these and disable all other lights and geometry which isn't needed. So, now I'm able to see and judge what certain light settings, positions, rotations do to the overall look of the scene. The problem, all settings are grayed out and I need to include these settings in the take, BUT I want these settings to apply to all takes and the main take. How do I do this in the most practical way? Is there a "mode" in which everything isn't grayed out and the settings I apply also change in the main take and all sub takes? Right now I switch back to "Main", apply the settings, go back to my take and render. NOT - VERY - EFFICIENT.

Cheers
Tom

Link to comment
Share on other sites

Hi Tom,

i made a python script to "push" take values back to the root take. I find it rather handy - if you have an override you want to make global, right click and send it back to the main take.

You'll need to save this into a "PARMmenu.xml" file somewhere on your houdini path (eg C:\Users\cgardner\Documents\houdini15.5\PARMmenu.xml).

When you restart houdini, you *should* get a "push override" item in the parameter right-click menu when you're in a take.

 

<?xml version="1.0" encoding="UTF-8"?>
<menuDocument>
	<menu>
<scriptItem id="pushOveride">
<label>Push Override</label>
<context>
<expression>hou.takes.currentTake() != hou.takes.rootTake()</expression>
</context>
<insertAfter>take_activate</insertAfter>

<scriptCode><![CDATA[
parms = kwargs['parms']
if parms:
    parm = parms[0]
    pt = parm.tuple()
    ctake = hou.takes.currentTake()
    for p in ctake.parmTuples():
        if p == pt:
            keyframes = {}

            for parm in p:
                if parm.keyframes():
                    keyframes[parm.path()] = parm.keyframes()
                else:
                    if parm.parmTemplate().type().name() == 'String':
                        if parm.unexpandedString():
                            keyframes[parm.path()] = parm.unexpandedString()
                        else:
                            keyframes[parm.path()] = parm.eval()
                    else:
                        keyframes[parm.path()] = parm.eval()

            rootTake = hou.takes.rootTake()
            updateMode = hou.updateModeSetting()
            hou.setUpdateMode(hou.updateMode.Manual)
            hou.takes.setCurrentTake(rootTake)

            for k in keyframes:
                hou.parm(k).deleteAllKeyframes()
                if type(keyframes[k]) is tuple:
                    for key in keyframes[k]:
                        hou.parm(k).setKeyframe(key)
                else:
                    hou.parm(k).set(keyframes[k])

            hou.takes.setCurrentTake(ctake)

            ctake.removeParmTuple(p)
            hou.setUpdateMode(updateMode)

]]></scriptCode>
</scriptItem>
	</menu>
</menuDocument>

cheers,

chrisg

Edited by doctorbob
stupidity
  • Like 3
Link to comment
Share on other sites

  • 2 years later...

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...