Fix Gizmo issue
For some reason the cleanup changed TransformGizmo to TransformGizmoBase in a few files.
This commit is contained in:
@@ -44,7 +44,7 @@ namespace FlaxEditor.Viewport
|
||||
/// <summary>
|
||||
/// The transform gizmo.
|
||||
/// </summary>
|
||||
public readonly TransformGizmoBase TransformGizmo;
|
||||
public readonly TransformGizmo TransformGizmo;
|
||||
|
||||
/// <summary>
|
||||
/// The selection outline postFx.
|
||||
@@ -82,7 +82,7 @@ namespace FlaxEditor.Viewport
|
||||
Task.CustomPostFx.Add(EditorPrimitives);
|
||||
|
||||
// Add transformation gizmo
|
||||
TransformGizmo = new TransformGizmoBase(this);
|
||||
TransformGizmo = new TransformGizmo(this);
|
||||
TransformGizmo.ApplyTransformation += ApplyTransform;
|
||||
TransformGizmo.ModeChanged += OnGizmoModeChanged;
|
||||
TransformGizmo.Duplicate += _window.Duplicate;
|
||||
|
||||
Reference in New Issue
Block a user