Space Engineers

Space Engineers

평점이 부족합니다.
Projector Block "Needed" Property For Programmable Block Integration
   
어워드
즐겨찾기
즐겨찾기됨
즐겨찾기 해제
Type: Mod
Mod category: Production, Other
파일 크기
게시일
업데이트일
4.332 KB
2023년 8월 19일 오후 7시 09분
2023년 8월 20일 오후 9시 07분
업데이트 노트 3개 (보기)

다운로드 위해 구독하기
Projector Block "Needed" Property For Programmable Block Integration

설명
Adds a "Needed" property to projectors containing a "ComponentID_1:Amount,ComponentID_N:Amount" formatted string that can be given to assemblers to produce the parts needed for the projected blueprint.

Ex:

```
int Index = 0;

foreach (var Pair in Data.Split(','))
{
var Split = Pair.Split(':');

var Name = Split[0];
var Amount = float.Parse(Split[1]);

MyDefinitionId ID;

if (MyDefinitionId.TryParse(Name, out ID))
{
Assembler.InsertQueueItem(Index++, ID, Amount);
}
}
```