You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per custom_nodes/example_node.py.example, IS_CHANGED should be defined as a class method:
Class methods
-------------
...
IS_CHANGED:
optional method to control when the node is re executed.
...
#@classmethod
#def IS_CHANGED(s, image, string_field, int_field, float_field, print_to_screen):
# return ""
Fixing this by changing the signature in e.g. system_notification.py or play_sound.py to
When attempting to use the SystemNotification or PlaySound node, users will see a warning in the log:
Per
custom_nodes/example_node.py.example
, IS_CHANGED should be defined as a class method:Fixing this by changing the signature in e.g. system_notification.py or play_sound.py to
will fix this error, and also restore the functionality of the sound / notification system. (Just make sure you don't have notifications snoozed...)
I hope you will excuse me not filing a PR on this, but it is such a small change it did not seem worthwhile.
#439 - I believe this will also resolve your issue.
The text was updated successfully, but these errors were encountered: