aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AgentUpdateArgs.cs
diff options
context:
space:
mode:
authordahlia2010-01-14 02:16:40 -0800
committerdahlia2010-01-14 02:16:40 -0800
commit88d2adc93cd91baa9b2c9899ebe727672c914ec3 (patch)
tree8e9ad1fe64895640e4fc9fa8de4efa277cc00cac /OpenSim/Framework/AgentUpdateArgs.cs
parentMake the auth module silent when there is no configuration for it (diff)
downloadopensim-SC_OLD-88d2adc93cd91baa9b2c9899ebe727672c914ec3.zip
opensim-SC_OLD-88d2adc93cd91baa9b2c9899ebe727672c914ec3.tar.gz
opensim-SC_OLD-88d2adc93cd91baa9b2c9899ebe727672c914ec3.tar.bz2
opensim-SC_OLD-88d2adc93cd91baa9b2c9899ebe727672c914ec3.tar.xz
add an agent position field to AgentUpdateArgs for use by some non-LL clients
Diffstat (limited to 'OpenSim/Framework/AgentUpdateArgs.cs')
-rw-r--r--OpenSim/Framework/AgentUpdateArgs.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/AgentUpdateArgs.cs b/OpenSim/Framework/AgentUpdateArgs.cs
index 7b9ec68..660bc32 100644
--- a/OpenSim/Framework/AgentUpdateArgs.cs
+++ b/OpenSim/Framework/AgentUpdateArgs.cs
@@ -78,5 +78,13 @@ namespace OpenSim.Framework
78 /// </summary> 78 /// </summary>
79 public UUID SessionID; 79 public UUID SessionID;
80 public byte State; 80 public byte State;
81
82 public Vector3 ClientAgentPosition;
83 public bool UseClientAgentPosition;
84
85 public AgentUpdateArgs()
86 {
87 UseClientAgentPosition = false;
88 }
81 } 89 }
82} 90}