-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding SCANsat to CactEye Optics mod #400
Comments
That should work. Do these parts also have the stock resource scanner modules? If so the ModuleSCANresourceScanner can optionally disable them. If not then you can use the regular SCANsat part module. The fov value is field of view. It is basically the number of whole-number degrees that will be scanned at the ideal altitude around your current position, but normalized to the body's radius in relation to the home body radius. So around Kerbin, with an fov of 2 and scanning at the ideal altitude you will scan a 4x4 degree box around your vessel (at the equator, the horizontal scanning width is adjusted by latitude). Around Minmus it will be a much larger number of degrees (you can set the fov value lower than 1 to get smaller scanning width around small bodies), and around Jool much smaller (there is a lower limit of 1 degree and an upper limit of 20). So kind of complicated. Basically just play around with it. I usually stick to the 1-3 range. |
No, these parts do not have the stock resource scanner module, although maybe I should add it to the mod. And thank you for such a wonderful mod. |
I'm not going to add the stock resource scanner, since that would be opposite the idea behind the mod of science needing time. |
Just curious as to your feeling about these: CactEye mod has two scopes, the Cacti and the Fungi (smaller). What I'm going to do is to have the FOV for the Cacti to be 4 and the FOV for the Fungi to be 2, but to have the altitudes for the Cacti to be much higher than the Fungi. `
}
} ` |
I'm thinking of going a different route. Rather than integrate it into the telescope, I am thinking of disabling the surface attachment on the scope and adding several attach nodes instead. I'm going to expand on this idea in the thread to see what people think. |
I'm planning on adding compatibilty with SCANsat to the CactEye Optics mod I'm in the process of adopting.
Would this be all that's needed (there are two parts):
`@PART[tele_body]:NEEDS[SCANsat]
{
MODULE
{
name = ModuleSCANresourceScanner
sensorType = 128
fov = 3
min_alt = 15000
max_alt = 7500000
best_alt = 500000
scanName = Resource Scan
RESOURCE
{
name = ElectricCharge
rate = 0.5
}
}
}
@part[tele_body2]:NEEDS[SCANsat]
{
MODULE
{
name = ModuleSCANresourceScanner
sensorType = 256
fov = 2
min_alt = 10000
max_alt = 500000
best_alt = 150000
scanName = Ore Scan
RESOURCE
{
name = ElectricCharge
rate = 2
}
}
}
`
The text was updated successfully, but these errors were encountered: