Show / Hide Table of Contents

Class RenderCanvasInputDriverImp

Input driver implementation for touch input on Android.

Inheritance
System.Object
RenderCanvasInputDriverImp
Implements
IInputDriverImp
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Fusee.Engine.Imp.Graphics.Android
Assembly: Fusee.Engine.Imp.Graphics.Android.dll
Syntax
public class RenderCanvasInputDriverImp : IInputDriverImp

Constructors

RenderCanvasInputDriverImp(IRenderCanvasImp)

Constructor. Use this in platform specific application projects.

Declaration
public RenderCanvasInputDriverImp(IRenderCanvasImp renderCanvas)
Parameters
Type Name Description
IRenderCanvasImp renderCanvas

The render canvas to provide mouse and keyboard input for.

Properties

Devices

Devices supported by this driver: A touch device.

Declaration
public IEnumerable<IInputDeviceImp> Devices { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<IInputDeviceImp>

DriverDesc

Returns a human readable description of this driver.

Declaration
public string DriverDesc { get; }
Property Value
Type Description
System.String

DriverId

Returns a (hopefully) unique ID for this driver. Uniqueness is granted by using the full class name (including namespace).

Declaration
public string DriverId { get; }
Property Value
Type Description
System.String

Events

DeviceDisconnected

Not supported on this driver. Devices supported here are considered to be connected all the time. You can register handlers but they will never get called.

Declaration
public event EventHandler<DeviceImpDisconnectedArgs> DeviceDisconnected
Event Type
Type Description
System.EventHandler<DeviceImpDisconnectedArgs>

NewDeviceConnected

Not supported on this driver. Devices supported here are considered to be connected all the time. You can register handlers but they will never get called.

Declaration
public event EventHandler<NewDeviceImpConnectedArgs> NewDeviceConnected
Event Type
Type Description
System.EventHandler<NewDeviceImpConnectedArgs>

Implements

IInputDriverImp
Generated by DocFX
GitHub Repo
Back to top