UnityPointCloudViewer icon indicating copy to clipboard operation
UnityPointCloudViewer copied to clipboard

runtime las/laz support

Open unitycoder opened this issue 4 years ago • 1 comments

no runtime las/laz support yet.

workarounds:

  • include commandline converter with your build and call that..
  • or use the commandline converter source code to read las/laz in your project and then feed that point data into viewer (using example scene PointCloud-YourOwnData.scene)

*Example script for runtime commandline convert: https://github.com/unitycoder/UnityPointCloudViewer/blob/master/Extras/Scripts/RuntimeLASConvert.cs

unitycoder avatar Aug 12 '21 12:08 unitycoder

Now that i think about it, adding that source code into unity project would be easiest (since its .net 4.7 project, should work) although need to think about:

  • If its large cloud, need to save into some file anyway.. then its same as running the converter on the background?
  • if its small file, could output to temp file or read directly into memory, and draw cloud

unitycoder avatar May 08 '24 05:05 unitycoder