Hello Folks,
I'm just starting to learn python in houdini and I notice that the autocompletion doesnt work regulary. Is there something I need to setup? Or is there a workaround for this?
Best wishes,
Nicolas
Houdini Python autocompletion
3987 3 0- Nicolas Nicfis
- Member
- 2 posts
- Joined: 2月 2014
- Offline
- gui2one
- Member
- 101 posts
- Joined: 2月 2015
- Offline
Hi, a good thing to know ( if you don't already ) is that houdini will prompt all the methods of an object if this object is stored in a variable.
if you type :
hou.node('/obj/geo1'). …. # houdini will prompt nothing
#but if you put the object in a variable, and then call a method on this variable
n = hou.node('/obj/geo1')
n. … # this will prompt every available method
Hope it helps
if you type :
hou.node('/obj/geo1'). …. # houdini will prompt nothing
#but if you put the object in a variable, and then call a method on this variable
n = hou.node('/obj/geo1')
n. … # this will prompt every available method
Hope it helps
- Mikle Talalaevskiy
- Member
- 1 posts
- Joined: 4月 2015
- Offline
- hghtch
- Member
- 5 posts
- Joined: 11月 2019
- Offline
-
- Quick Links