-
Posts
4,559 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by blowfish
-
Blame Squad for not making the solar panel code (and a bunch of other things) more modular.
-
[1.8-1.11] Advanced Jet Engine v2.17.0 (June 26)
blowfish replied to blowfish's topic in KSP1 Mod Releases
Unfortunately I have no knowledge of the propeller code. That's more @camlost's territory -
Yes, it appears that a big part of your GameData/Squad folder is missing. I recommend deleting it entirely and having Steam reinstall it. Let's take this to DMs again
-
Truncate everything after the decimal point: https://github.com/blowfishpro/B9-Aerospace/blob/11115f7f92eea61839fc6c6e4138ffa9bf693117/GameData/B9_Aerospace/B9_Aerospace-Globals.cfg#L68 If you wanted to keep 3 decimal places, it's possibly a bit more complicated but I think it can be done since I believe capture groups can be used in the result @cost ^= :(\.\d\d\d)\d+$:$1: (disclaimer, I haven't tested this) Rounding is tough because it involves increment the number in some cases. But you could maybe do it with two patches Absolute value is easy, just remove the leading minus sign @cost ^= :^-:: Note that as far as parts are concerned, entryCost must be an integer whereas cost does not.
-
Indeed, ModuleManager has special handling for certain files like physics. However, I am going to say this should NOT be done for settings. The reason is that settings can be modified dynamically by the game, whereas ModuleManager runs once (plus any database reloads). Now, certainly just accessing those values is a lot less risky than opening up settings to patching, but it could still result in a lot of confusion when someone changes their settings and then doesn't see the expected changes to e.g. the UI in your case. If there's a mod that renders GUI elements but does not take the ui scale into account, I would consider that a bug with that mod and not something ModuleManager should have to mess with.
-
[1.8-1.11] Advanced Jet Engine v2.17.0 (June 26)
blowfish replied to blowfish's topic in KSP1 Mod Releases
Part of the problem is that KSP has a hard-coded flag for whether an atmosphere has oxygen, which is easy to check, but checking for other atmosphere components would be more complicated and would likely require some configuration files to show what, and how much, is available where. -
It didn't. I'm really mostly just using KSP's methods of rendering procedural drag cubes, but I know there ends up being some weirdness when that happens in the flight scene, especially when the part in question is the root part of the vessel. Just to narrow it down, does it still happen even if there's no part switch on the root part (but there is on other parts)?
-
[1.8-1.11] Advanced Jet Engine v2.17.0 (June 26)
blowfish replied to blowfish's topic in KSP1 Mod Releases
I took a look at the code and there is indeed an assumption of the atmosphere containing oxygen. I don't think this would trivial to change ... a lot of the thermodynamics assume that the atmosphere is roughly that of earth's and that it contains oxygen as the oxidizer burnt with onboard fuel. -
[1.8.x] B9 Aerospace | Release 6.6.0 (Feb 5 2020)
blowfish replied to blowfish's topic in KSP1 Mod Releases
I don't think that's intentional. I would certainly think that closed cycle would produce more thrust. This may have been missed in some previous balance pass ... you don't specify the air-breathing thrust directly, it varies based on external pressure and mach number, so it may not have been obvious at the time.- 641 replies
-
- spaceplane
- parts
-
(and 1 more)
Tagged with:
-
The B9PartSwitch errors exceptions are properly rescued and shouldn't affect anything else. There was also an issue with how the error message was displayed previously which is now fixed (it's more helpful now)
-
B9PartSwitch v2.8.0 for KSP 1.7.1 Recompile against KSP 1.7.1 Fix part action window showing removed resources in KSP 1.7.1 Add Russian localization
-
I know there’s an issue with the part action window not refreshing it’s contents. For any other issue, be sure to click out of it and re-open it to be sure what you see is really happening. E: in my testing it looked like this was the only issue
-
Okay. Looks like OPT Reconfig requires CommunityResourcePack but you don't have it installed.
-
Welcome to the forums! This error does indeed indicate that something is very wrong with your install. The log will identify what the issue is, post above mine has instructions on where to find it and what to do with it (same as the how to get support link in my signature) Right I knew that, I was just trying to figure out exactly what functionality you were talking about. Add a Github issue and I'll look into it
-
[1.12.5] Restock - Revamping KSP's art (August 28)
blowfish replied to Nertea's topic in KSP1 Mod Releases
That's not quite correct. FAR doesn't recalculate the vessel's shape every frame. It does so when it detects changes that require re-voxelization (staging/decoupling, animations, etc). It's a very computationally expensive process that may take several frames to complete, but it also runs on background threads so as to minimize the effect on game performance. -
Ah yeah, probably should have caught that looking at your config. Which aspect are you talking about specifically? The ability to assign across the entire vessel?
-
Are there any errors when the part is being compiled or when placing the part? It would be more likely to see them there. Also you don't need to implement a texture switch for the texture the model comes with. That just works (unlike the stock variants module)