diff --git a/data/scene/rosetta/67P/67P.data b/data/scene/rosetta/67P/67P.data index 0cfd6a4b07..3c899a9480 100644 --- a/data/scene/rosetta/67P/67P.data +++ b/data/scene/rosetta/67P/67P.data @@ -1,6 +1,7 @@ return { FileRequest = { - { Identifier = "67p_textures", Destination = "textures", Version = 2 } + { Identifier = "67p_textures", Destination = "textures", Version = 2 }, + { Identifier = "rosettaimages", Destination = "rosettaimages", Version = 1} }, TorrentFiles = { { File = "67P_rotated_5_130.obj.torrent", Destination = "obj" }, diff --git a/modules/base/shaders/rings_fs.glsl b/modules/base/shaders/rings_fs.glsl index 9b12688943..8a7c237de3 100644 --- a/modules/base/shaders/rings_fs.glsl +++ b/modules/base/shaders/rings_fs.glsl @@ -73,10 +73,10 @@ Fragment getFragment() { // The plane is oriented on the xz plane // WARNING: This might not be the case for Uranus if (gl_FrontFacing) { - normal = vec3(0.0, 1.0, 0.0); + normal = vec3(-1.0, 0.0, 0.0); } else { - normal = vec3(0.0, -1.0, 0.0); + normal = vec3(1.0, 0.0, 0.0); } // Reduce the color of the fragment by the user factor diff --git a/support/cmake/support_macros.cmake b/support/cmake/support_macros.cmake index a19e11399f..4bd8333b69 100644 --- a/support/cmake/support_macros.cmake +++ b/support/cmake/support_macros.cmake @@ -68,7 +68,7 @@ function (set_compile_settings project) set_property(TARGET ${project} PROPERTY CXX_STANDARD_REQUIRED On) if (MSVC) - target_compile_options(${project} PUBLIC "/MP" "/wd4201" "/wd4127") + target_compile_options(${project} PUBLIC "/MP" "/ZI" "/wd4201" "/wd4127") if (OPENSPACE_WARNINGS_AS_ERRORS) target_compile_options(${project} PUBLIC "/WX") endif ()