|
发表于 2011-7-21 10:06:41
|
显示全部楼层
GenericUnitBase他很上层的一个父类GenericUnitMinimal中定义了通用的状态条颜色,内容如下。
修正一下GenericUnitMinimal就应该可以把所有的Unit一起修正掉了。 <StatusBarFlags index="Shields" value="1"/>
<StatusBarFlags index="Life" value="1"/>
<StatusBarFlags index="Energy" value="1"/>
<StatusBarFlags index="Cargo" value="1"/>
<StatusBarFlags index="Progress" value="1"/>
<StatusBarFlags index="Duration" value="1"/> 是否显示
<StatusColors index="Shields" BackgroundColor="255,0,0,0" EmptyColor="255,80,80,80">
<ColorArray value="255,0,0,255"/>
</StatusColors>
<StatusColors index="Life" BackgroundColor="255,0,0,0" EmptyColor="255,80,80,80">
<ColorArray value="255,208,34,0"/>
<ColorArray value="255,208,34,0"/>
<ColorArray value="255,229,129,0"/>
<ColorArray value="255,229,129,0"/>
<ColorArray value="255,229,221,0"/>
<ColorArray value="255,229,221,0"/>
<ColorArray value="255,22,229,0"/>
<ColorArray value="255,22,229,0"/>
</StatusColors>
<StatusColors index="Energy" BackgroundColor="255,0,0,0" EmptyColor="255,80,80,80">
<ColorArray value="255,150,40,220"/>
</StatusColors>
<StatusColors index="Cargo" BackgroundColor="255,0,0,0" EmptyColor="255,77,60,15">
<ColorArray value="255,255,255,255"/>
</StatusColors>
<StatusColors index="Progress" BackgroundColor="255,0,0,0" EmptyColor="255,80,80,80">
<ColorArray value="255,0,200,200"/>
</StatusColors>
<StatusColors index="Duration" BackgroundColor="255,0,0,0" EmptyColor="255,40,40,40">
<ColorArray value="255,120,120,120"/>
</StatusColors>
各种类型状态条的颜色设定
<BarDistance value="34"/>
<BarWidth value="60"/>
<BarHeight value="7"/>
<BarOffset value="100"/> 状态条大小,位置,偏移等 |
|