Jump to content

Siconix

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Siconix

  1. 2 hours ago, OhioBob said:

    I don't know if there's a minimum, but I've gone as small as 7000 meters and it worked.  Never tried anything smaller than that.

    BTW, I think your config needs to include a template.  I'm not sure it will work without one.  Try something like this:

    
    @Kopernicus:AFTER[Kopernicus]
    {
    	Body
    	{
    		name = Peor
    		Template
    		{
    			name = Moho
    			removeAllPQSMods = True		// If you do this, you'll need to add back whatever PQSmods you need.
    		}
    		Properties
    		{
    			...

     

    I did have a template before but I removed it because I thought it was causing the problem. Get the same issue with or without it. I guess Kopernicus just freaks out with something that small.

  2. Hi all, I had a quick question. Is there is a limit on the minimum radius you can give to a planet/moon? I'm trying to make a moon that's 1km in radius, but when I get close to it, it vanishes from view and I always crash into it. If I try to use the debug menu to go into orbit around it, it always immediately crashes into the moon, no matter how far away I set the orbit. I added the code below:

     

    @Kopernicus:AFTER[Kopernicus]
    {    
        Body
        {		
    		name = Peor
            
            Properties
            {
    			radius = 1696
    			mass = 1.00383e+15
            }
            
    		Orbit
    		{
    			referenceBody = Duna
    			inclination = 1.093
                eccentricity = 0.0151
                semiMajorAxis = 883000
    		}
    		
    		ScaledVersion
            {
                type = Vacuum
                
                Material
                {
                    // Common scaled space settings
                    texture = MyConfig/Planets/Duna/PluginData/Peor/Color.dds
                    normals = MyConfig/Planets/Duna/PluginData/Peor/Normals.dds
                    shininess = 0
                    specColor = 0,0,0,0
                }
            }
        }
    }

     

×
×
  • Create New...