Allow mods to display Encyclopedia production info.

This commit is contained in:
Paul Chote
2024-10-27 16:20:19 +00:00
committed by Gustas
parent 497251c0eb
commit f805d67741
3 changed files with 96 additions and 8 deletions

View File

@@ -28,6 +28,12 @@ namespace OpenRA.Mods.Common.Traits
[Desc("Scale the actor preview.")]
public readonly float Scale = 1f;
[Desc("Ignore the Buildable trait when listing information.")]
public readonly bool HideBuildable = false;
[Desc("Specifies a production queue type if the actor can be built from multiple queues.")]
public readonly string BuildableQueue = null;
public override object Create(ActorInitializer init) { return Encyclopedia.Instance; }
}