Damus
Yuri :godot: profile picture
Yuri :godot:
@Yuri :godot:
I'm trying to make sure that my game is playable with:
- mouse only 🖱️
- keyboard only ⌨️
- gamepad only 🎮
- bizarre mix of the above 🥸

Everything interactive is a part of the snapping system, should you choose to use it. This includes gameplay interactions, and now menus too.

Pencil is just for flex 🤭

#gamedev

1
Yuri :godot: · 3w
Everything is driven by a bunch of points and a ranking system (which still needs tuning). Objects in the world space and UI register themselves as "interactors" and per request yield a list of points. And that list is contextual, depending on whether we're in an overlay or grabbing something. htt...