![](/static/djangobb_forum/img/smilies/smile.png)
Found 188 posts.
Search results Show results as topic list.
Solaris and Karma » SSS Question - Standard Mtlx Surface
-
- AslakKS
- 188 posts
- Offline
You probably want to use radius instead of SSS Color
(or both :O )
![](/static/djangobb_forum/img/smilies/smile.png)
Edited by AslakKS - 2024年12月22日 15:10:27
Solaris and Karma » Can a particular object's reflections be isolated?
-
- AslakKS
- 188 posts
- Offline
Your prim path on `rendergeometrysettings1` is wrong, setting it to `/cyc` instead of `loplastmodifiedprims("../box")` fixes it
Edited by AslakKS - 2024年12月19日 12:26:28
Solaris and Karma » Can a particular object's reflections be isolated?
-
- AslakKS
- 188 posts
- Offline
Main issue is that you're typing the LPE's into the wrong parameter, secondary issue is using the wrong quotes.
Edited by AslakKS - 2024年12月19日 04:45:16
Houdini Lounge » How to delete duplicate data?
-
- AslakKS
- 188 posts
- Offline
Or use the fuse node in match attribute mode and disable the `snap distance` & `output position`. That would only keep one of each value
Solaris and Karma » Husk Procedural hair example
-
- AslakKS
- 188 posts
- Offline
I did see in the changelogs(20.5.110) that acceleration blur is now supported in the hair procedural, I assume then you would at least get curved motion blur for the hair procedural?
Or maybe this was always supported if the guides had v@acceleration
Or maybe this was always supported if the guides had v@acceleration
Edited by AslakKS - 2024年9月6日 12:20:53
Solaris and Karma » Vulkan bounding boxes are drawn as geo instead of wireframes
-
- AslakKS
- 188 posts
- Offline
Technical Discussion » (SOLVED) Multiple Startup scripts? (123.py)
-
- AslakKS
- 188 posts
- Offline
I think it's now recommended to use As you can have multiple of them
See docs for info on the difference between them:
https://www.sidefx.com/docs/houdini/hom/locations.html#startup [www.sidefx.com]
pythonX.Ylibs/pythonrc.py|ready.py|uiready.py
See docs for info on the difference between them:
https://www.sidefx.com/docs/houdini/hom/locations.html#startup [www.sidefx.com]
Edited by AslakKS - 2024年8月12日 15:47:10
Technical Discussion » Change path where an existing asset appears in TAB submenu
-
- AslakKS
- 188 posts
- Offline
Houdini Indie and Apprentice » Errors at Startup
-
- AslakKS
- 188 posts
- Offline
Are you maybe running Octane? I've seen other people get lots of errors on launch when running dailies and having Octane active
Houdini Lounge » Is there a way to assign a keyboard shortcut to filter on...
-
- AslakKS
- 188 posts
- Offline
You need to indent after the if:
paneTab = hou.ui.paneTabUnderCursor() if paneTab.type() == hou.paneTabType.Parm: paneTab.setFilterMode(hou.parmFilterMode.NonDefaultParms) toggle = not paneTab.filterEnabled() paneTab.setFilterEnabled(on=toggle)
Houdini Lounge » Is there a way to assign a keyboard shortcut to filter on...
-
- AslakKS
- 188 posts
- Offline
Houdini Lounge » Made a modern/cleaner UI theme
-
- AslakKS
- 188 posts
- Offline
In h20.5 there is that you can run through the python shell or make a shelf tool
hou.ui.reloadColorScheme()
Animation » Animation Editor: how to jump to current frame?
-
- AslakKS
- 188 posts
- Offline
I noticed in the changelog that from h20.5.301 daily builds there is now shift+f to scroll the view to the current frame.
Edited by AslakKS - 2024年7月24日 06:10:42
PDG/TOPs » TOPs Partition with random index
-
- AslakKS
- 188 posts
- Offline
Partition by comparison can do this, a bit cumbersome to setup if you don't know the work item counts up front. But seems to work well enough ![](/static/djangobb_forum/img/smilies/smile.png)
![](/static/djangobb_forum/img/smilies/smile.png)
Technical Discussion » create multiple channel custom plane
-
- AslakKS
- 188 posts
- Offline
Technical Discussion » Radially distorted bokeh with the physical lens shader?
-
- AslakKS
- 188 posts
- Offline
It is somewhat possible with the lens shader (cpu only), I'm not completely sure it actually does any of the Optical Vignetting though.
Here is what I got when I played with something similar, rotating the bokeh and playing with the anisotropy
![](/forum/attachment/f8e5252f8ed243bf4517517447e730120a38ea4d/)
Attaching the hda if you want to take a peak beneath the hood, assign the vop as the lens shader(karma CPU only)
Here is what I got when I played with something similar, rotating the bokeh and playing with the anisotropy
Attaching the hda if you want to take a peak beneath the hood, assign the vop as the lens shader(karma CPU only)
Edited by AslakKS - 2024年6月24日 16:42:19
Solaris and Karma » Karma Ray Import - list of all variables?
-
- AslakKS
- 188 posts
- Offline
The documentation lists the available rays for import, don't know if this is up to date.
https://www.sidefx.com/docs/houdini/solaris/karma_xpu.html#materials-shading [www.sidefx.com]
https://www.sidefx.com/docs/houdini/solaris/karma_xpu.html#materials-shading [www.sidefx.com]
Technical Discussion » opencl baby steps
-
- AslakKS
- 188 posts
- Offline
The problem is that a vdb does not have v@P, use @nameofvolume.pos instead ![](/static/djangobb_forum/img/smilies/smile.png)
https://www.sidefx.com/docs/houdini/vex/ocl.html#vdb-binding-methods [www.sidefx.com]
![](/static/djangobb_forum/img/smilies/smile.png)
https://www.sidefx.com/docs/houdini/vex/ocl.html#vdb-binding-methods [www.sidefx.com]
// Bindings #bind vdb &density float @KERNEL { float3 pos = @density.pos; float d = @density.worldSample(pos); d *= 0.5; @density.set(d); }
Houdini Lounge » Is there a way to assign a keyboard shortcut to filter on...
-
- AslakKS
- 188 posts
- Offline
It's possible with a shelf tool:
![](/forum/attachment/8da078adc076f7bc9180a5ad3017df4c38987bf1/)
Script code
Currently the hou.parmFilterMode... does not match up with the menu, so you need to use the "graph selected parms" for it to select "non-default parms"
I'll submit a bug report for that.
Script code
paneTab = hou.ui.paneTabUnderCursor() if paneTab.type() == hou.paneTabType.Parm: paneTab.setFilterMode(hou.parmFilterMode.GraphSelectedParms) toggle = not paneTab.filterEnabled() paneTab.setFilterEnabled(on=toggle)
Currently the hou.parmFilterMode... does not match up with the menu, so you need to use the "graph selected parms" for it to select "non-default parms"
![](/static/djangobb_forum/img/smilies/smile.png)
Edited by AslakKS - 2024年6月8日 16:26:16
Technical Discussion » [Python] Updating UI color scheme with shelf tool?
-
- AslakKS
- 188 posts
- Offline
Quite sure you can by submitting your own RFE and referencing the RFE number I included in my post
![](/static/djangobb_forum/img/smilies/wink.png)
-
- Quick Links