summaryrefslogtreecommitdiff
path: root/src/transform_hierarchy.c
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-06-10 13:35:23 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-06-10 13:35:23 +1000
commit99f2476d7bb8479d543f080c209324c77c775737 (patch)
tree8c8f52155552fb7c9ade94e70f5f11d36fa73701 /src/transform_hierarchy.c
parentb9a7166d9a7e2b0eed948353c134e72dfa86ab58 (diff)
bring back gltf
Diffstat (limited to 'src/transform_hierarchy.c')
-rw-r--r--src/transform_hierarchy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/transform_hierarchy.c b/src/transform_hierarchy.c
index 2f2ff01..2c427b2 100644
--- a/src/transform_hierarchy.c
+++ b/src/transform_hierarchy.c
@@ -165,11 +165,12 @@ bool print_node(transform_node* node, void* ctx_data) {
}
// Grab the model
- model m = ctx->core->models->data[node->model.raw];
+ // FIXME
+ // model m = ctx->core->models->data[node->model.raw];
for (int i = 0; i < ctx->indentation_lvl; i++) {
printf(" ");
}
- printf("Node %s\n", m.name.buf);
+ // printf("Node %s\n", m.name.buf);
ctx->indentation_lvl++;
return true;