# Can't Look Around

## Reason

This issue is often related to the issues with receiving or processing player input and applying it to the character rotation. As there might be multiple possible sources of the problem, this page will provide solutios to the most common cases.

## Solution 1

<figure><img src="/files/484mMWw0HySeLcpBsxcp" alt="" width="382"><figcaption><p>Input Config asset.</p></figcaption></figure>

Make sure to add these two Vector4 properties to the **Input Config**: **MouseInput** and **MouseDeltaInput**. These properties are used by the [Look Layer](/scriptable-animation-system/fundamentals/animator-layers/look-layer.md), it is also crucial to check if they are properly specified in the animator layer.

## Solution 2

It is possible that the player input is properly processed by the system, but scaled down by the sensitivity value. To fix this make sure to add a float input property to the config:

<figure><img src="/files/RiR1djAbCpfg1Uen3XhY" alt="" width="367"><figcaption></figcaption></figure>

## Solution 3

The last solution supposes that the player input is not processed at all by the player controller. This is likely to happen if the framework is used with custom controllers, and not with the demo scripts.

The input is usually updated in the controller component:

```csharp
private UserInputController _userInput;

private void Update()
{
    _userInput.SetValue(FPSANames.MouseDeltaInput, new Vector4(deltaMouseX, deltaMouseY));
    _userInput.SetValue(FPSANames.MouseInput, new Vector4(_playerInput.x, _playerInput.y));
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kinemation.gitbook.io/scriptable-animation-system/troubleshooting/cant-look-around.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
