aboutsummaryrefslogtreecommitdiff
path: root/exporter/src
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-03-22 16:41:27 +0100
committermetamuffin <metamuffin@disroot.org>2025-03-22 16:41:27 +0100
commitd780d420a69fe239bdb93ce7d1899e380a682062 (patch)
treea782e640897b5459b7c6c340b389a8cb1fa02ada /exporter/src
parente52a32df7dad09a06f2791f8cb8aff51fd856404 (diff)
downloadunity-tools-d780d420a69fe239bdb93ce7d1899e380a682062.tar
unity-tools-d780d420a69fe239bdb93ce7d1899e380a682062.tar.bz2
unity-tools-d780d420a69fe239bdb93ce7d1899e380a682062.tar.zst
wrong inheritance of meshrenderer
Diffstat (limited to 'exporter/src')
-rw-r--r--exporter/src/bin/meshes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exporter/src/bin/meshes.rs b/exporter/src/bin/meshes.rs
index 4cd86e8..dcc8059 100644
--- a/exporter/src/bin/meshes.rs
+++ b/exporter/src/bin/meshes.rs
@@ -27,7 +27,7 @@ fn main() -> anyhow::Result<()> {
let positions = mesh
.vertex_data
- .read_channel_vec::<Vec3>(VertexDataChannel::Position)?
+ .read_channel_vec::<Vec3>(VertexDataChannel::Position, false)?
.unwrap();
for Vec3 { x, y, z } in positions {
writeln!(obj, "v {x} {y} {z}")?;