Space Engineers

Space Engineers

Not enough ratings
[Modular] Auto-Doors
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
3.497 KB
18 Sep, 2019 @ 2:16am
1 Change Note ( view )

Subscribe to download
[Modular] Auto-Doors

Description
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 Comments
Lexx Lord  [author] 23 Nov, 2019 @ 7:34am 
In the "Main" section, replace everything with "AD.Run (this);". On the Name of each door add "[auto]".
Sir Luis 22 Nov, 2019 @ 10:15pm 
if i just want doors to close by themselves with the script whats the exac thing i type?