mirror of
https://github.com/drewcassidy/KSP-Conformal-Decals.git
synced 2024-09-01 18:23:54 +00:00
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using System;
|
|
using UnityEngine.Events;
|
|
|
|
namespace ConformalDecals.Text {
|
|
public class TextRenderJob {
|
|
public DecalText OldText { get; }
|
|
public DecalText NewText { get; }
|
|
public bool Needed { get; private set; }
|
|
public bool IsStarted { get; private set; }
|
|
public bool IsDone { get; private set; }
|
|
|
|
public readonly TextRenderer.TextRenderEvent onRenderFinished = new TextRenderer.TextRenderEvent();
|
|
|
|
public TextRenderJob(DecalText oldText, DecalText newText, UnityAction<TextRenderOutput> renderFinishedCallback) {
|
|
OldText = oldText;
|
|
NewText = newText ?? throw new ArgumentNullException(nameof(newText));
|
|
Needed = true;
|
|
|
|
if (renderFinishedCallback != null) onRenderFinished.AddListener(renderFinishedCallback);
|
|
}
|
|
|
|
public void Cancel() {
|
|
Needed = false;
|
|
}
|
|
|
|
public void Start() {
|
|
IsStarted = true;
|
|
}
|
|
|
|
public void Finish(TextRenderOutput output) {
|
|
IsDone = true;
|
|
onRenderFinished.Invoke(output);
|
|
}
|
|
}
|
|
} |