在1.8的计分板系统中
计分板分为三个包
在原基础上新添加了 objective,entry 这两个包
这几个包的延迟高于0.1毫秒, 所以造成了 计分板会闪的现象
解决方法也很简单
把三个包集合成一个包 这次搬运的插件 就是为此而搬运的
作者在上面的截图中 发出了对比
在方法1中 是用bukkitapi的实现的计分板 足足15行代码
而方法2中 是利用此插件实现的计分板 轻巧易用
以下作者原话:
- The unranked, perfect to write some texts and infos that aren't only integers. (Like an in-game ratio in our example)
- The ranked, it is just a normal scoreboard, you need to specify a title (String) and an HashMap of String and Integer to give the score.
翻译:
完美的无闪计分版,完美的输出texts和信息,(后面翻译有限)
(个人理解)对于计分板排行 是由 15 至 1 所以只能显示15行
关于使用方法
- ScoreboardUtil.unrankedSidebarDisplay(p, new String[]
- {
- "标题",
- "15",
- "依次递减到1"
- });