Add undo/redo and navmesh dirtying when using selection rotate shortcut (R key)

#765
This commit is contained in:
Wojtek Figat
2022-10-29 11:50:16 +02:00
parent c41248f402
commit f67d1412de
2 changed files with 8 additions and 7 deletions

View File

@@ -86,7 +86,7 @@ namespace FlaxEditor.Gizmo
/// <summary>
/// Starts the objects transforming (optionally with duplicate).
/// </summary>
protected void StartTransforming()
public void StartTransforming()
{
// Check if can start new action
var count = SelectionCount;
@@ -119,7 +119,7 @@ namespace FlaxEditor.Gizmo
/// <summary>
/// Ends the objects transforming.
/// </summary>
protected void EndTransforming()
public void EndTransforming()
{
// Check if wasn't working at all
if (!_isTransforming)