Space Engineers

Space Engineers

Khjin's Navigation Autopilot Script
Stubkan 27 Feb, 2021 @ 10:54am
Changes required to make LCDs work again
To fix LCD displays
change
Line 1026 or so

if(panel.GetPublicText() != _lcdLog) { panel.WritePublicText(_lcdLog); panel.ShowPublicTextOnScreen(); }
to this
if(panel.GetText() != _lcdLog) { panel.WriteText(_lcdLog); panel.ContentType = ContentType.TEXT_AND_IMAGE; }
Last edited by Stubkan; 27 Feb, 2021 @ 12:23pm