Space Engineers

Space Engineers

MahInd - Info LCDs (No Pb) - Discontinued
 此主题已被置顶,因此可能具有重要性
mahtrok  [开发者] 2024 年 6 月 18 日 上午 12:46
Suggestions
You got some suggestions for additional features, new screens or changes that might increase useability overall? Post them here, I will think about all of 'em and try to realize those that make sense to me and are realizeable with my limited skills.
< >
正在显示第 1 - 11 条,共 11 条留言
UnExcited 2024 年 6 月 19 日 上午 5:53 
If possible, would you be willing to submit this to the SE Launcher Plugin Loader?

I hope it's possible, if I remember correctly the scripts are only executed client-side.
mahtrok  [开发者] 2024 年 6 月 19 日 上午 6:15 
I have no idea how SE plugins or that loader actually work.

This is my first attempt on actually modding SE besides some smaller block mods.

But as I state at the Workshop Page, reusage and reupload are allowed, so if one has knowledge on how to achieve such thing, be my guest.
UnExcited 2024 年 6 月 20 日 上午 6:06 
To be honest, I have no idea if it's even possible. While the 'scripts' are run client-side, they are not really explored by most modders. I know of only two other mods that are implementing this function, the mod you based yours on and another one that displays a massive power graph.

The biggest downside of Space Engineers is the massive lack of proper and official documentation.

I will take a look on how to possibly add this to SE Launcher, no promises, though. :)
最后由 UnExcited 编辑于; 2024 年 6 月 20 日 上午 6:08
mahtrok  [开发者] 2024 年 6 月 20 日 上午 6:14 
Once I‘m done with the current ToDo list I can take another look as well, but currently I‘m working on bug fixes, mod item support and streamlining the configuration as well as some convinience stuff, while trying to stay backwards compatible and I have some additional screens in mind.
UnExcited 2024 年 6 月 22 日 上午 4:01 
Sounds good, the current ToDo is much more important. :) I am hoping for the jump drive stuff :)
Riskaz 2024 年 8 月 7 日 下午 2:00 
A manual and automatic scroll up and scroll down feature for LCDs. Also if possible an acceleration and estimated stopping time perhaps? The estimated stopping time is a useful feature Automatic LCDs adds but I do like how this mod is client side and is more server friendly
最后由 Riskaz 编辑于; 2024 年 8 月 7 日 下午 2:08
mrudat 2 月 5 日 下午 9:44 
For components, for example, it would be nifty to have a Components Page 1, Components Page 2, etc., for when there are more components than can (readably) fit on one LCD panel.
nicola.testoni 3 月 14 日 下午 3:47 
Would it be possible to add some custom text to the screens? For example, in the new console with buttons it would be really nice to add -manually- the description of the action connected to each button.
mahtrok  [开发者] 3 月 19 日 上午 9:59 
The button overlay text is set under Actions and has nothing to do with the mod or am I on the wrong page of what u‘re asking?
mrudat 5 月 5 日 上午 3:01 
引用自 mrudat
For components, for example, it would be nifty to have a Components Page 1, Components Page 2, etc., for when there are more components than can (readably) fit on one LCD panel.
An update for my use case: You can achieve the equivalent of a page 1, page 2, etc. by excluding all of the components shown on the first LCD from the second one, and so on. It's just fiddly.
Sardaukai 6 月 16 日 上午 9:06 
This is a great mod with a fantastic idea. However, it caused severe performance issues on my Nexus V3 cluster, which has nine servers in total.

The problem is that the logic inside the Run() method executes on the server, not just on the client. Since there is no filter to prevent this, the server also performs the heavy data collection, which overloads it and causes the SIM speed to drop significantly.

Fortunately, this can be easily fixed by adding a check at the start of the method to ensure the code only runs on the client-side:

public override void Run() { // Prevent execution on a dedicated server if (MyAPIGateway.Utilities.IsDedicated) return; // ... The rest of the code will now only run on clients. }
< >
正在显示第 1 - 11 条,共 11 条留言
每页显示数: 1530 50