-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gltf: Vertex attribute は UnsignedInt に対応していないので修正 (#351)
- 以下に従い、UnsignedIntをFloatに変更 - https://github.com/CesiumGS/glTF/blob/proposal-EXT_mesh_features/extensions/2.0/Vendor/EXT_mesh_features/README.md#feature-id-by-vertex <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **機能変更** - メッシュプリミティブが`UnsignedInt`をサポートしていないため、`feature_id`を`u32`から`f32`へ変換しました。これにより、バイナリコンテンツの書き込みとアクセサコンポーネントのタイプが影響を受けます。 <!-- end of auto-generated comment: release notes by coderabbit.ai -->
- Loading branch information
1 parent
c70a1e4
commit 8acf35d
Showing
4 changed files
with
31 additions
and
26 deletions.
There are no files selected for viewing
Binary file modified
BIN
+0 Bytes
(100%)
demo/cesium/examples/ext_structural_metadata/PlantCover.glb
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
demo/cesium/examples/ext_structural_metadata/SolitaryVegetationObject.glb
Binary file not shown.
48 changes: 26 additions & 22 deletions
48
demo/cesium/examples/ext_structural_metadata/tileset.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,27 @@ | ||
{ | ||
"asset": { | ||
"version": "1.1" | ||
}, | ||
"geometricError": 1e100, | ||
"root": { | ||
"boundingVolume": { | ||
"region": [ | ||
2.423545352784276, 0.6126113632476141, 2.423568686412357, | ||
0.6126530152363875, 48.27812072424482, 61.914851977799785 | ||
] | ||
}, | ||
"geometricError": 0.0, | ||
"contents": [ | ||
{ | ||
"uri": "PlantCover.glb" | ||
}, | ||
{ | ||
"uri": "SolitaryVegetationObject.glb" | ||
} | ||
] | ||
} | ||
} | ||
"asset": { | ||
"version": "1.1" | ||
}, | ||
"geometricError": 1e100, | ||
"root": { | ||
"boundingVolume": { | ||
"region": [ | ||
2.423545352784276, | ||
0.6126113632476141, | ||
2.423568686412357, | ||
0.6126530152363875, | ||
48.27812072424482, | ||
61.914851977799785 | ||
] | ||
}, | ||
"geometricError": 0.0, | ||
"contents": [ | ||
{ | ||
"uri": "PlantCover.glb" | ||
}, | ||
{ | ||
"uri": "SolitaryVegetationObject.glb" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters