mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
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.
This commit is contained in:
17
OpenSim/Framework/SurfaceTouchEventArgs.cs
Normal file
17
OpenSim/Framework/SurfaceTouchEventArgs.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.Framework
|
||||
{
|
||||
public class SurfaceTouchEventArgs
|
||||
{
|
||||
public Vector3 Binormal;
|
||||
public int FaceIndex;
|
||||
public Vector3 Normal;
|
||||
public Vector3 Position;
|
||||
public Vector3 STCoord;
|
||||
public Vector3 UVCoord;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user