C#开发的OpenRA游戏之属性SelectionDecorations(14)

C#开发的OpenRA游戏之属性SelectionDecorations(14)

前面分析选择类时,还有一个功能,就是把选中物品的状态和生命值显示出来。

C#开发的OpenRA游戏之属性SelectionDecorations(14)_第1张图片

它是通过下面的函数来实现:

protected override IEnumerable RenderSelectionBars(Actor self, WorldRenderer wr, bool displayHealth, bool displayExtra)

这个函数后面有两个参数,displayHealth是判断是否显示生命值,displayExtra是判断是否显示额外状态。

{

    // Do

你可能感兴趣的:(C#入门到精通,c#,游戏,开发语言)