Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 369 Bytes

Input.md

File metadata and controls

9 lines (5 loc) · 369 Bytes

Overview

Implemeting platform specific input is very freeform in Godot. Generally, you mostly just need a function for Godot to poll input every frame, and the rest of the implementation is completely up to you.

Most platform implementations of input simply interact with the Input singleton rather than override it.

What MUST be implemented

What is optional