zc
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -84,6 +84,16 @@ namespace ArachnaeSwarm
|
|||||||
{
|
{
|
||||||
base.Refuel(amount);
|
base.Refuel(amount);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 调整 Gizmo 排序,让虫蜜 Gizmo 排在活性和进度 Gizmo 之后
|
||||||
|
public override IEnumerable<Gizmo> CompGetGizmosExtra()
|
||||||
|
{
|
||||||
|
foreach (var gizmo in base.CompGetGizmosExtra())
|
||||||
|
{
|
||||||
|
gizmo.Order = -90f; // 活性=-100, 进度=-99/-98, 虫蜜=-90
|
||||||
|
yield return gizmo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public override string CompInspectStringExtra()
|
public override string CompInspectStringExtra()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user