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 185 posts.

Search results Show results as topic list.

Houdini Lounge » Free Houdini particle and camera transfer tools

User Avatar
whalerider
194 posts
Offline
 2009年8月22日 09:29:46
http://www.orcavfx.com/downloads/mt_tools/ [orcavfx.com]

Particle tools
- you need Python 2.5 and PyQt for Python 2.5 installed.
- Houdini 9.5.379 and later supported.
- on Windows you're limited to 32-bit Houdini (no 64-bit PyQt yet)
- on Linux there's no such limitation.

Camera transfer tools
- no need for PyQt.
- Maya 8.5 and later supported.
- Houdini 9.5 and later supported.

I've tested on more than 10 production builds (HD on Windows, Apprentice on Linux)

Haven't tested on OS X.

Let me know what you think.
Edited by - 2009年8月22日 21:50:13
See full post 

Technical Discussion » Recording the frame number something happened using POPs

User Avatar
whalerider
194 posts
Offline
 2009年8月22日 00:41:56
you can do it with Python. not sure if you can do it with a simple expression.
See full post 

Technical Discussion » hou.ui.selectFile() - default_value ignored

User Avatar
whalerider
194 posts
Offline
 2009年8月19日 11:42:32
… when i specify start_directory.
is that as intended or a bug?
why can't both parameters co-exist?
See full post 

Technical Discussion » Help Browser "forgets" chapter

User Avatar
whalerider
194 posts
Offline
 2009年8月15日 14:44:37
Thanks, Edward.
I emailed support.
See full post 

Technical Discussion » Thickness of an object?

User Avatar
whalerider
194 posts
Offline
 2009年8月15日 04:24:18
another way is by using a Cookie SOP.
let's say you have 2 polygonal boxes, which intersect.
you can carve out a ‘tub’ by subtracting one box from the other.
See full post 

Technical Discussion » Help Browser "forgets" chapter

User Avatar
whalerider
194 posts
Offline
 2009年8月15日 01:19:16
When a search returns more than 1 page for a specific chapter, when the browser has to show the subsequent pages for that chapter it switches to the unfiltered results.

For example, the first page of search results for node helpcards containing ‘reference’ is http://localhost:48626/find?q=reference&chapter=nodes [localhost]
clicking ‘Next page’ shows http://localhost:48626/find?q=reference&page=2 [localhost]

So now instead of ‘Page 2 of 4’, now I see ‘Page 2 of 9’.
Imho, the proper url should be http://localhost:48626/find?q=reference&chapter=nodes&page=2 [localhost]

I think this needs to be fixed and the url for Next Page needs to include the chapter.
See full post 

Technical Discussion » Thickness of an object?

User Avatar
whalerider
194 posts
Offline
 2009年8月15日 00:55:44
yes, you need thickness because position calculation is not continuous, but discrete - it's calculated every so often, based on the timestep. so if a particle is moving too quickly, by the time a collision has to be detected, the particle may be past the collision region.
this applies whether you are talking about particles or particle-based fluids or grid-based fluids.

how to add thickness - you can extrude a (polygon) surface.
See full post 

Technical Discussion » Problem reading a .chan file

User Avatar
whalerider
194 posts
Offline
 2009年8月14日 01:22:11
turned out to be ‘operator error’
besides the numerical data, i had some text that i hadn't commented out.
See full post 

Technical Discussion » how can i find the name of attribute i require

User Avatar
whalerider
194 posts
Offline
 2009年8月14日 01:20:35
attributes and local variables are not the same thing.

one way to find attributes of a node is from the Python shell.
e.g.

node = hou.node(path_to_node)

then start typing

node.parm(

you should see a list of the attributes for that node.
See full post 

Technical Discussion » hou.Parm.isTimeDependent() behavior

User Avatar
whalerider
194 posts
Offline
 2009年8月14日 01:05:20
I noticed that it behaves differently for keyframed and CHOPS-driven channels.
For example, if all the values in the CHOP-driven channel are the same, the method returns False. When the channel has the same values, but with keyframes, the method returns True.

I wonder why that is the case.
See full post 

Technical Discussion » Problem reading a .chan file

User Avatar
whalerider
194 posts
Offline
 2009年8月9日 06:17:56
I have an ascii file with 5 tab-delimited columns of numbers containing keyframes for 5 different channels - 1 row per frame.

When I read it with a File CHOP once it shows me that there are 5 channels, another time - that there is only 1 channel.

How do I make sure that the File CHOP always picks up the 5 channels?
See full post 

Technical Discussion » handling Ctrl-click on shelf button

User Avatar
whalerider
194 posts
Offline
 2009年7月22日 13:05:36
Thanks.
I'll keep the check whether the key exists.
I wasn't sure what to do if it does not.
Right now my code does not do anything if the ‘ctrlclick’ does not exist in kwargs. Should it throw a certain kind of exception? Or just print out some error message?

Or maybe it should default to the normal ‘click’ behavior and bring up a dialog where the user specifies the tool's parameters.

edit: i guess the last alternative makes most sense.
See full post 

Technical Discussion » handling Ctrl-click on shelf button

User Avatar
whalerider
194 posts
Offline
 2009年7月21日 16:15:16
i see that the generic tool utils use if kwargs.has_key(“ctrlclick”):
and then it's easy to check whether the value for that key is True or False.

my question is - is there a case when the key “ctrlclick” might be missing from kwargs? do i need to worry about handling that case?

thx.
See full post 

Technical Discussion » how to change default tab focus using Python?

User Avatar
whalerider
194 posts
Offline
 2009年7月21日 04:40:51
Thanks, Mark.

With hindsight, I see that hou.FolderSetParmTemplate is the class to look at.

ps: I need to do this with Python, because a tool I am writing automatically creates a custom tab with spare parameters.
See full post 

Technical Discussion » how to change default tab focus using Python?

User Avatar
whalerider
194 posts
Offline
 2009年7月20日 05:03:57
is there a way to do it?
for example when a geo object is in focus with .setCurrent(True), i want the user automatically to see a specific tab, not the Transform tab, which is in focus by default.
See full post 

Technical Discussion » Houdini 10 issues with PyQt for Python 2.6 on Ubuntu 9.04

User Avatar
whalerider
194 posts
Offline
 2009年7月15日 04:47:43
My default Python version was 2.6, so when I built PyQt it was installed there (/usr/lib/python2.6).
However, Houdini 10.0.295 had issues when I tried to call QApplication following the PyQt example in the HOM cookbook.
Has anyone else had the same problem?

ps:
I changed the default Python version to 2.5 and installed PyQt again.
Houdini 10 has no issues now.
But still, it would be nice if it worked with PyQt for the original default Python version.
See full post 

Technical Discussion » accessing $HFS using Python?

User Avatar
whalerider
194 posts
Offline
 2009年7月14日 14:51:44
all 3 methods worked for me.

thanks a lot, guys.
See full post 

Technical Discussion » accessing $HFS using Python?

User Avatar
whalerider
194 posts
Offline
 2009年7月13日 21:49:34
is there are a method that returns the value of $HFS?

the only way i can think of right now is calling hou.houdiniPath() and then examining the tuple it returns, but that's kind of clumsy.
See full post 

Technical Discussion » creating a label parameter with Python - strange behavior

User Avatar
whalerider
194 posts
Offline
 2009年7月8日 11:59:42
actually, i figured out how to get rid of the ‘0’

node.parm(name).set('') did it

however, Edit Parameter Interface still shows 0 for Label 1.
so i think this is a bug.
See full post 

Technical Discussion » creating a label parameter with Python - strange behavior

User Avatar
whalerider
194 posts
Offline
 2009年7月8日 11:50:26
when i create a label parameter using

template = hou.LabelParmTemplate(name, label)
node.addSpareParmTuple(template, …)

for some reason the parameter comes with a second label (Label 1) set to 0.
afaik, the only way to get rid of it right now is to open the parameter interface and delete the 0 manually.

as an experiment, i created a second label with Edit Parameter Interface and set it to ‘xyz’.
then i ran node.asCode() but it didn't show any Python code setting Label2 to ‘xyz’ (or setting Label 1 to ‘0’ for that matter)

how do i disable Label1 or set it to an empty string?
See full post 
  • 最初
  • 1
  • 2
  • 3
  • 4
  • 最後
  • 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.

使用言語