安装 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(越南语)
Українська(乌克兰语)
报告翻译问题








Its totally awesome script by the way.
if [condition] = [value] {
then
{
[do some things]
}
else
{
[do some different things]
}
}
but in your tutorial video for the "if" the formatting is just
if [condition] = [value]
[do some things]
if[condition] = [value] <-- if this is true it will run and skip everything else in the current block
[do some things]
Skip
if[condition] = [value] <-- this will be skiped if the previous [condition] was true
[do some things]
Skip
[do some things] <-- this will be skiped if the any of the [condition] was true
if the contition is true then it will run to the end of the if statement then skip the rest of the code block and return to the code block that refferenced it. Skip is detailed in tutorial 5 along with End.
Bright Light01
Bright Light02
Dim Light01
Dim Light02
Bright Dim Light01
then
"OnOff Light" will toggle All Lights
"OnOff Light01" will toggle Bright Light01, Dim Light01 and Bright Dim Light01
"OnOff Bright Light" will toggle Bright Light01 and Bright Light02
"OnOff Bright" will toggle Bright Light01, Bright Light02 and Bright Dim Light01
"OnOff Dim Light" will toggle Dim Light01 and Dim Light02
In this fashion you can have "groups" with common names, there is no risk that a future update will mess with the groups you make, and it also encourages good naming habits so that you don't end up with a bunch of generically named blocks that can easily be confused.
Okay so how do I read "Room pressure" of an airvent for an "If"? I wrote
If Room pressure of L_Airlock_Vent < 1
but nothing happening
Room pressure of L_Airlock_Vent < 1%
should work, don’t forget to add the unit indicator "%" when using a detailed info check.
Let me know if this does not do it, I am not so sure about this one because it changes to text when it is at 0% so you might run into some problems.
If this is fails, then how do I check for open or closed door? Open, Open_On or Open_Off?
with the limets set to 170 and 190
@Seesaw{
if Current angle of rotor < 180d
Velocity of rotor = 10
if Current angle of rotor > 180d
Velocity of rotor = -10
if Current angle of rotor = 180d
Velocity of rotor = 0
}
this might do it? Play around with this and see what you come up with :)
if Open of door = true
this will check if the door is open