Commit a0e5fe34 authored by Alexander Bock's avatar Alexander Bock
Browse files

Use more fine-grained texture specification for Pluto and Charon

parent e85144b4
Showing with 16 additions and 12 deletions
+16 -12
UseAccurateNewHorizonsKernels = false
UseHighResolutionTextures = false
-- TextureResolution = "low"
TextureResolution = "med"
-- TextureResolution = "high"
function preInitialization()
--[[
......
......@@ -8,11 +8,12 @@ else
}
end
if UseHighResolutionTextures then
ColorTexture = "textures/cpmap_cyl_HR_0e.jpg"
else
ColorTexture = "textures/charon_highres.jpg"
end
Files = {
low = "textures/charon_highres.jpg",
med = "textures/charon_highres.jpg",
high = "textures/cpmap_cyl_HR_0e.jpg"
}
ColorTexture = Files[TextureResolution]
return {
-- CharonProjection module
......
......@@ -9,11 +9,12 @@ else
}
end
if UseHighResolutionTextures then
ColorTexture = "textures/pmap_cyl_HR_LOR_lowres.jpg"
else
ColorTexture = "textures/Shenk_180.jpg"
end
Files = {
low = "textures/pluto_large.jpg",
med = "textures/Shenk_180.jpg",
high = "textures/pmap_cyl_HR_LOR_lowres.jpg"
}
ColorTexture = Files[TextureResolution]
return {
-- Pluto barycenter module
......@@ -49,7 +50,7 @@ return {
Sequencing = "true"
},
Projection = {
Sequence = "${OPENSPACE_DATA}/scene/newhorizons/pluto/pluto/images",
Sequence = "${OPENSPACE_DATA}/scene/newhorizons/pluto/pluto/full_images",
EventFile = "${OPENSPACE_DATA}/scene/newhorizons/pluto/pluto/assets/core_v9h_obs_getmets_v8_time_fix_nofrcd_mld.txt",
SequenceType = "hybrid",
Observer = "NEW HORIZONS",
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment