mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-03 20:05:53 +00:00
Key Remapping class
This commit is contained in:
parent
dafdece6e8
commit
1ec10b05df
3 changed files with 58 additions and 22 deletions
15
Scripts/UI/KeyRemapping.cs
Normal file
15
Scripts/UI/KeyRemapping.cs
Normal 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.
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue