1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-09-22 05:47:44 +03:00

Update Logic Draw Hints (#4734)

Wrapped up some previous logic hints, too.
This commit is contained in:
彭瑞暄 2021-02-20 07:32:32 +08:00 committed by GitHub
parent 6de53343a4
commit 57a833c2fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -957,6 +957,8 @@ rules.blockdamagemultiplier = 建築物傷害倍數
rules.unitbuildspeedmultiplier = 單位建設速度倍數
rules.unithealthmultiplier = 單位生命值倍數
rules.unitdamagemultiplier = 單位傷害倍數
rules.unitcapvariable = 核心限制單位上限
rules.unitcap = 基礎單位上限
rules.enemycorebuildradius = 敵人核心禁止建設半徑︰[lightgray](格)
rules.wavespacing = 波次間距︰[lightgray](秒)
rules.buildcostmultiplier = 建設成本倍數
@ -1539,7 +1541,19 @@ lenum.shoot = 對該位置開火
lenum.shootp = 對指定單位/建築開火,具自瞄功能
lenum.configure = 建築設定,如分類器、兵器工廠
lenum.enabled = 確認該建築是否啟用
lenum.color = 設定照明燈的顏色
laacess.color = 設定照明燈的顏色
graphicstype.clear = 重製版面為指定顏色
graphicstype.color = 為接下來的圖畫指令設定顏色
graphicstype.stroke = 為接下來的圖畫指令設定直線寬度
graphicstype.line = 畫一直線
graphicstype.rect = 畫實心長方形
graphicstype.linerect = 畫空心長方形
graphicstype.poly = 畫實心正多邊形
graphicstype.linepoly = 畫空心正多邊形
graphicstype.triangle = 畫實心三角形
graphicstype.image = 繪製內建圖畫\n如: [accent]@router[]或[accent]@dagger[].
lenum.always = 永遠 true (直接跳).
lenum.idiv = 整數除法,無條件捨去.
@ -1556,17 +1570,17 @@ lenum.and = Bitwise AND.
lenum.not = Bitwise flip.
lenum.xor = Bitwise XOR.
lenum.min = Minimum of two numbers.
lenum.max = Maximum of two numbers.
lenum.angle = Angle of vector in degrees.
lenum.len = Length of vector.
lenum.sin = Sine, in degrees.
lenum.cos = Cosine, in degrees.
lenum.tan = Tangent, in degrees.
lenum.min = 兩數取小
lenum.max = 兩數取大
lenum.angle = 向量與x軸夾角
lenum.len = 向量長度
lenum.sin = 度數Sin值
lenum.cos = 度數Cos值
lenum.tan = 度數Tan值
#not a typo, look up 'range notation'
lenum.rand = Random number in range [0, value).
lenum.log = Natural logarithm (ln).
lenum.log10 = Base 10 logarithm.
lenum.rand = 產生隨機數值: [0, 值).
lenum.log = 自然對數(ln、log_e).
lenum.log10 = 高中數學.
lenum.noise = 2D simplex noise.
lenum.abs = 取絕對值
lenum.sqrt = 開根號