From 6694382109f978be313474d2554a0d749c41091e Mon Sep 17 00:00:00 2001 From: Elie Michel Date: Fri, 13 Mar 2020 15:48:19 +0100 Subject: [PATCH 1/4] Add some troubleshooting notes --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e005f87..1a682fc 100644 --- a/README.md +++ b/README.md @@ -90,12 +90,16 @@ This was a common issue with versions of this add-on prior to v0.2.0. Update to ### Chrome is showing a warning about an unsupported feature -If this is about the `--disable-gpu-sandbox` flag, it is just a warning, it should not be a problem. +If chrome says something like "Unsupported command line, security will suffer", don't mind. This is due to the `--disable-gpu-sandbox` flag, but it is just a warning, it should not be a problem for what we are doing. ### Chrome window is all plain black Try to set and unset the fullscreen mode using F11. +### There is no GPU pop-up + +Make sure you use the right custom shortcut to start chrome and that you closed any process chrome process before starting. + ### How to increase the level of detail? If you want better quality captures, you should know that Google Maps loads LoDs (Levels of Details) in relation with the window size of your web browser. There is several way to increase it: From 3042f806a407c1fb08481710332dbd7a12e9dc65 Mon Sep 17 00:00:00 2001 From: Elie Michel Date: Fri, 13 Mar 2020 15:50:46 +0100 Subject: [PATCH 2/4] Add note about Capture after delay button --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 1a682fc..b8ad534 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,10 @@ Try to set and unset the fullscreen mode using F11. Make sure you use the right custom shortcut to start chrome and that you closed any process chrome process before starting. +### PrintScr does not actually take a capture + +It happens sometimes, in this case you can use the "Capture after delay" button in RenderDoc to trigger a capture. Don't forget to make sure to move in the 3D viewport at the very time the capture occurs. + ### How to increase the level of detail? If you want better quality captures, you should know that Google Maps loads LoDs (Levels of Details) in relation with the window size of your web browser. There is several way to increase it: From 4d8fe5aa56203c16773045e44a3606ea367b1455 Mon Sep 17 00:00:00 2001 From: Elie Michel Date: Sat, 14 Mar 2020 00:39:30 +0100 Subject: [PATCH 3/4] Add automation to troubleshooting --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b8ad534..a73dc58 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,10 @@ If you want better quality captures, you should know that Google Maps loads LoDs But while doing so you also increase dramatically the number of block. Be aware of the fact that by default the MapsModelsImporter add-on limits to 200 blocks to prevent from freezing for too long. You can change this number on import. +### It's taking too long, how to automate this process? + +Although I don't know how to automate the capture itself, you can easily automate the importing part, see [this issue](https://github.com/eliemichel/MapsModelsImporter/issues/39) for an example of automation script. + Disclaimer ---------- From 0a1ff27cccd9fb4cd07c2186aa3bc92675810fb1 Mon Sep 17 00:00:00 2001 From: Elie Michel Date: Tue, 24 Mar 2020 11:02:23 +0100 Subject: [PATCH 4/4] Disable reference matrix --- blender/MapsModelsImporter/google_maps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/blender/MapsModelsImporter/google_maps.py b/blender/MapsModelsImporter/google_maps.py index 989d297..3293671 100644 --- a/blender/MapsModelsImporter/google_maps.py +++ b/blender/MapsModelsImporter/google_maps.py @@ -197,10 +197,12 @@ def filesToBlender(context, prefix, max_blocks=200): drawcallId += 1 # Save reference matrix + """ if refMatrix: values = sum([list(v) for v in refMatrix], []) context.scene.maps_models_importer_ref_matrix = values context.scene.maps_models_importer_is_ref_matrix_valid = True + """ # -----------------------------------------------------------------------------