-
Posts
1,207 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by Olympic1
-
[Help] NullReference when changing scene
Olympic1 replied to Olympic1's topic in KSP1 C# Plugin Development Help and Support
For the people who want to look into the full code I made a GitHub repo for it. It is the coding from someone else but I'm updating his mod. I didn't started with the "LTToolBar" folder yet. -
[0.90] ADIOS Tech Tree - V.15 - 12-03-2015
Olympic1 replied to Arachnidek's topic in KSP1 Mod Releases
Can you add KSPI to the tree? -
I encountered that problem also once, since then I couldn't reproduce. Let me look at it
-
JoolPlus: Kopernicus Edition [ALPHA RELEASE!]
Olympic1 replied to Sylandro's topic in KSP1 Mod Development
Because those packs also edit the orbit of Eeloo -
[1.1.2] Kerbin-Side (v1.1.0) & Supplements
Olympic1 replied to AlphaAsh's topic in KSP1 Mod Releases
you can't. Because Unity only support 32bit, KSP can only use 4GB of RAM. But Unity is working on a 64bit (for a long time)- 2,488 replies
-
- launchsites
- bases
-
(and 1 more)
Tagged with:
-
Sorry for that, I will edit my post for now that this is save game breaking. The camera's took some time to fix, because that code is based of the code of the VDSCamera's.
-
[0.90] Working Multiple Star Systems(WITH PLANETS!)
Olympic1 replied to Duracelle's topic in KSP1 Mod Releases
glad that fixed it for you, weird that some mod uses a hardcoded MM file -
[0.90] Working Multiple Star Systems(WITH PLANETS!)
Olympic1 replied to Duracelle's topic in KSP1 Mod Releases
Well then I'll need the output_log. This file is found in the folder 'KSP_Data' -
ExceptionDetector 1.1 [KSP ANY VERSION]
Olympic1 replied to godarklight's topic in KSP1 Mod Releases
I don't know if this is a bug, but when I reload the database using ModuleManager some mods give 200+ exceptions. -
As said here is the pre-release This updated breaks your savegame, so delete your LTech folder before installing this. Got everything working but there are some harmless exceptions when loading KSP. Changelog: Updated for KSP 0.90 You can now test the Airbrake (contract) Gave the agency a description Redid all the cfg's ARP support (Icons will follow later) Snacks support CLS support for the SkyLab Better KAS support Camera's now work with RasterPropMonitor and VDSHullCam I'm making new models for the parts that now use Squad models. Maybe also gonna make an internal for the SkyLab. Dowload: GitHub DropBox KerbalStuff
-
[Help] NullReference when changing scene
Olympic1 replied to Olympic1's topic in KSP1 C# Plugin Development Help and Support
I know that's why I said in the beginning that I'm just a beginner in coding. -
[Help] NullReference when changing scene
Olympic1 replied to Olympic1's topic in KSP1 C# Plugin Development Help and Support
Thx for that, I'll test it - - - Updated - - - Do I then also need to create a " public object vessel { get; set; } " Because if (HighLogic.LoadedSceneIsEditor || this.[COLOR="#FF0000"]vessel[/COLOR] == null) isn't defined nowhere -
I'm just a beginner in the coding but Ikeep getting a NullReference when change from a scene (ex: From Main Menu to Space Center) This is my code where it throws the error void Start() { foreach (var vessel in FlightGlobals.Vessels) { vessel.FindPartModulesImplementing<SkyLabExperiment>().ForEach(part => { part.config = this; }); } } I know that I need to 'destroy' this, but I just don't know how. You can look into the code on my GitHub repo.
-
[Help] NullReference when changing scene
Olympic1 replied to Olympic1's topic in KSP1 Mods Discussions
oops, wrong forum. I'll ask it there -
I'm just a beginner in the coding but Ikeep getting a NullReference when change from a scene (ex: From Main Menu to Space Center) This is my code where it throws the error void Start() { foreach (var vessel in FlightGlobals.Vessels) { vessel.FindPartModulesImplementing<SkyLabExperiment>().ForEach(part => { part.config = this; }); } } I know that I need to 'destroy' this, but I just don't know how. You can look into the code on my GitHub repo.
-
[0.90] Working Multiple Star Systems(WITH PLANETS!)
Olympic1 replied to Duracelle's topic in KSP1 Mod Releases
delete al your ModuleManager.dll 's and install 2.5.9 -
[0.90] KSP Interstellar port maintance thread
Olympic1 replied to Boris-Barboris's topic in KSP1 Mod Development
Only the "Enchanced Survivability" and "Hydroponics" nodes are hidden when there are no parts in it, all the other nodes are visible when their parent node is unlocked. Check the config of CTT. This is how I tested it when I made my config: 1. Selected the KSPI tree via TechManager 2. Unlocked every KSPI node (had every part) 3. Closed KSP 4. Placed my config in GameData 5. Edited the TechManager.cfg to use CTT_01 6. Started KSP 7. Unlocked every CTT node (even the ones that has no parts in it) Then I had every KSPI part, including the upgaded ones.