diff options
author | MW | 2008-10-10 16:01:59 +0000 |
---|---|---|
committer | MW | 2008-10-10 16:01:59 +0000 |
commit | 5be74427365c3b712099aba8f8345f5fd92ca2fc (patch) | |
tree | 6bc48aa9326bf1ff4c004d6455ad23fa4a83ca4a /OpenSim/Framework/SurfaceTouchEventArgs.cs | |
parent | very tiny change (diff) | |
download | opensim-SC_OLD-5be74427365c3b712099aba8f8345f5fd92ca2fc.zip opensim-SC_OLD-5be74427365c3b712099aba8f8345f5fd92ca2fc.tar.gz opensim-SC_OLD-5be74427365c3b712099aba8f8345f5fd92ca2fc.tar.bz2 opensim-SC_OLD-5be74427365c3b712099aba8f8345f5fd92ca2fc.tar.xz |
added a list of SurfaceTouchEventArgs to the IClientAPI.OnGrabUpdate event, for the new surface touch parameters in 1.21 viewers.
TODO: add the touch args to OnGrabObject and OnDeGrabObject.
Diffstat (limited to 'OpenSim/Framework/SurfaceTouchEventArgs.cs')
-rw-r--r-- | OpenSim/Framework/SurfaceTouchEventArgs.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Framework/SurfaceTouchEventArgs.cs b/OpenSim/Framework/SurfaceTouchEventArgs.cs new file mode 100644 index 0000000..f34d8ba --- /dev/null +++ b/OpenSim/Framework/SurfaceTouchEventArgs.cs | |||
@@ -0,0 +1,17 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenMetaverse; | ||
5 | |||
6 | namespace OpenSim.Framework | ||
7 | { | ||
8 | public class SurfaceTouchEventArgs | ||
9 | { | ||
10 | public Vector3 Binormal; | ||
11 | public int FaceIndex; | ||
12 | public Vector3 Normal; | ||
13 | public Vector3 Position; | ||
14 | public Vector3 STCoord; | ||
15 | public Vector3 UVCoord; | ||
16 | } | ||
17 | } | ||