Skip to content

Commit 2e31a04

Browse files
committed
Merge branch 'master' into dev
* master: Update README.md #BUILD add better console error message for plugin load error Update README.md #BUILD Update README.md Update README.md
2 parents 87a3485 + ca4aaca commit 2e31a04

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

MainWindow.xaml.cs

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,21 @@ private async void Main()
137137
}
138138
}
139139
}
140+
catch (ReflectionTypeLoadException rex)
141+
{
142+
Log.Write($"Error loading plugin {pluginDLL}: {rex.Message}");
143+
144+
foreach (var loaderException in rex.LoaderExceptions)
145+
{
146+
Log.Write(" - " + loaderException?.Message);
147+
}
148+
}
140149
catch (Exception ex)
141150
{
142-
Console.WriteLine($"Error loading plugin {pluginDLL}: {ex.Message}");
151+
Log.Write($"General error loading plugin {pluginDLL}: {ex.Message}");
143152
}
144153
}
145-
}
154+
} // if plugins folder exists
146155

147156
//return;
148157

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PointCloudConverter
2-
This is pointCloud converter (commandline and GUI) for [Point Cloud Viewer & Tools (Unity plugin)](https://assetstore.unity.com/packages/tools/utilities/point-cloud-viewer-and-tools-16019?aid=1101lGti)
2+
This is pointCloud converter (commandline and GUI) for [Point Cloud Viewer & Tools 3 (Unity plugin)](https://assetstore.unity.com/packages/tools/utilities/point-cloud-viewer-and-tools-3-310385?aid=1101lGti)
33

44
### Documentation
55
- Check [Wiki](https://github.com/unitycoder/PointCloudConverter/wiki)
@@ -17,6 +17,7 @@ This is pointCloud converter (commandline and GUI) for [Point Cloud Viewer &
1717
### Export Formats
1818
- UCPC (V2) for https://github.com/unitycoder/UnityPointCloudViewer
1919
- PCROOT (V3) for https://github.com/unitycoder/UnityPointCloudViewer
20+
- GLTF (GLB) output https://las2gltf.kelobyte.fi/ *Paid plugin
2021

2122
### Requirements
2223
- Windows 10 or later
@@ -28,7 +29,7 @@ This standalone converter is open-source, so you can create your own Forks and v
2829
Pull requests to improve this converter are welcome! (please create Issue first, so i/users can comment on it)
2930

3031
### Images
31-
![image](https://github.com/unitycoder/PointCloudConverter/assets/5438317/da7fb1ce-c4bb-49f5-930d-1c388ca1671b)
32+
![image](https://github.com/user-attachments/assets/4a116e52-e90e-436d-b315-d6311006c951)
3233

3334
### Building
3435
- Open project in VS2019 or later

0 commit comments

Comments
 (0)