安装 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://psteamcommunity.yuanyoumao.com/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!