Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

ClusterInput.AddInput

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function AddInput(name: string, deviceName: string, serverUrl: string, index: int, type: ClusterInputType): bool;
public static bool AddInput(string name, string deviceName, string serverUrl, int index, ClusterInputType type);

Parámetros

name Name of the input entry. This has to be unique.
deviceName Device name registered to VRPN server.
serverUrl URL to the vrpn server.
index Index of the Input entry, refer to vrpn.cfg if unsure.
type Type of the input.

Valor de retorno

bool True if the operation succeed.

Descripción

Add a new VRPN input entry.

The parameters are identical to how you add a input via “Project Setting > Cluster Input”. Input entry added via this method only valid for the lifetime of the application session. The added entry will not persist like those you added via the “Project Setting > Cluster Input”.

no example available in JavaScript
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void AddNewClusterInputEntry () { // Add a new entry named "new_button_1". Which is a mouse connected to VRPN at localhost. ClusterInput.AddInput ( "new_button_1", "mouse_0", "localhost", 0, ClusterInputType.Button); } }