ShotgunNinja Posted August 22, 2016 Author Share Posted August 22, 2016 @Polnoch If you want to remove the Geiger Counter (the only science part provided) then you can delete the folder Parts/GeigerCounter with no other drawbacks. Likewise you can avoid using any of the science tweaks (some stock experiments rearranged, science values tweaked, etc) by deleting the file Patches/Tweaks/ScienceTweaks.cfg. Also if you want more customization, edit your profile file in Profiles/Default.cfg (where you can enable/disable individual features like malfunction and signal). Some documentation about that is here. Link to comment Share on other sites More sharing options...
Kerbos Posted August 22, 2016 Share Posted August 22, 2016 58 minutes ago, ShotgunNinja said: I'm thinking, if the light rotate fast enough it could be approximated by one spotlight, that is acceptable in term of performance. Even two lights may be okay. At that point I could rotate it in code, directly or by animation (that I think should be possible in Unity 5 as you are only animating the transform). I've just tried this, 2 rotatory independent directional light sources, looks good-dizzy mixture, hyperedited a kerbal inventory to test it out on larger scale but sadly I could feel the impact on a ship with almost 200 parts including other stock spotlights, rotation speed did made a difference through, I'm gonna have to go for emissive somehow. Gonna check D.E.R.P. and then redesign the medbay that thx to stupid unity had to dismember to the bones trying to find nonexistent open vertexes in a sad attempt to animate. Link to comment Share on other sites More sharing options...
ShotgunNinja Posted August 22, 2016 Author Share Posted August 22, 2016 @Kerbos Light radius matter. I don't even know if Unity let you specify that, but it should. If it doesn't, it probably infer the radius from the falloff parameter. It matter because the slowdown is proportional to number of lights multiplied by objects touched by the light. This is becaue Unity, in 2016, is still not a deferred renderer. They got a depth texture of the scene for soft particles, but that's all. So essentially it work this way: every object is drawn a number of times, in the worst case it is drawn 1 time for sun + ambient, then 1 other time for each light whose frustum touch it. If you make it such that the light radius is a few meters, only a small amount of objects are going to need to be rendered again. Link to comment Share on other sites More sharing options...
Kerbos Posted August 22, 2016 Share Posted August 22, 2016 @ShotgunNinja yes it does, current radius was 2.5 mts, what I didn't knew is that it draws the objects every time light changes, so moving parts won't help at all, right now I'm digging through D.E.R.P. models, can't find the light yet, time to install the mod and see wich one is it on ksp Link to comment Share on other sites More sharing options...
ShotgunNinja Posted August 22, 2016 Author Share Posted August 22, 2016 @Kerbos Oh wait, maybe it was in USI Exploration Pack. It was definitely some of the USI mods. The fact that light moves/rotate should have zero implications on performance. Link to comment Share on other sites More sharing options...
Kerbos Posted August 22, 2016 Share Posted August 22, 2016 (edited) 1 hour ago, ShotgunNinja said: @Kerbos Oh wait, maybe it was in USI Exploration Pack. It was definitely some of the USI mods. The fact that light moves/rotate should have zero implications on performance. That was the mod, but it just like I did it, except RoverDude positioned the lights ahead of the beacon, but I did found something interesting about transparency and alpha channels and KSP seems more than ok with it, the effect is kinda off but still works. On a side note this 2 command pods and the Jumpseat seems very small/weak to actually carry any shielding Spoiler EDIT/// Maybe a simple blacklist cfg, here's the names of the pods just in case model = UmbraSpaceIndustries/ExpPack/HERP/assets/HERP_POD --------> This is the round one name = HERP_Pod model = UmbraSpaceIndustries/ExpPack/HERP/assets/HERP_JumpSeat name = HERP_JumpSeat model = UmbraSpaceIndustries/ExpPack/AES/Assets/AES name = AES_Pod Edited August 22, 2016 by Kerbos Link to comment Share on other sites More sharing options...
ShotgunNinja Posted August 22, 2016 Author Share Posted August 22, 2016 @Kerbos Is possible to set Shielding amount/capacity in a crewed part, using MM or otherwise. Then my code doesn't set the shielding automatically. This can be used to create parts that require more shielding than usual, parts that are already hardened, or parts that can't be shielded at all. Spoiler @PART[large_space_low_crew_capacity] { RESOURCE { name = Shielding amount = 0.0 maxAmount = 10.0 } } @PART[already_hardened] { RESOURCE { name = Shielding amount = 0.0 maxAmount = 0.0 } } @PART[small_pods_that_cant_be_shielded] { RESOURCE { name = Shielding amount = 0.0 maxAmount = 1.0 isTweakable = false isVisible = false } } Link to comment Share on other sites More sharing options...
DarkonZ Posted August 22, 2016 Share Posted August 22, 2016 @Kerbos Nope. Didn't do a thing. When you mentioned about the NV cache it rang a bell. Can't remember why. @ShotgunNinja I know Barrin hasn't been around, but would you mind changing the 'waste_buffer' in the Oxygen rule for the realism profile. It's set at 45.0 and that means 45 days worth of CO2 waste. Really? That's actually 4.5 times the default value of 10. And I can't imagine even the dumbest kerbals would store 45 days of CO2 for a single man command pod. 101.25x45 = Too much! Link to comment Share on other sites More sharing options...
ShotgunNinja Posted August 22, 2016 Author Share Posted August 22, 2016 @DarkonZ I'll set it to 5 days. I agree the Realism profile could use some love, feel free to suggest other tweaks. Link to comment Share on other sites More sharing options...
DarkonZ Posted August 22, 2016 Share Posted August 22, 2016 Actually, I've got my patches using 2 days as a marker. Without any other mods to make use of CO2, I couldn't see a reason for going higher (Unless I just stick with the standard 3 days like with food and water). Another thing you could consider is having the kerbals eat twice a day (Breakfast/Dinner) instead of the single meal per day the realism profile has set up. This is easy to do (Half rate and interval) and changes nothing in how the realism profile behaves. I'm considering doing this with my patches. Again, I've no idea what Barrin was attempting with the realism profile, I just figured kerbals would be grumpy without at least breakfast and dinner. Oh well... Link to comment Share on other sites More sharing options...
Awaras Posted August 23, 2016 Share Posted August 23, 2016 (edited) Sorry if it has been asked before. I got a mission called 'Cross the radiation belt', and the specifics are rather vague. I assumed I would have to go above the radiation rings and return the Kerbal safely back to the ground. I sent the ship into a high elliptical orbit (with the Ap almost reaching the Mun, and outside the magnetopause of Kerbin), returned to Kerbin and the mission is still incomplete. Is there something else I need to do? I am using V1.1.0 of the mod. Edited August 23, 2016 by Awaras Link to comment Share on other sites More sharing options...
Putnam Posted August 23, 2016 Share Posted August 23, 2016 Here's a compatibility patch for New Horizons: // ============================================================================ // Radiation environments for New Horizons bodies // ============================================================================ RadiationBody:NEEDS[New_Horizons] { name = Arin radiation_model = earth // sorry, can't make it sideways radiation_inner = 20.0 radiation_outer = 4.0 radiation_pause = -0.010 } RadiationBody:NEEDS[New_Horizons] { name = Aptur radiation_model = anomaly radiation_pause = -0.010 } RadiationBody:NEEDS[New_Horizons] { name = Serran radiation_model = earth // still basically can't do weird magnetic fields (serran has quadripole) radiation_inner = 3.0 radiation_outer = 1.0 radiation_pause = -0.003 } RadiationBody:NEEDS[New_Horizons] { name = Sonnah radiation_model = giant radiation_inner = 30 //Should probably be more intense, given science data, but that would make early game WAY too hard radiation_outer = 3 radiation_pause = -0.007 } RadiationBody:NEEDS[New_Horizons] { name = Titanus radiation_model = giant radiation_inner = 200.0 radiation_outer = 5.0 radiation_pause = -0.010 } RadiationBody:NEEDS[New_Horizons] { name = Ete radiation_model = irregular radiation_pause = -0.002 } RadiationBody:NEEDS[New_Horizons] { name = Vanor radiation_model = giant radiation_inner = 200.0 radiation_outer = 5.0 radiation_pause = -0.010 } RadiationModel:NEEDS[New_Horizons] { name = tidus has_pause = true pause_radius = 0.5 pause_compression = 100.0 //this'll be towards the sun instead of vanor, but whatever pause_extension = 0.9 pause_height_scale = 0.45 pause_deform = 0.05 pause_quality = 50.0 } RadiationBody:NEEDS[New_Horizons] { name = Tidus radiation_model = tidus radiation_pause = -0.001 } RadiationBody { name = Etal radiation_model = earth radiation_inner = 10.0 radiation_outer = 2.0 radiation_pause = -1.000 } It almost definitely needs some tweaking; I said that Sonnah's inner radiation should be more intense, but last time I sent someone in they all nearly died of radiation poisoning before even dying of slamming into the "ground"... The rest of the comments are pretty self-explanatory... though tbh Tidus is a bit too weird even taking that into consideration. Link to comment Share on other sites More sharing options...
ShotgunNinja Posted August 23, 2016 Author Share Posted August 23, 2016 (edited) @Awaras It should triggered as soon as you entered the inner or outer belt. Crossing the magnetopause will not do it, albeit you can't cross the pause boundary without also crossing the outer belt. So maybe it is a bug. @Putnam 46 minutes ago, Putnam said: sorry, can't make it sideways What you mean? I could expose the 'magnetic axis' for customization, now it is always equal to the rotation axis. Edited August 23, 2016 by ShotgunNinja Link to comment Share on other sites More sharing options...
Awaras Posted August 23, 2016 Share Posted August 23, 2016 1 minute ago, ShotgunNinja said: @Awaras It should triggered as soon as you entered the inner or outer belt. Crossing the magnetopause will not do it, albeit you can't cross the pause boundary without also crossing the outer belt. So maybe it is a bug. Also, I noticed that since I installed 1.1.0. I am not getting any 'High radiation' warnings when entering radiation rings, even though the radiation icon in the mod panel goes red. I still get warnings related to power/oxygen. Only mods I have installed are Kerbalism, resource pack and connected living space (and MM, of course). Link to comment Share on other sites More sharing options...
ShotgunNinja Posted August 23, 2016 Author Share Posted August 23, 2016 @Awaras Found the error. Both contract and warnings are the same problem. Fix in next version, thanks for reporting it Link to comment Share on other sites More sharing options...
Putnam Posted August 23, 2016 Share Posted August 23, 2016 Yeah, I had it at 1000 before, set it to 100, found even that was too big then forgot to lower it before posting here, heheh. Anyway, yeah, I noticed the limits as I was making them and noted them in the comments. The wording by "still basically can't do" means "the configuration provided has no tools to do this yet". As for "sideways", yeah, I meant having magnetic axis be separate from axis of rotation. The magnetic axis of Arin is stated by the Dmagic magnetometer experiment to be sideways and one particular biome is given as the pole, so if I had rotations I could pretty easily set that up correctly. That was the only one I really searched around for, I figured the quadripole and huge tidal compression by parent body would rely on some sort of big rewrite after I had figured out all the various meanings of the options by perusing the code. If magnetic axis can be separated in a reasonably trivial manner, that'd be great. Quadripole radiation I can't even imagine the appearance of, except maybe by making some sort of fake inner body with gravity too low for the SOI to reach the surface, but that sounds highly dangerous and irresponsible. Plus, it won't display right. Also, I had the radiation belt contract issue earlier today as well... I got a high radiation warning and everything, did a geiger counter test to see if that would do it, recovered the whole thing, still didn't complete the contract. I have so many mods it could be any one of them, so I didn't bother reporting. Link to comment Share on other sites More sharing options...
ShotgunNinja Posted August 23, 2016 Author Share Posted August 23, 2016 (edited) @Putnam I'll expose the magnetic axis for customization in next version. A quadrupole field section should look like this: Spoiler In future I'll consider adding more variation to the field distance functions. Maybe even crazy things like this. Edited August 23, 2016 by ShotgunNinja Link to comment Share on other sites More sharing options...
Jasseji Posted August 23, 2016 Share Posted August 23, 2016 Hello @ShotgunNinja i have stumbled across an issue with the malfunctions system. Basically one of the parts malfunctioned, i went EVA wit a lvl5 Kerbal Engineer and approached the part but i dont see any effect, nothing gets repaired, no errors in the logfile. I propably do something wrong but cant really find any solution myself Any idead/tips on how to properly repair parts ? Link to comment Share on other sites More sharing options...
Pol Posted August 23, 2016 Share Posted August 23, 2016 Can you add some 100% mark to bars, to decribe what I mean - my guys was hit by storm and now have big yellow bar, but it's hard to say where this bar will ends - is they have 60% or 90%. Link to comment Share on other sites More sharing options...
alex_1313 Posted August 23, 2016 Share Posted August 23, 2016 (edited) Is adding of magnetic fields to planets possible and how do i do it? Edited August 23, 2016 by alex_1313 Link to comment Share on other sites More sharing options...
ShotgunNinja Posted August 24, 2016 Author Share Posted August 24, 2016 @Jasseji When you get near on EVA, then right click and a 'repair' button should be available. @Pol I'm going to replace those ascii progressbars with proper ones, someday... @alex_1313 Is possible, albeit a bit undocumented at the moment. Your best bet is looking at the wiki here, and also digging the existing configurations for stock, RSS and OPM. Link to comment Share on other sites More sharing options...
Jacke Posted August 24, 2016 Share Posted August 24, 2016 16 hours ago, Jasseji said: Basically one of the parts malfunctioned, i went EVA wit a lvl5 Kerbal Engineer and approached the part but i dont see any effect, nothing gets repaired, no errors in the logfile. So, the system reported a faulty part. Your Kerbal went EVA and checked the part and no fault was found. Hmmm...that's just like in.... Be afraid. Be very afraid. Link to comment Share on other sites More sharing options...
Kerbos Posted August 24, 2016 Share Posted August 24, 2016 10 minutes ago, Jacke said: So, the system reported a faulty part. Your Kerbal went EVA and checked the part and no fault was found. Hmmm...that's just like in.... Be afraid. Be very afraid. Link to comment Share on other sites More sharing options...
Jasseji Posted August 24, 2016 Share Posted August 24, 2016 6 hours ago, ShotgunNinja said: @Jasseji When you get near on EVA, then right click and a 'repair' button should be available. Well, there was no "repair", i could do other actions with the part in this case it was a spinning centrifuge so i could stop/start the spin from EVA but no "repair" button I will check again with other parts Link to comment Share on other sites More sharing options...
Thegamer211 Posted August 24, 2016 Share Posted August 24, 2016 (edited) What is the lethal radiation dose for a kerbal? And what's up with Vall's surface radiation? Is it made out of uranium or something? And Eve's ridiculously small magnetosphere? I guess its inspired after the magnetosphere of Venus right? I love Dres's pole coverage though, It makes that lonely space potato a little more interesting: Edited August 24, 2016 by Thegamer211 Link to comment Share on other sites More sharing options...
Recommended Posts