Space Engineers

Space Engineers

评价数不足
[Modular] Auto-Doors
   
奖励
收藏
已收藏
取消收藏
文件大小
发表于
3.497 KB
2019 年 9 月 18 日 上午 2:16
1 项改动说明 ( 查看 )

订阅以下载
[Modular] Auto-Doors

描述
En
Declare "AutoDoors class_name = new AutoDoors();".

Examples:
1) With the output of debugging information in the programmable block -> Echo($"{class_name.Run(this)}");
2) Simple start -> class_name.Run(this);

Optionally add parameters:
1) time_out - delay time;
2) mark - name of marker (added to the name of the door);

The default delay is 3 seconds. and the label is "[auto]".

If you need to add only a label -> class_name.Run(this, mark: "your_mark_name");

****************************************************************************************************
Ru
Перевод: Раскомментировать строки с русским переводом и закомментировать с английским.

Объявить "AutoDoors имя_класса = new AutoDoors();".

Примеры:
1) С выводом отладочной информации в программируемом блоке -> Echo($"{имя_класса.Run(this)}");
2) Простой запуск -> имя_класса.Run(this);

При желании приправить параметрами:
1) time_out - время задержки;
2) mark - имя своей метки (добавляемой к имени двери);

По умолчанию задержка 3 сек. и метка "[auto]".

Если нужно добавить только метку -> имя_класса.Run(this, mark: "имя_своей_метки");
2 条留言
Lexx Lord  [作者] 2019 年 11 月 23 日 上午 7:34 
In the "Main" section, replace everything with "AD.Run (this);". On the Name of each door add "[auto]".
Sir Luis 2019 年 11 月 22 日 下午 10:15 
if i just want doors to close by themselves with the script whats the exac thing i type?