summaryrefslogtreecommitdiff
path: root/client/src/render/scene/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/render/scene/mod.rs')
-rw-r--r--client/src/render/scene/mod.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/client/src/render/scene/mod.rs b/client/src/render/scene/mod.rs
index 7743409..569f3b9 100644
--- a/client/src/render/scene/mod.rs
+++ b/client/src/render/scene/mod.rs
@@ -336,11 +336,7 @@ impl ScenePreparer {
}
});
- let armature = if let Some(res) = part.armature.clone() {
- Some(self.downloader.try_get(res)?)
- } else {
- Some(None)
- };
+ let armature = Some(None); // TODO
let pipeline = self.pipelines.try_get(PipelineSpec {
format: self.render_format,