fix the remaining issues with the ra desert terrain

- extract mix file as it is easier to work with SHPs
- light palette rotator now excludes terrain palette
- water palette rotator now excludes player palette
- use wire fence, sand bags and brick wall from cnc
- draw ressources with player palette (workaround)
- delete all test maps
This commit is contained in:
Matthias Mailänder
2012-10-21 20:26:05 +02:00
parent 6dceb30632
commit c859fb1186
346 changed files with 5 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ namespace OpenRA.Mods.RA
{
class WaterPaletteRotationInfo : ITraitInfo
{
public readonly string[] ExcludePalettes = { "cursor", "chrome", "colorpicker" };
public readonly string[] ExcludePalettes = { "cursor", "chrome", "colorpicker", "player" };
public object Create(ActorInitializer init) { return new WaterPaletteRotation(init.world, this); }
}