@@ -16,7 +16,7 @@ Creating Nodes
1616
1717 class MyNode (BaseNode ):
1818
19- __identifier__ = ' com.chantasticvfx '
19+ __identifier__ = ' io.github.jchanvfx '
2020 NODE_NAME = ' my node'
2121
2222 def __init__ (self ):
@@ -34,8 +34,8 @@ Creating Nodes
3434 node_graph.widget.show()
3535
3636 # here we create a couple nodes in the node graph.
37- node_a = node_graph.create_node(' com.chantasticvfx .MyNode' , name = ' node a' )
38- node_b = node_graph.create_node(' com.chantasticvfx .MyNode' , name = ' node b' , pos = [300 , 100 ])
37+ node_a = node_graph.create_node(' io.github.jchanvfx .MyNode' , name = ' node a' )
38+ node_b = node_graph.create_node(' io.github.jchanvfx .MyNode' , name = ' node b' , pos = [300 , 100 ])
3939
4040 app.exec_()
4141
@@ -53,7 +53,7 @@ example to simply embed a ``QComboBox`` widget when reimplementing the ``BaseNod
5353
5454 class MyListNode (BaseNode ):
5555
56- __identifier__ = ' com.chantasticvfx '
56+ __identifier__ = ' io.github.jchanvfx '
5757 NODE_NAME = ' node'
5858
5959 def __init__ (self ):
@@ -174,7 +174,7 @@ Here's an example to embed a custom widget where we subclass the
174174 """
175175
176176 # set a unique node identifier.
177- __identifier__ = ' com.chantasticvfx '
177+ __identifier__ = ' io.github.jchanvfx '
178178
179179 # set the initial default node name.
180180 NODE_NAME = ' my node'
@@ -246,7 +246,7 @@ Here's an example where we subclass the ``NodeGraph`` and connect it up to a
246246
247247 class MyNode (BaseNode ):
248248
249- __identifier__ = ' com.chantasticvfx '
249+ __identifier__ = ' io.github.jchanvfx '
250250 NODE_NAME = ' my node'
251251
252252 def __init__ (self ):
@@ -283,7 +283,7 @@ Here's an example where we subclass the ``NodeGraph`` and connect it up to a
283283 node_graph.register_node(MyNode)
284284 node_graph.widget.show()
285285
286- node_a = node_graph.create_node(' com.chantasticvfx .MyNode' )
286+ node_a = node_graph.create_node(' io.github.jchanvfx .MyNode' )
287287
288288 app.exec_()
289289
0 commit comments