mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-06-10 13:47:12 +08:00
refactor(MathTool): 重命名随机数相关方法以提高可读性
将 randv2_range 重命名为 randomVector2In,randc_from 重命名为 randomChoiceFrom,randc_from_weights 重命名为 randChoiceWeightsFrom,并新增 randomRingPoint 方法
This commit is contained in:
@@ -17,5 +17,5 @@ static func distanceAction(entity: EntityBase, target: EntityBase, minDistance:
|
||||
if minDistance <= distance and distance <= maxDistance:
|
||||
action.call()
|
||||
static func weightAttack(entity: EntityBase, indexes: Array[int], weight: Array[int], chargeUp: Callable):
|
||||
var method = MathTool.randc_from_weights(indexes, weight)
|
||||
var method = MathTool.randChoiceWeightsFrom(indexes, weight)
|
||||
entity.tryAttack(method, chargeUp.call(method))
|
||||
|
||||
Reference in New Issue
Block a user