2024-01-01 01:58:29 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2024-10-07 18:04:14 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2024-01-01 01:58:29 +08:00
|
|
|
using osu.Game.Rulesets.Edit;
|
2024-09-23 22:36:11 +08:00
|
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints;
|
2024-01-01 01:58:29 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
|
|
{
|
2024-09-23 22:36:11 +08:00
|
|
|
public partial class GridFromPointsTool : CompositionTool
|
2024-01-01 01:58:29 +08:00
|
|
|
{
|
2024-09-23 22:36:11 +08:00
|
|
|
public GridFromPointsTool()
|
2024-10-08 01:09:09 +08:00
|
|
|
: base("Grid")
|
2024-01-01 01:58:29 +08:00
|
|
|
{
|
2024-10-07 18:04:14 +08:00
|
|
|
TooltipText = """
|
|
|
|
Left click to set the origin.
|
|
|
|
Left click again to set the spacing and rotation.
|
2024-10-08 16:51:35 +08:00
|
|
|
Right click to reset to default.
|
2024-10-07 18:04:14 +08:00
|
|
|
Click and drag to set the origin, spacing and rotation.
|
|
|
|
""";
|
2024-01-01 01:58:29 +08:00
|
|
|
}
|
|
|
|
|
2024-10-08 01:09:21 +08:00
|
|
|
public override Drawable CreateIcon() => new SpriteIcon { Icon = FontAwesome.Solid.DraftingCompass };
|
2024-10-07 18:04:14 +08:00
|
|
|
|
2024-09-23 22:36:11 +08:00
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => new GridPlacementBlueprint();
|
2024-01-01 01:58:29 +08:00
|
|
|
}
|
|
|
|
}
|