diff options
author | dahlia | 2010-01-14 02:16:40 -0800 |
---|---|---|
committer | dahlia | 2010-01-14 02:16:40 -0800 |
commit | 88d2adc93cd91baa9b2c9899ebe727672c914ec3 (patch) | |
tree | 8e9ad1fe64895640e4fc9fa8de4efa277cc00cac /OpenSim | |
parent | Make the auth module silent when there is no configuration for it (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Framework/AgentUpdateArgs.cs | 8 |
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 | } |