> ## 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.

# GameInputTouchState

> GameInputTouchState

# GameInputTouchState

<Warning>**사용되지 않음.** 이 구조체는 GameInput v1에서 제거되었으며 현재 API에서 사용할 수 없습니다.</Warning>

입력 판독값에서 단일 터치 접촉 지점의 상태를 설명합니다.

## 구문

```cpp theme={null}
typedef struct GameInputTouchState {
    uint64_t touchId;
    uint32_t sensorIndex;
    float positionX;
    float positionY;
    float pressure;
    float proximity;
    float contactRectTop;
    float contactRectLeft;
    float contactRectRight;
    float contactRectBottom;
} GameInputTouchState;
```

## 멤버

**touchId**\
형식: uint64\_t

여러 판독값에 걸쳐 추적되는 이 터치 접촉의 고유 식별자입니다.

**sensorIndex**\
형식: uint32\_t

이 접촉을 생성한 터치 센서의 인덱스입니다.

**positionX, positionY**\
형식: float

\[0.0, 1.0] 범위로 정규화된 센서 표면상 접촉의 위치입니다.

**pressure**\
형식: float

\[0.0, 1.0] 범위로 정규화된 접촉의 압력입니다.

**proximity**\
형식: float

\[0.0, 1.0] 범위로 정규화된 접촉의 근접도입니다.

**contactRectTop, contactRectLeft, contactRectRight, contactRectBottom**\
형식: float

정규화된 좌표로 표현된, 센서 표면상 접촉 영역의 경계 사각형입니다.

## 설명

이 구조체는 사용되지 않는 [IGameInputReading::GetTouchState](/reference/input/gameinput/deprecated/interfaces/igameinputreading/methods/igameinputreading_gettouchstate) 메서드를 통해 읽었습니다. 둘 다 v1에서 제거되었습니다.

## 버전 기록

| 버전     | 변경 사항    |
| ------ | -------- |
| **v1** | 제거되었습니다. |
| **v0** | 도입되었습니다. |

## 함께 보기

[사용되지 않는 GameInput API 멤버](/reference/input/gameinput/deprecated/gameinput_deprecated_members)
[IGameInputReading::GetTouchState](/reference/input/gameinput/deprecated/interfaces/igameinputreading/methods/igameinputreading_gettouchstate)
[IGameInputReading::GetTouchCount](/reference/input/gameinput/deprecated/interfaces/igameinputreading/methods/igameinputreading_gettouchcount)
[GameInputTouchSensorInfo](/reference/input/gameinput/deprecated/structs/gameinputtouchsensorinfo)


## Related topics

- [IGameInputReading::GetTouchState](/ko/reference/input/gameinput/deprecated/interfaces/igameinputreading/methods/igameinputreading_gettouchstate.md)
- [GameInputTouchSensorInfo](/ko/reference/input/gameinput/deprecated/structs/gameinputtouchsensorinfo.md)
- [IGameInputReading::GetTouchCount](/ko/reference/input/gameinput/deprecated/interfaces/igameinputreading/methods/igameinputreading_gettouchcount.md)
- [GameInput](/ko/reference/input/gameinput/gameinput_members.md)
- [게임 스트리밍 사용자 지정 해상도 모범 사례](/ko/build/core-features/common/game-streaming/game-streaming-custom-resolution-best-practices.md)
