Add OMV Enum communication types
This commit is contained in:
parent
13ff5231b0
commit
272909a132
1 changed files with 20 additions and 0 deletions
20
lib/omv/enums.dart
Normal file
20
lib/omv/enums.dart
Normal file
|
@ -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
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue