-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Placement of Point cloud in scene #127
Comments
yes thats the default way (for v1/v2 (.bin, .ucpc) viewer there are shaders with offset variable to translate cloud, V3 tiles format is bit different, as its tile based, cannot move points, unless update all tile culling positions also.. current "workaround" could be adding manual -offset to cloud during conversion.. but of course not very useful. |
another workaround could be a script that changes all of those variables in the tiles and the root file. Seems like it would be pretty easy since the root file contains the locations of all files yes? Ex. NewOffset = xyz. byte[] = file.readAllBytes(path); |
yes, that would be possible (maybe faster than converting again, at least for large clouds).. so at that point, easier to add method that offsets loaded point data, re-inits cloud. v3 data formats are described here, its just raw point data: |
Ah ok. I was not aware at all. It seems this makes it quite not so usefull at all for my purposes then. But you're saying there are offset values in the V2 version. Perhaps I'll go that route for now, then but I'd have to completely decimate my pointcloud in that case. Or perhaps re-convert LAS-file with offset values, that could possibly work aswell. Thanks for info! Hoping for the next version then. |
On a side note, is this something that could be of interest for this plugin? https://docs.unity3d.com/Packages/[email protected]/manual/whats-new-12.html |
if you send me an email, i can attach the v2 translation shader version for testing. for v3 tiles: VFX, noticed that feature but haven't tested yet.. i'll put it big higher on the test list, to see if its useful. (not sure how it would play with tiles version & culling system though. but for single cloud(s) should certainly work) |
Thanks! I sent you an email. about the v3 tiles question, I really think for most cases Start() adjustment would be sufficient. At least for the use cases I imagine for my own projects. |
made initial tests for this issue, this should work, so i expect it to come in the next update. |
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?
The text was updated successfully, but these errors were encountered: