Honza Topinka

Honza Topinka

About Me

Connect

LOCATION
Not Specified
ウェブサイト

Houdini Engine

Availability

Not Specified

Recent Forum Posts

A Question About Toggle Stowbars 2024年9月5日10:18

Hey. Try playing around with this

import hou

b = hou.ui.hideAllMinimizedStowbars()
b = not b

for p in hou.ui.panes():
    p.setShowPaneTabs(1)
for p in hou.ui.paneTabs():
    if p.type()!=hou.paneTabType.NetworkEditor:
        p.setShowNetworkControls(0)

    if p.type()==hou.paneTabType.NetworkEditor:
        p.setPref('showmenu',['0','1'][1])
        p.setShowNetworkControls(0)
    elif p.type()==hou.paneTabType.SceneViewer:
        p.setShowNetworkControls(1)
        p.showDisplayOptionsBar(1)
        p.showOperationBar(1)
        p.showSelectionBar(1)
        if p.includeColorCorrectionBar():
            p.showColorCorrectionBar(not b)
        if p.includeMemoryBar():
            p.showMemoryBar(not b)
hou.ui.curDesktop().shelfDock().show(1)
hou.setPreference('showmenu.val',['0','1'][1])
hou.ui.setHideAllMinimizedStowbars(b)

density from texture 2024年5月3日10:11

Aah, I see. I actually misunderstood, sorry. I guess building to volume from geometry with the texture as an attribute driving the density is not what you want...

Also I don't know or have Renderman, but in Karma I could kind of plugin a texture into a shader with point cloud lookups. Once again probably not exactly what you want, but maybe closer? There has to be something similar in Renderman.

A terrible answer, I know



File attached

Beginner, RBD Bullet solver issue 2024年5月2日10:52

Hey

Can you attach the hip file?