> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GameInputTouchShape

> GameInputTouchShape

# GameInputTouchShape

<Warning>**En desuso.** Esta enumeración se quitó en GameInput v1 y no está disponible en la API actual.</Warning>

Define constantes que describen la forma geométrica de la superficie de un sensor táctil.

## Sintaxis

```cpp theme={null}
enum GameInputTouchShape
{
    GameInputTouchShapeUnknown      = -1,
    GameInputTouchShapeNone         = 0,
    GameInputTouchShape1DLinear     = 1,
    GameInputTouchShape1DArc        = 2,
    GameInputTouchShape1DRadial     = 3,
    GameInputTouchShape2DRectangle  = 4,
    GameInputTouchShape2DArbitrary  = 5,
    GameInputTouchShape3DCylinder   = 6,
    GameInputTouchShape3DSphere     = 7,
    GameInputTouchShape3DArbitrary  = 8,
};
```

## Constantes

| Constante                      | Valor | Descripción                      |
| ------------------------------ | ----- | -------------------------------- |
| GameInputTouchShapeUnknown     | -1    | La forma es desconocida.         |
| GameInputTouchShapeNone        | 0     | No hay forma definida.           |
| GameInputTouchShape1DLinear    | 1     | Banda lineal unidimensional.     |
| GameInputTouchShape1DArc       | 2     | Arco unidimensional.             |
| GameInputTouchShape1DRadial    | 3     | Dial radial unidimensional.      |
| GameInputTouchShape2DRectangle | 4     | Panel rectangular bidimensional. |
| GameInputTouchShape2DArbitrary | 5     | Forma arbitraria bidimensional.  |
| GameInputTouchShape3DCylinder  | 6     | Cilindro tridimensional.         |
| GameInputTouchShape3DSphere    | 7     | Esfera tridimensional.           |
| GameInputTouchShape3DArbitrary | 8     | Forma arbitraria tridimensional. |

## Historial de versiones

| Versión | Cambios       |
| ------- | ------------- |
| **v1**  | Se quitó.     |
| **v0**  | Se introdujo. |

## Consulte también

[Miembros de la API de GameInput en desuso](/reference/input/gameinput/deprecated/gameinput_deprecated_members)
[GameInputTouchSensorInfo](/reference/input/gameinput/deprecated/structs/gameinputtouchsensorinfo)
