UnityPointCloudViewer
UnityPointCloudViewer copied to clipboard
Point Cloud Viewer and Tools for Unity
from https://forum.unity.com/threads/released-point-cloud-viewer-tools.240536/page-19#post-9839952  
1.Can I load a point cloud after publishing to a web page
no runtime las/laz support yet. **workarounds:** - include [commandline converter](https://github.com/unitycoder/UnityPointCloudViewer/wiki/Commandline-Tools) with your build and call that.. - or use the commandline converter [source code](https://github.com/unitycoder/PointCloudConverter) to read las/laz in your project...
if you adjust v3 settings on the fly, it doesnt automatically refresh view distances or other lod data.. (unless you turn around or move camera far away and back, to...
Disable SRP Batcher from "UniversalRenderPipelineAsset"  where is srp batcher: https://docs.unity3d.com/Manual/SRPBatcher.html
> In the newer versions, the single point picking uses 2 threads. However, it overwrites itself if you call it too quickly. > > The previous versions you could call...
Someone reported issues with mainthread.cs and suggested small fix (below this code) Assets\PointCloudTools\PointCloudViewerDX11\Scripts\Common\MainThread.cs: ``` IEnumerator Executer() { while (true) { yield return null; while (calls.Count > 0) { calls[0].Execute(); //...
Hi It seems the rendering of my pointcloud is not honoring the transform values, and I can't control where in the scene it's renderered. Is this expected behaviour? 
> For a custom shader to be compatible with the SRP Batcher it must meet the following requirements: > - The shader must declare all built-in engine properties in a...
list which features work and which doesn't (TODO fill features here) - [x] v1 binary viewer : works ✅ - [x] v2 binary viewer : works ✅ - [x] v3...