Add F key shortcut to show whole curve in editor view

This commit is contained in:
Wojtek Figat
2024-11-30 23:21:23 +01:00
parent 44d96ad100
commit 8ef7f7cb1a

View File

@@ -935,6 +935,11 @@ namespace FlaxEditor.GUI
KeyframesEditorUtils.Paste(this);
return true;
}
else if (options.FocusSelection.Process(this))
{
ShowWholeCurve();
return true;
}
return false;
}