# Listening to Inputs on UObjects

{% hint style="success" %}
verified: 2025-11-19 version: v39
{% endhint %}

By default, native Unreal allows you to add input events in a basic object's event graph, but provides no blueprint-exposed way of listening to them. To help with this, we have added a `BindToInputs` helper, that will listen to the inputs on this object for the provided player controller.

If you want to stop listening to inputs, you can call `UnbindInputs`. This requires the same player controller, and the InputComponent returned by the corresponding `BindToInputs` call.

<figure><img src="/files/A91JyvYlirEoXK4oJHVA" alt=""><figcaption><p>A basic example showing how to bind and unbind to inputs, both enhanced input and the old input approach.</p></figcaption></figure>

{% hint style="warning" %}
NOTE: This shouldn't be used for Actors or User Widgets. These each have their own way of handling user input (input is bound automatically for widgets, and can be listened to on Actors with the `EnableInput` helper
{% endhint %}


---

# 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://docs.msquared.io/creation/unreal-development/features-and-tutorials/helpers-and-extras/listening-to-inputs-on-uobjects.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.
