Add TransparentIndex to PaletteFromFile.
This commit is contained in:
@@ -31,6 +31,9 @@ namespace OpenRA.Mods.Common.Traits
|
||||
[Desc("filename to load")]
|
||||
public readonly string Filename = null;
|
||||
|
||||
[Desc("Map listed indices to transparent. Ignores previous color.")]
|
||||
public readonly int[] TransparentIndex = { 0 };
|
||||
|
||||
[Desc("Map listed indices to shadow. Ignores previous color.")]
|
||||
public readonly int[] ShadowIndex = { };
|
||||
|
||||
@@ -45,7 +48,7 @@ namespace OpenRA.Mods.Common.Traits
|
||||
|
||||
ImmutablePalette IProvidesCursorPaletteInfo.ReadPalette(IReadOnlyFileSystem fileSystem)
|
||||
{
|
||||
return new ImmutablePalette(fileSystem.Open(Filename), ShadowIndex);
|
||||
return new ImmutablePalette(fileSystem.Open(Filename), TransparentIndex, ShadowIndex);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user