microsoftenator
Members-
Posts
21 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by microsoftenator
-
I am I right in assuming that this means that any part using a Module derived from BaseConverter cannot also have staging?
- 786 replies
-
I've narrowed it down to USI Life Support. I'm gonna post in the USI LS thread as well because I suspect it's a bug in USI LS rather than the capsule.
- 786 replies
-
[1.2.2] B9 Aerospace | Release 6.2.1 (Old Thread)
microsoftenator replied to bac9's topic in KSP1 Mod Releases
The HPD appears to lack an engine sound in conventional rocket mode. The rocket sound plays just fine in hybrid plasma mode, however. Tested with near-stock KSP: 32-bit + ATM, FAR and B9- 4,460 replies
-
[1.2.2] B9 Aerospace | Release 6.2.1 (Old Thread)
microsoftenator replied to bac9's topic in KSP1 Mod Releases
Is it just me or does the HX-HPD lack sound?- 4,460 replies
-
By 'trunk', you mean 'master', right?
-
[1.8-1.9] Modular Fuel Tanks v5.13.1
microsoftenator replied to taniwha's topic in KSP1 Mod Releases
I'm looking at doing this myself if no one else does. If all you want to do is add Hydrogen and Argon to stock MFT Tanks, you just need a new TANK definition for Hydrogen and Argon. Would require some calculations to find out the exact values, but it shouldn't be too difficult.. Not needed if only adding tank definitions. EDIT: And done. Put this anywhere in your GameData (it's a ModuleManager patch), but preferably in GameData/NearFuturePropulsion/Patches to keep everything neat. -
Just trying to figure out if we're on the same page with this: I was hoping that enabling bypasseffects on the non-ship AudioSources would avoid this issue, but apparently it doesn't work the way I expected. The issue, I think, with applying effects to the RAPIERs is that the GameObject has 4-5 AudioSources associated with it, but it seems that the effects only get applied to the AudioSource that matches the GameObject's (readonly) audio property, which for the RAPIER appears to have its clip set to null. Not very useful. Alternatively, it could be that effects aren't applied to disabled AudioSources, in which case your solution might work; I have far too little experience with Unity - and KSP in particular - to know the minutiae of how its audio system works.
-
Here's what I've got so far: Plugin dll Source code Confirmed working: Low-pass, distortion and reverb filters. RAPIER engines and anything else that uses the new FX system. Bugs: The volume effect doesn't get applied all the time, although it usually seems to work after the first launch/flight. The filters may get applied to the non-Ship sound channels for some reason.
-
Looks like it might be a bug in Unity :c Apparently filters don't work properly if there is more than one AudioSource on an object. After many hours of trying, I just can't figure out why it doesn't work. I can't quite figure out how the new ModuleEnginesFX actually plays its audio, it always starts with a single (active) AudioSource without a clip set, so that's why ASE can't add its effects. However, forcing the effects to be added doesn't work either, Unity gives a warning saying that the filters can't be added. The proper AudioSource objects do appear later, but I'm not sure of the mechanism behind it.