Forgot your password?   Click here   •   No account yet?   Please Register    •   Or login using  
JA ログイン
SideFX Homepage
  • 製品
    • H20.5 新機能
      • 概要
      • VFX
      • Copernicus
      • Animation
      • Rigging
      • Lookdev
    • Houdini
      • 概要
      • FX 機能
      • CORE 機能
      • Solaris
      • PDG
    • Houdini Engine
      • 概要
      • Engine プラグイン
      • バッチ処理
    • Karma Renderer
    • 製品比較
    • SideFX Labs
    • Partners
  • 業界
    • Film & TV
    • ゲーム開発
    • モーショングラフィクス
    • Virtual Reality
    • AI/ML 向けデータ合成
  • コミュニティ
    • フォーラム
    • ニュース
      • 概要
      • カスタマ ストーリー
      • Houdini HIVE Events
      • Contests & Jams
    • Gallery
    • イベントカレンダー
    • User Groups
    • Artist Directory
  • 学習
    • Start Here
      • 概要
      • My Learning
      • ラーニングパス
      • チュートリアル
    • コンテンツライブラリ
    • Tech Demos
    • Houdini 講演
    • 教育プログラム
      • 概要
      • 学生
      • 講師
      • 管理者
      • List of Schools
      • 学習リソース
  • サポート
    • カスタマーサポート
    • Licensing
      • 概要
      • Commercial
      • Indie
      • Education
    • ヘルプデスク FAQ
    • Houdini システム環境
    • ドキュメント
    • Changelog / Journal
    • Report a Bug/RFE
  • Get
    • Try
    • 購入
    • ダウンロード
    • お問い合わせ
 
Advanced Search
Forums 検索
Found 91 posts.

Search results Show results as topic list.

Technical Discussion » Programmatically adding blend slider to blendshapes node

User Avatar
johm
138 posts
Offline
 2015年10月9日 16:48:52
hi carlos,
how's this:

n = hou.node(“/obj/geo1/blendshapes1”)
nblends = n.parm(“nblends”)
nblends.set(3)
slider1 = n.parm(“blend1”)
slider1.setAlias(“targetshape1”)
slider2 = n.parm(“blend2”)
slider2.setAlias(“targetshape2”)

-j
See full post 

Technical Discussion » alembic and motion blur

User Avatar
johm
138 posts
Offline
 2012年9月1日 09:13:43
sorry if you've read this before…

How does one properly export deforming geometry from maya and import it into houdini in such a way that deformation motion blur works correctly with a 0.5 shutter interval?
Maya's alembic export settings: step size = 1, and FrameRelativeSample = 0.0 and 0.5
houdini is set up with camera shutter=0.5 geo_motionsamples=2

I'm getting intermittent frames with no motion blur at all, and, motion blur is as though shutter=1.0.

I know I can work around the issue by lerping the geometry sampled at the integer frame values, but I was hoping I wouldn't have to.
See full post 

Houdini Lounge » orient transform pivot !

User Avatar
johm
138 posts
Offline
 2012年8月22日 23:51:47
In the Edit Sop, if you want to move a face in a direction parallel to the normal, use the Peak Handle instead of the Transform/Rotate handle.
See full post 

Houdini Lounge » Otl scan Path

User Avatar
johm
138 posts
Offline
 2012年8月11日 02:16:28
hey rob
here's the only way I was able to get it to work:
Edit the houdini.env file in your home/houdini12.0 directory.

define your path using the “@” symbol to mean all the standard path locations. Mine looks something like this:

HOME = “CUsers/john/Documents”
MYJOB = “CUsers/john/proj/foo”
HOUDINI_OTLSCAN_PATH = “@/otls;$MYJOB/otl;$HOME/houdini12.0/otl”

I had to define the vars used in the path *in this file*. No matter what I tried I could not get externally defined env vars to resolve from here. I was hoping to be able to change $MYJOB on the fly as I jumped from project to project and *not* have to hard code it here, but I couldn't figure it out.
Nonetheless, at least I can have my otls sitting in logical folders and not lose them.

I'd love to know if there is a syntax that is able to use a windows environment variable in this file. (%BLORT% doesn't work; $BLORT and \$BLORT all return null strings when you examine the path).

If this method doesn't appeal to you, you might want to consider using the OPLibraries file. It would have hardcoded paths to each and every one of your otls.
-j
See full post 

Houdini Lounge » how to have the wire not stretchy?

User Avatar
johm
138 posts
Offline
 2012年8月3日 22:11:15
ok, last stab at it….
sounds like all you wanted was a point constraint…
-j
See full post 

Houdini Lounge » Use a cop as a viewport background sequence issue

User Avatar
johm
138 posts
Offline
 2012年8月2日 01:48:23
looks like a bug. you should submit it.
it appears to work fine in version 10.
-j
See full post 

Houdini Lounge » how to have the wire not stretchy?

User Avatar
johm
138 posts
Offline
 2012年8月2日 01:30:19
I don't get it either. If I had to take a guess tho, I think what you want to do is have angular and linear stretch stiffness vary across the length of your wires. This would give you flexibility at one end, and stiffness at the other.

there are plenty of ways you can do this, attached is one simple method using a metaball and a magnet sop to create point colours, and then taking the CR component of the colour and making that your kangular strength.
-j
See full post 

Technical Discussion » Tranform in Pre-Transform only??

User Avatar
johm
138 posts
Offline
 2012年7月28日 09:57:18
can you post a hip file? I don't think I've ever seen this kind of behavior.
See full post 

Technical Discussion » fuse SOP distance

User Avatar
johm
138 posts
Offline
 2012年7月6日 02:21:34
interesting. probably a bug.
An approach you might consider is to use a ForEach Sop to iteratively fuse points with a gradually increasing threshold distance.

In the attached file, the distance parameter expression in the foreach sop is set to fuse up to a maximum of 1 unit:
clamp(…) * 1
if you want the threshold to be 1.5 as you originally stated, change the *1 to *1.5
See full post 

Technical Discussion » Point instance procedural

User Avatar
johm
138 posts
Offline
 2012年7月2日 10:15:00
Not sure exactly how you're using the looping variable in conjunction with the already randomly offset looping index value inherent in the file name. Seems redundant to carry around the extra RANDOFFSET point attribute, unless you're using it somewhere else.

This works for me:
grid->scatter->attribcreate
AttribCreate:
Name = instancefile
String = $HIP/horse_dir/horse.`padzero(4, wrap($PT + $F, 1, 100))`.bgeo
See full post 

Houdini Lounge » Question about the Mantra Surface material

User Avatar
johm
138 posts
Offline
 2012年7月2日 09:33:25
yes you are correct. when you strip out all other variables, diffuse and reflected components are simply added to produce the final output color.

If you dive into the shader you can see that the diffuse and reflected componets are combined via an Add operator.
(double-click on the mantrasurface shader, then double-click on the surfaceModel)

if you're dead set against using an expression to make an inverse relationship between diffuse color and reflected color, you could always modify the shader network to make it “automatic”.
See full post 
  • 最初
  • 2
  • 3
  • 4
  • 5
  • 最後
  • Quick Links
Search links
Show recent posts
Show unanswered posts
製品
  • Houdini
  • Houdini Engine
  • Houdini Indie
学習
  • Houdini 講演
  • 教育プログラム
サポート
  • カスタマーサポート
  • ヘルプデスク FAQ
  • ドキュメント
  • Report a Bug/RFE
LEGAL
  • Terms of Use (英語)
  • Privacy Policy (英語)
  • License Agreement (英語)
  • Accessibility (英語)
  • Responsible Disclosure Program
COMPANY
  • SideFX社について
  • Careers
  • Press
  • Internships
  • お問い合わせ
Copyright © SideFX 2025. All Rights Reserved.

使用言語