Key Remapping class

This commit is contained in:
Marco 2025-03-25 18:03:46 +01:00
commit 1ec10b05df
3 changed files with 58 additions and 22 deletions

View file

@ -0,0 +1,15 @@
using Godot;
using System;
using Godot.Collections;
public partial class KeyRemapping : Container
{
[Export] public Dictionary<StringName, StringName> KeysDict { get; private set; } = new();
public override void _Ready()
{
var remap = GetNode("/root/Remap");
//InputEvent.
}
}