4
0

feat: Add controller B button for back action

This commit is contained in:
2025-12-05 01:32:45 +01:00
parent e9e0ef9da2
commit b579692d42

View File

@@ -287,7 +287,7 @@ function Input.action_pressed()
end
function Input.back_pressed()
return keyp(51) -- Backspace key
return keyp(51) or btnp(5) -- Backspace key or B button
end
function Input.up()