Browse Source

Fix EnumProperty descriptions

Adjust descriptions due to my blatant copy/paste per Hoikas.

Co-authored-by: Adam Johnson <AdamJohnso@gmail.com>
pull/320/head
Patrick Dulebohn 2 years ago committed by GitHub
parent
commit
8cb886be38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      korman/nodes/node_messages.py

4
korman/nodes/node_messages.py

@ -776,9 +776,9 @@ class PlasmaSoundMsgNode(idprops.IDPropObjectMixin, PlasmaMessageWithCallbacksNo
subtype="PERCENTAGE")
event = EnumProperty(name="Callback",
description="Event upon which to callback the Responder",
items=[("kEnd", "End", "When the action ends"),
items=[("kEnd", "End", "When the sound ends"),
("NONE", "(None)", "Don't notify the Responder at all"),
("kStop", "Stop", "When the action is stopped by a message")],
("kStop", "Stop", "When the sound is stopped by a message")],
default="NONE")
def convert_callback_message(self, exporter, so, msg, target, wait):

Loading…
Cancel
Save