1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-31 00:11:54 +08:00

refactor(MathTool): 重命名随机数生成方法并优化蘑菇矿挖爪属性

将 randomVector2In 重命名为 sampleInCircle,randomRingPoint 重命名为 sampleInRing,randChoiceWeightsFrom 重命名为 randomChoiceFromWeights,signBeforeStr 重命名为 toSigned
调整蘑菇矿挖爪的攻击力和掉落率,减少基础伤害至0.5,固定掉落率为0.1,优化物品掉落逻辑
This commit is contained in:
2026-01-18 15:31:52 +08:00
parent ac2696a412
commit 1904edd623
13 changed files with 41 additions and 41 deletions
+4 -4
View File
@@ -24,13 +24,13 @@ func _ready():
var formattedValue: String
var dataType = FieldStore.entityMapType[field]
if dataType == FieldStore.DataType.VALUE:
formattedValue = "%s" % (MathTool.signBeforeStr(value) if showSign else str(value))
formattedValue = "%s" % (MathTool.toSigned(value) if showSign else str(value))
elif dataType == FieldStore.DataType.INTEGER:
formattedValue = "%s" % (MathTool.signBeforeStr(int(value)) if showSign else str(int(value)))
formattedValue = "%s" % (MathTool.toSigned(int(value)) if showSign else str(int(value)))
elif dataType == FieldStore.DataType.ANGLE:
formattedValue = "%s°" % (MathTool.signBeforeStr(value) if showSign else str(value))
formattedValue = "%s°" % (MathTool.toSigned(value) if showSign else str(value))
elif dataType == FieldStore.DataType.PERCENT:
formattedValue = (MathTool.signBeforeStr(value * 100) if showSign else str(value * 100)) + "%"
formattedValue = (MathTool.toSigned(value * 100) if showSign else str(value * 100)) + "%"
valueLabel.label_settings = valueLabel.label_settings.duplicate()
valueLabel.text = formattedValue
if maxed: