

wasml
Members-
Content Count
918 -
Joined
-
Last visited
Community Reputation
371 ExcellentAbout wasml
-
Rank
Spacecraft Engineer
Recent Profile Visitors
3,760 profile views
-
Part not compiling, weird error in log file
wasml replied to Mallikas's topic in General Mod Development Help and Support
Guessing here: the "Input string was not in the correct format" leads me to think it's an error in the config file. Looks like StringToNumber and ParseInt32 calls are complaining so I would look for either a typo in an integer or maybe a wrong parameter - giving it a string or a bool when it expects a integer. -
Fengist had an online calculator but it's no longer there - the code for the calculator is listed though
-
A modder who's name I can't recall was working on a mod (never completed unfortunately) that would have had a surface part with an IVA that would have been extendable. The extensions would have been IVA only and extendable to make underground bases. The plan was to allow the player to move between rooms by clicking on hatches to change IVA's. If I find the link I'll add to this post. Found it:
-
@SJ Heo Try putting it directly under GameData Path should be: GameData\Missing_robotics.
-
wasml started following How to make an electric thruster?
-
How to make an electric thruster?
wasml replied to eberkain's topic in General Mod Development Help and Support
You might consider using water as an alternate propellant and adding an intake that collects water - the ModuleResourceIntake even has a "underwaterOnly" field. Downside would be the need to either add the resource yourself or have a dependency on Community Resource Pack. -
how do i make mods?
wasml replied to sharkrider2187's topic in General Mod Development Help and Support
One way or another you're going to need to learn to use a 3D modeling program if you want to make parts (you mentioned Blender so I'm assuming you want to make parts). Blender is a steep learning curve but there are lots of online tutorials. Another route is to use Wings - I'm not sure how much easier that is as I don't use that myself - there are some tutorials for that and I think Beale(?) made some specifically for KSP parts - sorry but I don't have the links - shouldn't be too hard to Google. Once you get a model made by whatever means, you need to get it in game. You can do this by runnin -
The thrust is configured with a thrust transform that's part of the model in the .mu file - not something you can change in the cfg file. It is possible to fix but you would need to import the model into a 3D editor and fix the thrust transforms and then change the model back to a .mu file (doable with taniwha's Blender .mu importer/exporter I think) or run the model through Unity.
-
[WIP] [1.11.x] Heavy Science - Development Thread
wasml replied to cyberKerb's topic in Add-on Development
The rock in liquid does suggest shallows to me. I've always thought of "Shores" as the beach area before the water - never thought to check just in the water - I'll have to check next time I have the game up. If it is the beach area a generic sand texture might help distinguish between shores and shallows but I think the rock in a bit of water does the job too. -
or the Surface Scanning Module has a Lat/Long display in the PAW
-
Volume calculations for parts in RO
wasml replied to LeRoumaine's topic in General Mod Development Help and Support
RO_Resources.cfg refers to CRP(Community_Resource_Pack) - look in the CRP .cfg files and you should find a file (or more than one) that defines resources including density - should have a batch of "RESOURCE_DEFINITION" lines in it. Edit: RO_Resources.cfg is a module manager patch file - check that the resources you're interested in haven't been modified with this patch file. (a quick look and most of the patches appear to be to unit cost) -
I've never seen any suggested rule of thumb - the more complex you make the part the more players will have problems with it. You can actually make fairly detailed models (see Squads 18K tris (if memory serves) Mammoth engine - what really eats processing is the colliders. And even here the mesh colliders are a lot heavier than the primitive (Box, Capsule, Sphere) colliders. So keep collider count down and use primitives if you can.