diff options
author | David Thompson <dthompson2@worcester.edu> | 2019-10-28 17:20:11 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2019-10-28 17:20:52 -0400 |
commit | 6577012006004936a9065dcc606b78942037c87f (patch) | |
tree | 0ac90fcfed46dd7ae0bf251973dab5078d5ec97c | |
parent | 573b23023b36d5b30377db8b78f464c9eddba3b2 (diff) |
render: model: Add additional aliases for .mtl bump map specifiers.
-rw-r--r-- | chickadee/render/model.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chickadee/render/model.scm b/chickadee/render/model.scm index 0b2b306..332d211 100644 --- a/chickadee/render/model.scm +++ b/chickadee/render/model.scm @@ -317,7 +317,7 @@ (loop (cons* (cons 'specular-map texture) (cons 'use-specular-map? #t) opts)))) - (("bump" . args) + (((or "map_Bump" "map_bump" "bump") . args) ; normal map (let* ((bump-opts (parse-map-args args)) (file (scope-file (assq-ref bump-opts 'file-name))) |