-
Posts
24,927 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by linuxgurugamer
-
Is it really that unplayable? which would you prefer, several small patches, each only fixiing a single thing, and also inadvertently liquiding off mod authors with a plethora of minor releases, or a single larger patch? if the game was unplayable, I would be able to understand your frustration. But it is playable. You have your choice of playing 1.2.2 or 1.3 I'm actually playing both, and have no significant issues beyond what the mods cause
-
and for everyone else, it was a version to make it accessible in their native language. English speakers (of which I am one) aren't the entire world. I still see progress (although I did just open a bug report)
-
I have a config value which goes between 0.025f and 2.0f. Problem is that the CustomFloatParameterUI is still broken from 1.2. @nightingale said it would be fixed in 1.3 in this post: but it hasn't been. The following code in a settings page doesn't work, the value goes in steps from 0 to 1 to 2. I can use the old workaround listed in the above post, but it doesn't look good at all [GameParameters.CustomFloatParameterUI("Speed", minValue = .025f, maxValue = 2f, asPercentage = false, toolTip = "How fast the controls move while pressing the key")] public double Speed = 1f; What I have to do instead is this (again, from the above post): public float Speed = 1f; [GameParameters.CustomFloatParameterUI("Speed", minValue = 25f, maxValue = 200f, toolTip = "How fast the controls move while pressing the key")] public float speed { get { return Speed * 100; } set { Speed = value / 100f; } } but now it looks really bad in the UI, because the speed is shown a a number of 25 to 200, rather than 0.025 to 2 Any comments? I just added this to the bug tracker: http://bugs.kerbalspaceprogram.com/issues/15699 Edit: The "asPercentage" option didn't do anything, I tried it both with and without.I also tried setting the "stepCount", but that didn't seem to do anything either
-
While it may seem like nothing to you, the localization was a huge project. Yes, to someone who speaks english, it may not seem like much, but believe me, from an internal point of view, it is. Why do you think they are not fixing bugs? Every week I read about more bugs begin fixed, QA testing, etc. Yes, the consoles may have been a letdown, but that is only one thing.
-
I know that :-) I was wondering if there was anything I could do to help. I know it's not finished, just was offering to help with any coding or debugging if you needed any
- 5,919 replies
-
- 1
-
- reentry
- omgitsonfire
-
(and 1 more)
Tagged with:
-
Seeing that I would like to use this in my new 1.3 game I am setting up, is there anything I can do to help you get it fully 1.3 ready? Feel free to PM me with any information which would help me help you.
- 5,919 replies
-
- reentry
- omgitsonfire
-
(and 1 more)
Tagged with:
-
What makes you say that?
-
Developing a modular engine mod
linuxgurugamer replied to bananasrawesome's topic in KSP1 Modelling and Texturing Discussion
Interesting idea. I assume you have several categories of parts needed to make an engine? Like, for example, thrust chamber, engine bell, turbo pumps, etc? If so, then you will need to decide how each part affects the final result. Once that is done, then it should be fairly simple to calculate what the final engine can do based on what is attached to the engine root part. But, those interactions can be very complex and subtle -
Increase highlighting glow in VAB / SPH
linuxgurugamer replied to Geonovast's topic in KSP1 Mods Discussions
Try this mod: -
Auto-Autostrut? and other questions.
linuxgurugamer replied to Nightside's topic in KSP1 Gameplay Questions and Tutorials
Are you sure about that? According to the OP, it does a lot, and has been around since before autostrutting was a thing: -
Heavy Piloting Challenge
linuxgurugamer replied to sevenperforce's topic in KSP1 Challenges & Mission ideas
So get it uploaded to KerbalX and put a link into the OP. Until everyone is using the same craft file, you cant say they are identical. Heck, even the placement of the decouplers can have an effect. -
Cut paper with scissors
-
The old bumpy runway used to be good for that. While not the same, you can use KRASH to do a sim from anywhere in the system.
-
[1.12.x] NASA CountDown Clock Updated
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
No -
Heavy Piloting Challenge
linuxgurugamer replied to sevenperforce's topic in KSP1 Challenges & Mission ideas
Then it's not a good challenge, because you run the risk of someone doing something different. For example, saying "smallest probe core" can be interpreted more than one way, or someone can use the wrong part,etc. if you want a challenge to rebuild a ship, then do one for that. But the main point of this challenge is thr piloting skills. Best to eliminate any possible question by providing a craft file so that everyone starts off with identical ships -
[1.8.x] Targetron (continued-bis-wathever) 1.6.3 2019/10/23
linuxgurugamer replied to agises's topic in KSP1 Mod Releases
Generally, when I adopt a mod, I just do a copy n paste of the original thread OP. -
[1.8.x] Targetron (continued-bis-wathever) 1.6.3 2019/10/23
linuxgurugamer replied to agises's topic in KSP1 Mod Releases
Is this in CKAN? Could you flesh out th OP, maybe add a picture? I had to go to the origonal thread to see what this did -
Heavy Piloting Challenge
linuxgurugamer replied to sevenperforce's topic in KSP1 Challenges & Mission ideas
Is Kerbal Engineer allowed? also, would be nice to put the craft file somewher to be downloaded -
On screen messages log
linuxgurugamer replied to psychopoak's topic in KSP1 Gameplay Questions and Tutorials
Just so you know, this will be a feature in The Kaptain's Log, which is almost ready to be released. I've coded it and its working. -
[1.12.x] DeepFreeze (v0.31.0) 12th Sep 2021
linuxgurugamer replied to JPLRepo's topic in KSP1 Mod Releases
Won't be hard, I'll get it for you either later today or tomorrow. I wasn't aware of the verbose logging option for it -
[1.12.x] NASA CountDown Clock Updated
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 1.3.2: Fixed problem with needing to double-click toolbar icon to start -
[1.12.x] NASA CountDown Clock Updated
linuxgurugamer replied to linuxgurugamer's topic in KSP1 Mod Releases
New release, 1.3.1: Fixed clock position not being remembered. Fixed issue with launch sound not being played properly (causing nullrefs) Added Settings page Added default Initial throttle Added default Throttle Added option to keep bottom buttons visible Fixed issue with windows not staying in place. Now window positions are saved Fixed version numbers in changelog -
Right click on the part in the parts list
-
So with the help of @Shadowmage I have this mostly working. Going to be a few weeks before I release it, this will be part of a pack of parts that I'm working on
-
[1.2.1] AnyRes v1.4.1 - Closer and closer to Unity 4.6 UI
linuxgurugamer replied to a topic in KSP1 Mod Releases
AnyRes works with 1.3 after a recompile