I assume I am doing something wrong, but I can't create a digital asset in the newer versions of Houdini. I have tried 18.5.583 & 563. Both are Python 3.
For example, I create a geometry node, inside I create a sphere and color node. I select both and create a subnet. I then right click the subnet, but instead of getting a menu, I get an error:
Error while evaluating menu item filter expression
Traceback (most recent call last):
File "<stdin>", line 5, in expression
NameError: name 'reload' is not defined
Anyone else having this issue?
Suggestions?
Brad Carvey
Is creating Digital Assets Broken?
2824 5 2-
- bjcarve
- Member
- 30 posts
- Joined: Sept. 2017
- Offline
-
- graham
- Member
- 1925 posts
- Joined: Nov. 2006
- Offline
My guess is there is some sort of custom OPmenu.xml stuff going on somewhere. Given it's happening across versions the not terribly helpful traceback indicates that something in menu generation code is failing due to not being Python 3 compatible (reload() no longer exists).
Graham Thompson, Technical Artist @ Rockstar Games
-
- julca
- Member
- 258 posts
- Joined: Oct. 2015
- Offline
-
- bjcarve
- Member
- 30 posts
- Joined: Sept. 2017
- Offline
-
- jsmack
- Member
- 8153 posts
- Joined: Sept. 2011
- Online
-
- julca
- Member
- 258 posts
- Joined: Oct. 2015
- Offline
jsmackIt's just need now to be call like "importlib.reload" with the importlib module.graham
due to not being Python 3 compatible (reload() no longer exists).
Seriously? Throw it in the trash.
Python 2 forever
more info [stackoverflow.com]
-
- Quick Links