Space Engineers

Space Engineers

Blarg's Fancy Flight Info
28개 중 11~20개 표시 중
< 1  2  3 >
업데이트: 2017년 12월 7일 @ 오후 2시 47분

I have implemented a transparent pixel in my Dot matrix font. This allows you to use any background color without it looking weird. Let's hope Keen adds it as well.

업데이트: 2017년 12월 7일 @ 오후 2시 35분

Huge performance upgrade.

I mean, really really huge.

Panels no longer print all pixels. They skip all background pixels after the last non-background pixel.
It no longer uses the pixels as background color, so matching something to hide elements is harder. This means about 60% less data for a regular panel.

It no longer updates panels if there's no new data. To achieve this I've had to restrict all data to 2 decimals, as the fluctuation below that made every panel update anyway. I don't think you'll miss those decimals. That precision isn't that useful. I don't have statistics for how much less data this means, but before it would send the panel 10 times per second. Now a it might not send anything at all.

And last but not least. You can no longer have too many LCDs. Instead of reaching a the complexity limit at about 7, and crashing, the script now throttles down and the update frequency lowers. You can see when this happens on the "Overload" value in the programmable block. If it's over 0%, it's throttling down.

업데이트: 2017년 11월 18일 @ 오후 4시 51분

Prevented edge case where user error could cause the script to run twice every tick. (By using a timer in a special way).

업데이트: 2017년 11월 18일 @ 오후 4시 13분

Removed the need for a Timer block.

업데이트: 2017년 11월 10일 @ 오전 1시 53분

Added the cargo-mass data point.

업데이트: 2017년 8월 16일 @ 오후 12시 10분

Removed the case-sensitiveness from named colors (and text aligns).

업데이트: 2017년 7월 21일 @ 오후 4시 30분

Better fix for the previous patch.

업데이트: 2017년 7월 21일 @ 오후 3시 49분

Patch fixing the script breaking problem Major Update 1.182.0 introduced.

업데이트: 2017년 4월 21일 @ 오후 7시 27분

Renamed the Height data to Ruler. Height above ground/object was the intention for the feature, but I felt like the name was limiting.

업데이트: 2017년 4월 21일 @ 오후 7시 10분

Added the data point Height (edit: renamed to ruler). It uses a camera with raycast to measure the distance to anything in front of it. Made it because altitude-land only works on planets. Now you can deploy landing gears automatically when landing on grids as well as planets. It is however limited to 200m, which is a compromise. I prefer responsive update to long range.
If you want to measure long distances, my Fancy Ruler script is a better choice.

Also created a minifier for the script since this update brought it above the 100k character limit. Down to ~85k now.