From 272909a132ab4f04585807810eb3cd5422c33129 Mon Sep 17 00:00:00 2001 From: zontreck Date: Thu, 22 Aug 2024 14:47:06 -0700 Subject: [PATCH] Add OMV Enum communication types --- lib/omv/enums.dart | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/omv/enums.dart diff --git a/lib/omv/enums.dart b/lib/omv/enums.dart new file mode 100644 index 0000000..5cc64d3 --- /dev/null +++ b/lib/omv/enums.dart @@ -0,0 +1,20 @@ +enum CommunicationType { + /// Whispers can be heard up to 10m away + Whisper, + + /// Normal chat can be heard up to 20m away + Say, + + /// Shouts can be heard up to 100m away + Shout, + + /// Indicates the message can only be heard by the object owner within the same simulator + OwnerSay, + + /// The message can be heard anywhere within the same simulator + /// Channel 0 is restricted and cannot be used to broadcast + RegionSay, + + /// The message can be heard anywhere within the same simulator by the designated recipient. + RegionSayTo +}