Daumantas Kavolis

Results 43 comments of Daumantas Kavolis

* I think ```csharp var del1 = Delegate.CreateDelegate(WindFunction, this, typeof(KerbalWxClimo).GetMethod("GetTheWind"), true); // typeof(KerbalWxPoint).GetMethod("GetTheWindPoint"), true); ``` needs to be simply ```csharp WindFunction del1 = GetTheWind; ``` and similarly for `del2` and...

In-flight seems to be working fine now but there are still a few issues. Also, the KWP GUI shows all zeros except for wind and speed. https://github.com/cmac994/KerbalWeatherProject/blob/d159b9124f25e25b29376fcd384574dc385bf463/KerbalWeatherProject/KerbalWxPoint.cs#L483-L508 https://github.com/cmac994/KerbalWeatherProject/blob/d159b9124f25e25b29376fcd384574dc385bf463/KerbalWeatherProject/KerbalWxClimo.cs#L451-L476 The input...