diff options
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/INPCModule.cs')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/INPCModule.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/INPCModule.cs b/OpenSim/Region/Framework/Interfaces/INPCModule.cs index 8f9a13c..a40f150 100644 --- a/OpenSim/Region/Framework/Interfaces/INPCModule.cs +++ b/OpenSim/Region/Framework/Interfaces/INPCModule.cs | |||
@@ -38,7 +38,8 @@ namespace OpenSim.Region.Framework.Interfaces | |||
38 | AllowNotOwned = 0x01, // allow NPCs to be created not Owned | 38 | AllowNotOwned = 0x01, // allow NPCs to be created not Owned |
39 | AllowSenseAsAvatar = 0x02, // allow NPCs to set to be sensed as Avatars | 39 | AllowSenseAsAvatar = 0x02, // allow NPCs to set to be sensed as Avatars |
40 | AllowCloneOtherAvatars = 0x04, // allow NPCs to created cloning a avatar in region | 40 | AllowCloneOtherAvatars = 0x04, // allow NPCs to created cloning a avatar in region |
41 | NoNPCGroup = 0x08 // NPCs will have no group title, otherwise will have "- NPC -" | 41 | NoNPCGroup = 0x08, // NPCs will have no group title, otherwise will have "- NPC -" |
42 | objectGroup = 0x10 // NPC will have host sog groupID | ||
42 | } | 43 | } |
43 | 44 | ||
44 | /// <summary> | 45 | /// <summary> |
@@ -48,12 +49,14 @@ namespace OpenSim.Region.Framework.Interfaces | |||
48 | /// </summary> | 49 | /// </summary> |
49 | public interface INPC | 50 | public interface INPC |
50 | { | 51 | { |
52 | |||
51 | /// <summary> | 53 | /// <summary> |
52 | /// Should this NPC be sensed by LSL sensors as an 'agent' | 54 | /// Should this NPC be sensed by LSL sensors as an 'agent' |
53 | /// (interpreted here to mean a normal user) rather than an OpenSim | 55 | /// (interpreted here to mean a normal user) rather than an OpenSim |
54 | /// specific NPC extension? | 56 | /// specific NPC extension? |
55 | /// </summary> | 57 | /// </summary> |
56 | bool SenseAsAgent { get; } | 58 | bool SenseAsAgent { get; } |
59 | UUID ActiveGroupId { get; set; } | ||
57 | } | 60 | } |
58 | 61 | ||
59 | public interface INPCModule | 62 | public interface INPCModule |