mirror of
https://github.com/Anuken/Mindustry.git
synced 2024-11-11 03:31:19 +03:00
Update Logic Draw Hints (#4734)
Wrapped up some previous logic hints, too.
This commit is contained in:
parent
6de53343a4
commit
57a833c2fb
@ -957,6 +957,8 @@ rules.blockdamagemultiplier = 建築物傷害倍數
|
|||||||
rules.unitbuildspeedmultiplier = 單位建設速度倍數
|
rules.unitbuildspeedmultiplier = 單位建設速度倍數
|
||||||
rules.unithealthmultiplier = 單位生命值倍數
|
rules.unithealthmultiplier = 單位生命值倍數
|
||||||
rules.unitdamagemultiplier = 單位傷害倍數
|
rules.unitdamagemultiplier = 單位傷害倍數
|
||||||
|
rules.unitcapvariable = 核心限制單位上限
|
||||||
|
rules.unitcap = 基礎單位上限
|
||||||
rules.enemycorebuildradius = 敵人核心禁止建設半徑︰[lightgray](格)
|
rules.enemycorebuildradius = 敵人核心禁止建設半徑︰[lightgray](格)
|
||||||
rules.wavespacing = 波次間距︰[lightgray](秒)
|
rules.wavespacing = 波次間距︰[lightgray](秒)
|
||||||
rules.buildcostmultiplier = 建設成本倍數
|
rules.buildcostmultiplier = 建設成本倍數
|
||||||
@ -1539,7 +1541,19 @@ lenum.shoot = 對該位置開火
|
|||||||
lenum.shootp = 對指定單位/建築開火,具自瞄功能
|
lenum.shootp = 對指定單位/建築開火,具自瞄功能
|
||||||
lenum.configure = 建築設定,如分類器、兵器工廠
|
lenum.configure = 建築設定,如分類器、兵器工廠
|
||||||
lenum.enabled = 確認該建築是否啟用
|
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.always = 永遠 true (直接跳).
|
||||||
lenum.idiv = 整數除法,無條件捨去.
|
lenum.idiv = 整數除法,無條件捨去.
|
||||||
@ -1556,17 +1570,17 @@ lenum.and = Bitwise AND.
|
|||||||
lenum.not = Bitwise flip.
|
lenum.not = Bitwise flip.
|
||||||
lenum.xor = Bitwise XOR.
|
lenum.xor = Bitwise XOR.
|
||||||
|
|
||||||
lenum.min = Minimum of two numbers.
|
lenum.min = 兩數取小
|
||||||
lenum.max = Maximum of two numbers.
|
lenum.max = 兩數取大
|
||||||
lenum.angle = Angle of vector in degrees.
|
lenum.angle = 向量與x軸夾角
|
||||||
lenum.len = Length of vector.
|
lenum.len = 向量長度
|
||||||
lenum.sin = Sine, in degrees.
|
lenum.sin = 度數Sin值
|
||||||
lenum.cos = Cosine, in degrees.
|
lenum.cos = 度數Cos值
|
||||||
lenum.tan = Tangent, in degrees.
|
lenum.tan = 度數Tan值
|
||||||
#not a typo, look up 'range notation'
|
#not a typo, look up 'range notation'
|
||||||
lenum.rand = Random number in range [0, value).
|
lenum.rand = 產生隨機數值: [0, 值).
|
||||||
lenum.log = Natural logarithm (ln).
|
lenum.log = 自然對數(ln、log_e).
|
||||||
lenum.log10 = Base 10 logarithm.
|
lenum.log10 = 高中數學.
|
||||||
lenum.noise = 2D simplex noise.
|
lenum.noise = 2D simplex noise.
|
||||||
lenum.abs = 取絕對值
|
lenum.abs = 取絕對值
|
||||||
lenum.sqrt = 開根號
|
lenum.sqrt = 開根號
|
||||||
|
Loading…
Reference in New Issue
Block a user