State:Closed|icon_bug|icon_katana|database:public|Resolution:Fixed|TargetRelease:4.5v2|BugID:480193|
Problem summary
Non-Enableable parameters as part of global Graph State Variables, GSVs, prevents renders from starting and logs an event handler error.
Customer reported version
katana.4.0v1
Customer reported platform
centos7
Steps to reproduce
1) Open the hello_pony.katana example project:
Help > Example Projects > Hello Pony > Open Project
2) In the Python tab, create a new global GSV as a standard parameter:
param = NodegraphAPI.GetRootNode().getParameter('variables')
param.createChildNumber('foo', 1)
[ERROR python.Utils.EventModule]: Error in event handler __on_event_idle() for event type "event_idle": AttributeError: 'NoneType' object has no attribute 'getValue'
param = NodegraphAPI.GetRootNode().getParameter('variables')
param.deleteChild(param.getChild('foo'))
foo = param.createChildGroup('foo')
foo.createChildNumber('enable', 1)
foo.createChildNumber('value', 1)
foo.createChildNumber('default', 0)
We're sorry to hear that
Please tell us why