Minor improvements to usability

This commit is contained in:
Wojtek Figat
2024-03-08 14:39:18 +01:00
parent 584c073df1
commit d390938fb6
5 changed files with 45 additions and 34 deletions

View File

@@ -904,7 +904,7 @@ namespace FlaxEditor.GUI
var k = new Keyframe
{
Time = keyframesPos.X,
Value = DefaultValue,
Value = Utilities.Utils.CloneValue(DefaultValue),
};
OnEditingStart();
AddKeyframe(k);

View File

@@ -204,7 +204,7 @@ namespace FlaxEditor.GUI.Timeline.Tracks
b.TooltipText = Utilities.Utils.GetTooltip(actorNode.Actor);
}
}
menu.AddButton("Select...", OnClickedSelect).TooltipText = "Opens actor picker dialog to select the target actor for this track";
menu.AddButton("Retarget...", OnClickedSelect).TooltipText = "Opens actor picker dialog to select the target actor for this track";
}
/// <summary>