Hello,
I know this is a shot in the dark, but I guess I should try anyways.
I'm trying to programatically create a custom graph scene component that extends the Group component. Something like this:
<component name="myComponent" extends="Group">
I want to create it after an event occurs. However, when I do the following:
myComponentNode = CreateObject("roSGNode", "myComponent")
myComponent is invalid.
In the same piece of code, I'm able to successfully create a node if I substitute the above with:
myComponentNode = CreateObject("roSGNode", "Group")
Additionally, if I create a node based on myComponent elsewhere in the code, it works perfectly fine. So the question is, is there a situation that would prevent a custom component from being able to create a node?