Hello,
Based on the info here what is the purpose of the bone capture pose params? Is there an align pose tool for them ( align bones …) too?
Tks.
Found 81 posts.
Search results Show results as topic list.
Houdini Indie and Apprentice » changing bone origin after envelope
-
- labuzz
- 82 posts
- Offline
Technical Discussion » copy attribs(UVs here) from one attrib(uv) to another(uv2 )?
-
- labuzz
- 82 posts
- Offline
Technical Discussion » copy attribs(UVs here) from one attrib(uv) to another(uv2 )?
-
- labuzz
- 82 posts
- Offline
Hello,
All in the title. I have try with attribcopy and attribtransfer but it dosent work.
Any advice?
Tky.
All in the title. I have try with attribcopy and attribtransfer but it dosent work.
Any advice?
Tky.
Technical Discussion » vex syntax matrix4*4
-
- labuzz
- 82 posts
- Offline
yep its in an inline vop.
Tks a lot Mario.
Hopefully one day you will write a book on mantra ( I have a mario folder in my firefox/scrapbook/houdini folder )!
Cheers.
Tks a lot Mario.
Hopefully one day you will write a book on mantra ( I have a mario folder in my firefox/scrapbook/houdini folder )!
Cheers.
Technical Discussion » vex syntax matrix4*4
-
- labuzz
- 82 posts
- Offline
Hello,
I would like to know if this syntax is correct ( I am getting an error ):
$e and $d are floats. It looks like matrix() is taking a string pattern…I have try to concatenate without success.
matrix $persProj = { {$e, 0, 0, 0}, {0, $d, 0, 0}, {0, 0, $d, -1}, {0, 0, 0, 0} };
tky.
I would like to know if this syntax is correct ( I am getting an error ):
$e and $d are floats. It looks like matrix() is taking a string pattern…I have try to concatenate without success.
matrix $persProj = { {$e, 0, 0, 0}, {0, $d, 0, 0}, {0, 0, $d, -1}, {0, 0, 0, 0} };
tky.
Technical Discussion » vex syntax matrix4*4
-
- labuzz
- 82 posts
- Offline
Hello,
I would like to know if this syntax is correct ( I am getting an error ):
$e and $d are floats. It looks like matrix() is taking a string pattern…I have try to concatenate without success.
matrix $persProj = { {$e, 0, 0, 0}, {0, $d, 0, 0}, {0, 0, $d, -1}, {0, 0, 0, 0} };
tky.
I would like to know if this syntax is correct ( I am getting an error ):
$e and $d are floats. It looks like matrix() is taking a string pattern…I have try to concatenate without success.
matrix $persProj = { {$e, 0, 0, 0}, {0, $d, 0, 0}, {0, 0, $d, -1}, {0, 0, 0, 0} };
tky.
Houdini Lounge » Houdini 10 Beta Testing
-
- labuzz
- 82 posts
- Offline
Stupid question,
Where can I download the beta ( I am on the AUP.escape).
Tky, can't wait!
Borhan
Where can I download the beta ( I am on the AUP.escape).
Tky, can't wait!
Borhan
Technical Discussion » rename groups
-
- labuzz
- 82 posts
- Offline
Technical Discussion » rename groups
-
- labuzz
- 82 posts
- Offline
I don't need to sort the groups in a specific way I just need the 1 2 3… in the end of each group…Actually I will use a stamp() function (“FORVALUE” inside a forEach loop ) to generate a group name.
I am going to try the forEach way … I will need the number of groups I think ( I am on points not on prims ).
I am going to try the forEach way … I will need the number of groups I think ( I am on points not on prims ).
Technical Discussion » rename groups
-
- labuzz
- 82 posts
- Offline
Tks Allegro I know the rename option but I can't find a way to get the 01, 02, 03…automated!
Technical Discussion » rename groups
-
- labuzz
- 82 posts
- Offline
Hello,
I have some groups :
gr_255
gr_102
gr_26
…
and I would like to rename those groups like this:
gr_01
gr_02
gr_03
…
tky!
I have some groups :
gr_255
gr_102
gr_26
…
and I would like to rename those groups like this:
gr_01
gr_02
gr_03
…
tky!
Technical Discussion » hda trigger a python script with a button..
-
- labuzz
- 82 posts
- Offline
Hello,
I run a python script with a button and I would like to know the way to catch the name of the button used . I need to parse this name in the script.
Help is welcome.
Tky.
I run a python script with a button and I would like to know the way to catch the name of the button used . I need to parse this name in the script.
Help is welcome.
Tky.
Technical Discussion » menu script
-
- labuzz
- 82 posts
- Offline
Hi,
Ok, my hscript knowledge are near zero so I need a little bit of help.
I have an HDA with a menu item (a list: token->a string, label… ).
I need to generate another list ( in a menu ) based on the choice of the first.
Something like this:
result = “”
if my param value == someString
result = token…label…token…label
else if my param value == anotherString
result = token…label…token…label
return result
So it would be cool if someone could give me the correct syntax for the menu script.
I don't use Houdini a lot at the moment
Tky.
Ok, my hscript knowledge are near zero so I need a little bit of help.
I have an HDA with a menu item (a list: token->a string, label… ).
I need to generate another list ( in a menu ) based on the choice of the first.
Something like this:
result = “”
if my param value == someString
result = token…label…token…label
else if my param value == anotherString
result = token…label…token…label
return result
So it would be cool if someone could give me the correct syntax for the menu script.
I don't use Houdini a lot at the moment
Tky.
Technical Discussion » hscript expression syntax copy stamp
-
- labuzz
- 82 posts
- Offline
tks for the help Jeff.
One more little thing, can I do something like this in my copy stamp :
It doesn't work :roll:
p = “pointA”
if lvar(“PT”) == 0:
return ( str( hou.lvar(“angleA”)) + p )
…
One more little thing, can I do something like this in my copy stamp :
It doesn't work :roll:
p = “pointA”
if lvar(“PT”) == 0:
return ( str( hou.lvar(“angleA”)) + p )
…
Technical Discussion » hscript expression syntax copy stamp
-
- labuzz
- 82 posts
- Offline
Hello,
I have a problem with this expression in my copy sop ( stamp ):
if ( $PT == 0 ) then
echo 66
else
if ( $PT == 1 ) then
echo 33
else
echo 22
endif
endif
It is the correct syntax? It doesnt work for me.
What about a python version. How can I access PT in python?
I have a problem with this expression in my copy sop ( stamp ):
if ( $PT == 0 ) then
echo 66
else
if ( $PT == 1 ) then
echo 33
else
echo 22
endif
endif
It is the correct syntax? It doesnt work for me.
What about a python version. How can I access PT in python?
Houdini Indie and Apprentice » More testing
-
- labuzz
- 82 posts
- Offline
Hello Mike,
Nice to see an old lw/messiah/modo user here!
Houdini is a real joy and a great learning experience.
Nice to see an old lw/messiah/modo user here!
Houdini is a real joy and a great learning experience.
Technical Discussion » python script "on created" HDA
-
- labuzz
- 82 posts
- Offline
Technical Discussion » python script "on created" HDA
-
- labuzz
- 82 posts
- Offline
Hello,
I would like to use something like :
hou.pwd().parm(“myParm”).set(666)
The doc says that the on created script is used just after the creation but it doesnt work for me ( 9.5 beta ).
Someone can confirm?
tky.
I would like to use something like :
hou.pwd().parm(“myParm”).set(666)
The doc says that the on created script is used just after the creation but it doesnt work for me ( 9.5 beta ).
Someone can confirm?
tky.
Technical Discussion » nurbs curves problem
-
- labuzz
- 82 posts
- Offline
Technical Discussion » nurbs curves problem
-
- labuzz
- 82 posts
- Offline
Hi,
I have a problem with this file, when I try to save the geo ( nurbs -> iges ) when I reload the file it looks corrupted. Maybe a bug?
( some of the curves->no resample-< are not generated in Houdini but in MOI3d )
I can save a bgeo file format and reload it without problems.
tky.
I have a problem with this file, when I try to save the geo ( nurbs -> iges ) when I reload the file it looks corrupted. Maybe a bug?
( some of the curves->no resample-< are not generated in Houdini but in MOI3d )
I can save a bgeo file format and reload it without problems.
tky.
-
- Quick Links
