소스 검색

Hide "no BPTC if RGB" and "HDR Mode" options when not using "Video RAM" import.

elasota 7 년 전
부모
커밋
7ad1ca525e
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      editor/import/resource_importer_texture.cpp

+ 5 - 0
editor/import/resource_importer_texture.cpp

@@ -164,6 +164,11 @@ bool ResourceImporterTexture::get_option_visibility(const String &p_option, cons
 		if (compress_mode != COMPRESS_LOSSY && compress_mode != COMPRESS_VIDEO_RAM) {
 			return false;
 		}
+	} else if (p_option == "compress/no_bptc_if_rgb" || p_option == "compress/hdr_mode") {
+		int compress_mode = int(p_options["compress/mode"]);
+		if (compress_mode != COMPRESS_VIDEO_RAM) {
+			return false;
+		}
 	}
 
 	return true;