-
Notifications
You must be signed in to change notification settings - Fork 155
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
Generate Draco and Time Dynamic Point Cloud tilesets #150
Conversation
@@ -956,11 +1014,14 @@ function savePointCloudTileset(tilesetName, tileOptions, tilesetOptions) { | |||
var result = createPointCloudTile(tileOptions); | |||
var pnts = result.pnts; | |||
var batchTableJson = result.batchTableJson; | |||
var extensionsUsed = result.extensionsUsed; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added an Extensions
class in https://github.com/AnalyticalGraphicsInc/3d-tiles-tools/pull/149/files, do you want to use that?
|
||
var encodedLength = encoder.EncodePointCloudToDracoBuffer(pointCloud, false, encodedDracoDataArray); | ||
if (encodedLength <= 0) { | ||
throw 'Error: Encoding Failed.'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Draco encoding failed
? Just so there's context if someone gets this error.
@ggetz this is finally ready |
Thanks @lilleyse! |
Generates sample tilesets for CesiumGS/cesium#6721 and CesiumGS/cesium#6559