-
Posts
24,967 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by linuxgurugamer
-
What about a modular arm? I think you would need a base, and end, and two different size extensions. That way it would be available in 1.3.1, and no need for another dll @AlphaMensae Here's a picture of what I'm trying to do, figured you'd appreciate it. This monster is about 22 ktons:
- 2,299 replies
-
- launch pad
- saturn
-
(and 3 more)
Tagged with:
-
@AlphaMensae Not sure how doable this is, but would it be possible to make an arm that is stretchable? meaning, that I have something I want to do, but none of the arms are long enough.
- 2,299 replies
-
- launch pad
- saturn
-
(and 3 more)
Tagged with:
-
@AlphaMensae Here is a config for the SpaceY 7m E4 engine: @PART[SYengine7mE4] { node_stack_bottom02 = 0.0, -28, 0.0, 0.0, -1.0, 0.0, 5 bulkheadProfiles = size1, size2, size5 } Not fully tested, but seemed to work so far
- 2,299 replies
-
- launch pad
- saturn
-
(and 3 more)
Tagged with:
-
[1.12.x] NASA CountDown Clock Updated
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
Looking for a GTAVailable, it's not public I'll get it all fixed New release, 1.3.6.7: Fixed missing Gravity Turn toggle -
@pellinor I noticed that all the included scale types which have scaleFactors corresponding to stock sizes don't have the 1.875 size. Are you planning on adding that anytime soon?
-
@Snark I found an incompatibility with this mod and the following: Color Coded Cans (CCC) FuelTanksPlus (FTP) It seems that this mod replaces the model for the tanks, and so does CCC, but only when FTP is installed. The end result is that the attachment points are far outside the tanks in this case. I would suggest that your changes to the stock tanks be disabled if both CCC and FTP are installed, since CCC also replaces the textures, and has more variants. The following takes care of this issue (repease on all 4 of the configs): @PART[fuelTankSmallFlat]:NEEDS[!ColorCodedCans&!FuelTanksPlus] The alternative would be to delete the file: ColorCodedCanisters-MM-FTP-size1, in order to let this mod take precedence, but then there would be no need for CCC What I don't know is about the models, is there an advantage to using the models included with this mod (ie: PortJet's revamped parts)?
-
[1.9.x] Hangar Extender Extended
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
Some more info is needed. Log file, please, see my sig for a link about it It should -
[1.12.x] NASA CountDown Clock Updated
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 1.3.6.6: Fixed null refs at startup/initialization -
[1.12.x] Part Commander Continued
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 1.1.5 Added Alternate skin settings Added ability to change font size -
[1.11.2] B9PartSwitch v2.18.0 (March 17)
linuxgurugamer replied to blowfish's topic in KSP1 Mod Releases
I based my remarks on what I had seen in CKAN, and it was a sleepless night, so I goofed, sorry. Re. AVC, I am the current maintainer now :-) -
totm nov 2023 SpaceX Discussion Thread
linuxgurugamer replied to Skylon's topic in Science & Spaceflight
What's the success rate of Falcon 9 (ignore Falcon 1, that was a different rocket) -
totm nov 2023 SpaceX Discussion Thread
linuxgurugamer replied to Skylon's topic in Science & Spaceflight
I guess they don't bother to remember history. How many rockets blew up, crashed or exploded in the early days of spaceflight? I believe that SpaceX has had a total of 6 failures, and currently has more than 50% of the launch market. 30 launches scheduled for this year, I believe -
But now you're converting floats to integers, and then comparing those. Depending on how exact you want to be, this is wrong by almost any definition I can think of What's interesting is that according to Unity, vector3 comparisons using the == IS using an "approximate" method, see here: https://docs.unity3d.com/ScriptReference/Vector3-operator_eq.html Regarding the output, I suspect that if you replaced the internal output code with outputting the individual values yourself, you might see the differences. I'd use code something like the following: Vector3 v1, v2; ... if ( (Math.Abs(v1.x - v2.x) < 0.01) && (Math.Abs(v1.y - v2.y) < 0.01) && (Math.Abs(v1.z - v2.z) < 0.01) ) { ... } or if (Math.Abs(v1.magnitude - v2.magnitude) < 0.01) { ... }
-
[1.12.x] Part Commander Continued
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
Which exactly are you looking to have increased? -
[1.11.2] B9PartSwitch v2.18.0 (March 17)
linuxgurugamer replied to blowfish's topic in KSP1 Mod Releases
That's not the way the .version is supposed to be used. There should be a single one, which can be checked to see if there are any newer updates. I understand what you are doing, but as mentioned by @Wyzard, if you aren't maintaining older versions, I fail to see any reason for this. It means that for your mods, the .version is useless for checking for newer updates, as in the case where KSP gets updated in place. It essentially negates the reason that AVC checks the web for the latest version. Now, if you were maintaining and releasing updates for older versions, then there would be some justification for it. Unfortunately, not just B9, but B9 Animation Modules and the SimpleAdjustableFairings as well