安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
Can I get your permission to include this mod in our server's modpack.
Check out this mod for programmable text panels.
https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=1847883564
The multiscreen setup works and doesn't, depending on what you are trying to do.
Could you make something for the timer blocks too so they fit in with those?
BUT
Would you take a request? I would love to have the current selection of LCDs in the game be available as programming blocks.
Other then that, this is a reskin of the Programmable Block in the vanilla version. You can do anything you can with the Programmable Block.
Like a big databank full of computers.
actually curious as to what you
can do with this. How does it
work?
the Death Star secret plans?
public Program()
{
Runtime.UpdateFrequency = UpdateFrequency.Update10; // Update every 10 ticks
// Some other code
}
Runtime.UpdateFrequency = UpdateFrequency.Update1;
You add that line to the Program section and you have a script that runs every tick.
For 10 ticks you'll add
Runtime.UpdateFrequency = UpdateFrequency.Update10;
For 100 ticks you'll add
Runtime.UpdateFrequency = UpdateFrequency.Update100;
So it's very easy to take a script that does not run by itself and force it to do so with that line of code. That's why the timer functionality in the pb block isn't needed anymore.
VERY happy to this updated and working again!