Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

9️⃣ Allow NineSliceComponent to be modified #89

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/Murder/Components/Graphics/NineSliceComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ namespace Murder.Components
{
[GameAssetId(typeof(SpriteAsset))]
[Tooltip("Sprite which will be drawn as a nine slice.")]
public readonly Guid Sprite = new();
public readonly Guid Sprite { get; init; } = new();

[Tooltip("Final size of the nine slice.")]
public readonly Rectangle Target = Rectangle.Empty;
public readonly Rectangle Target { get; init; } = Rectangle.Empty;

[SpriteBatchReference]
public readonly int TargetSpriteBatch = Batches2D.GameplayBatchId;
public readonly int TargetSpriteBatch { get; init; } = Batches2D.GameplayBatchId;

public readonly int YSortOffset = 0;
public readonly int YSortOffset { get; init; } = 0;

public readonly NineSliceStyle Style = NineSliceStyle.Stretch;
public readonly NineSliceStyle Style { get; init; } = NineSliceStyle.Stretch;

public NineSliceComponent() { }
}
Expand Down
Loading