Jump to content

setDeleteScript method does not work?


jamesr

Recommended Posts

Hey guys, 

I was wondering if anybody is familiar with using the hou.node.setDeleteScript() method. In the docs, the language arg is set to Python:

setDeleteScript(script_text, language=hou.scriptLanguage.Python)

But when running the following code, I get an error

n = hou.node('/obj/geo1')
cmd = 'x = 5; print x'
n.setDeleteScript(cmd)
OperationFailed: The attempted operation failed.
Python is not yet supported in deletion scripts.

Just passing an empty string gives the same error.

When trying to set the language flag to Hscript with

n.setDeleteScript('setenv x = "hello"', language=hou.scriptLanguage.Hscript)

It raises another error

TypeError: setDeleteScript() got an unexpected keyword argument 'language'

 

Is there something I'm missing? I would normally create an HDA and use the built in 'On Deleted' call and run my code there, but for this particular case I'm unable to use an HDA. I was able to find this function all the way back in the Houdini 12 docs. Is it still not usable?

 

Thanks!

 

 

 

Link to comment
Share on other sites

>>> n.setDeleteScript("aaa", hou.scriptLanguage.Hscript)
>>> n.setDeleteScript('setenv x = "hello"', hou.scriptLanguage.Hscript)
>>> hou.getenv('x')
'hello'

This works.

 

You can also take a look at this

Particularly the Script Variables section. You can set a script that will trigger whenever any node or a specific node is triggered

 

 

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...