ProwlEngine / Prowl

An Open Source C# 3D Game Engine under MIT license, inspired by Unity and featuring a complete editor and built on Silk.NET
MIT License
360 stars 30 forks source link

[Editor] Hotkey/Shortcut system #52

Closed michaelsakharov closed 9 months ago

michaelsakharov commented 9 months ago

Shortcuts like Ctrl+D to duplicate should probably be merged into the existing input system. It might work something like

if (Input.ShortcutPressed("Duplicate"))
{
    // duplicate here
}

But before this, we need Input settings for Projects

michaelsakharov commented 9 months ago

Found this useful list of all the shortcuts Unity has: https://docs.unity3d.com/2018.1/Documentation/uploads/Main/Unity_HotKeys_Win.pdf

I guess we should try and recreate as many of those as possible