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

Search results Show results as topic list.

Technical Discussion » FBX export through python

User Avatar
fkkcloud
26 posts
Offline
 2015年12月21日 17:31:12
I get error when I try to createNode() I am using Indie version btw.
The attempted operation failed.
Traceback (most recent call last):
File “hou.session”, line 6, in <module>
File “CPROGRA~1/SIDEEF~1/HOUDIN~1.313/houdini/python2.7libs\houpythonportion.py”, line 541, in decorator
return func(*args, **kwargs)
File “CPROGRA~1/SIDEEF~1/HOUDIN~1.313/houdini/python2.7libs\hou.py”, line 5374, in createNode
return _hou.Node_createNode(*args, **kwargs)
OperationFailed: The attempted operation failed.
This node cannot contain other nodes
See full post 

Houdini Lounge » $PT in "carve" node

User Avatar
fkkcloud
26 posts
Offline
 2014年4月10日 13:05:46
jeff
Some SOPs don't take local variables. Carve SOP is one of them. There is an existing RFE to have the Carve SOP take local variables.

In the meantime, if you need to process multiple curves, you will have to wrap the Carve SOP inside a ForEach SOP in order to process curves in turn.

These days the ForEach SOP is pretty efficient.

Yeah, I ended up using ForEach SOP. Thanks!
See full post 

Houdini Lounge » $PT in "carve" node

User Avatar
fkkcloud
26 posts
Offline
 2014年4月10日 02:19:08
Hi,

How would I reference point number with global variable $PT in carve node?

It seems to not having the global variable.

Want to run an expression
point(“../vopsop23”, $PT, “growth”, 0)
on FirstU parameter of carve node.

Any suggestions?
See full post 

Technical Discussion » Houdini Engine for Maya : Color Attribute?

User Avatar
fkkcloud
26 posts
Offline
 2014年2月20日 18:42:03
Hi,

I've created a simple houdini asset that changes color of point attribute on an object.

I've imported it into Maya using Houdini Engine plugin but it does not seems to read the color from the HDA.

How would I make Maya to read the color values from Houdini Engine Asset ( or HDA )?

Any suggestions?
See full post 

Technical Discussion » alembic export from Houdini to Maya

User Avatar
fkkcloud
26 posts
Offline
 2014年2月14日 13:48:17
Hi,

I've tried couple different ways to import H13 geo with Cd attribute into Maya2014.

I used HDF5, promoted point Cd attribute into vertex Cd attribute.
In Alembic ROP node, in vertex attribute parameter, I put Cd.
In point attribute parameter, I put N.

It seems like it still does not load the Cd properly and give me an error:
// Error: file: CProgram Files/Autodesk/Maya2014/scripts/AETemplates/AEnewColor.mel line 42: Attribute facetted3:clean1.Cd is not vector-valued. //

Is there something that I have to do in Maya to get that color rendered?

Any kind of suggestion would be really appreciated.

Thank you!
See full post 

Technical Discussion » gas linear combination node's coefficient

User Avatar
fkkcloud
26 posts
Offline
 2012年10月7日 03:10:13
I understand “coef_1 * val_1 OP coef_2 * val_2 OP coef_3 * val_3 OP constant” but for coefficient (for example coef_1 ..2 and so on)

There are drop down menus for Timestep , e^Timestep.

I see “set always” down there which will evaluate every frame with current value but what about the Timestep and e^Timestep? what does that do exactly?
See full post 

Technical Discussion » meaning of divergence free

User Avatar
fkkcloud
26 posts
Offline
 2012年10月5日 23:25:53
What is exactly meaning of divergence free in solver?
I realized that it does not make advecting data not to be stucked in an area.
But how does it works?

How does pressure field generated and get working with gas project non-divergent node?
See full post 

Houdini Lounge » some question about noise for a shape

User Avatar
fkkcloud
26 posts
Offline
 2012年10月3日 18:16:16
Thanks for the well explanations.

I understand the directionality of turbulence for the points.

Howeber, for volume, what would be main benefit with multiply normalized position data of voxel to turbulence and add to position to get distance and remap(fit) for getting edge smoother
and
just multiply turbulence with position data of voxel and get distance and remap(fit) for getting edge smoother?

I don't see much difference.
See full post 

Houdini Lounge » some question about noise for a shape

User Avatar
fkkcloud
26 posts
Offline
 2012年10月2日 19:52:07
Let say if I want a sphere to have some natural shape, I fetch position data of point or voxel to turbulence vop and add that to my global position ,right?

I saw 1 example and he get the vectors which is shooting from center of the sphere to the current positions (basically shoot from inside to outside) and normalized the vector and multiplied to the turbulence value before adding the value to the global position.

I've heard that is to make give turbulence value only for the edges of the sphere but how that actually work out?
See full post 

Technical Discussion » rendering a volume with a particle system gives me flciker

User Avatar
fkkcloud
26 posts
Offline
 2012年10月2日 14:27:03
I am rendering a volume with a particle system(rendering as mantra points) and it give me flickering only when I render volume and particle together.

When I render only each element, it doesn't do the flickers.

Here goes the example video clip. (see the bottom part of the particle

I've tried matte volume but also gives me flicker, instancing simple geo instead of using mantra point for render also gives me flicker.

Used higher resolution for depth map shadow, but still gives me flickers.

What could cause this?
See full post 

Technical Discussion » "position by uv value" from hou.surface and hou.fa

User Avatar
fkkcloud
26 posts
Offline
 2012年9月27日 16:27:54
Hi, I am trying to make a point deformer and I am stucked in a step.

Here is my plans–

1.copy all the points that I want to deform to the polygon object so they are 1 object using hou.geo.createPoint in python.

2.get uv attributes from the object

3.copy the uv attributes of first frame so it will contain the static uv value while the object is deforming.

4.get position value from the uv and fetch the output position value to the points that I want to deform but it seems like from the uv, it's not getting the right position.

Can anybody take a look inside of this file and what step I am missing?


point copy to object python script

node = hou.pwd()
geo = node.geometry()
geo2 = node.inputs().geometry()
ptGrp = geo.createPointGroup(“ptGrp”)

for point in geo2.points():
pos = point.attribValue(“P”)

pt = geo.createPoint()

pt.setAttribValue(“P” , pos)

ptGrp.add(pt)


get position by uv and fetch to the original points script

node = hou.pwd()
geoPdef = hou.pwd().geometry()
geoAnim = node.inputs().geometry()

fPtGrp = geoAnim.findPointGroup(“ptGrp”)
ptsGrp = fPtGrp.points()
i = 0
for point in geoPdef.points():
pt = ptsGrp
ppos = pt.attribValue(“P”)
nprim = geoAnim.nearestPrim(ppos)
u = pt.attribValue(“uv”)
v = pt.attribValue(“uv”)
pos = nprim.positionAt(u)
point.setAttribValue(“P” , pos)
i += 1

Like This
Quote
MultiQuote
Edit
See full post 

Technical Discussion » advecting fluid velocity in popvop.

User Avatar
fkkcloud
26 posts
Offline
 2012年7月27日 14:34:38
advecting fluid velocity in popvop.

is there an example?
See full post 

Houdini Lounge » selecting group by selecting prim/point

User Avatar
fkkcloud
26 posts
Offline
 2012年7月25日 14:54:20
Hi,

with python or any commands in textport or whatwever,
how would I select a group with selecting a point or prim in the group?
See full post 

Technical Discussion » Delayed Load Shader : Mantra - HELP!

User Avatar
fkkcloud
26 posts
Offline
 2012年6月9日 02:05:34
I have extremly high volume of points and all the points instacing box with 16 points.
I am rendering it with mantra but it goes easily over 16gb.

I am trying to use Delayed Load shader : Mantra , but reading the help file is not enough information for me to set this up.

Please let me know if somebody have done this or example file would be really appreciated.

Thank you,
See full post 

Technical Discussion » glitch fx with COP or any other houdini ops?

User Avatar
fkkcloud
26 posts
Offline
 2012年6月8日 11:55:27
I am trying to get this kind of glitch effect with original image that I have or original animation that I have.

http://www.triangulationblog.com/2012/02/lambeaux-by-nicolas-boillot.html#more [triangulationblog.com]

http://vimeo.com/3139412 [vimeo.com]

any ideas?
See full post 

Technical Discussion » flip solver and velocity source question

User Avatar
fkkcloud
26 posts
Offline
 2012年6月6日 00:36:50
I have an fliptank with container.

I have created velocity with source volume node but it seems like it only works when it is birthing new particles.

I just want to use that as velocity source (not to emit more extra flip particles)

How would I set-up a velocity volume that affect only existing flip particles ?

HELP!
See full post 

Technical Discussion » pic expression trouble

User Avatar
fkkcloud
26 posts
Offline
 2012年5月2日 21:28:35
colormap in vop helped this issue!
See full post 

Technical Discussion » pic expression trouble

User Avatar
fkkcloud
26 posts
Offline
 2012年5月2日 21:15:54
point(“../attribcopy1”,$PT , “uv” , index)
Tried that earlier.
It came out like this..
which have wrong color space.
See full post 

Technical Discussion » pic expression trouble

User Avatar
fkkcloud
26 posts
Offline
 2012年5月2日 20:53:01
okay, how would I fix that?

cause I am trying to emit particle from that so the particle that emit from the point could grab the color.

Thanks!
See full post 

Technical Discussion » pic expression trouble

User Avatar
fkkcloud
26 posts
Offline
 2012年5月2日 14:30:39
Hi,

I have a geo which hav UV projected by Camera and I am trying to get the uv attribute to point Cd.
Used pic expression but it doesn't seem to work properly.


attached hip file avilable
See full post 
  • 最初
  • 1
  • 2
  • 最後
  • Quick Links
Search links
Show recent posts
Show unanswered posts
製品
  • Houdini
  • Houdini Engine
  • Houdini Indie
学習
  • Houdini 講演
  • 教育プログラム
サポート
  • カスタマーサポート
  • ヘルプデスク FAQ
  • ドキュメント
  • Report a Bug/RFE
  • Sales Inquiry
LEGAL
  • Terms of Use (英語)
  • Privacy Policy (英語)
  • License Agreement (英語)
  • Accessibility (英語)
  • Responsible Disclosure Program
COMPANY
  • SideFX社について
  • Careers
  • Press
  • Internships
  • お問い合わせ
Copyright © SideFX 2025. All Rights Reserved.

使用言語