Move shortbow models to /models

This commit is contained in:
Ryan Huffman 2017-02-08 14:32:16 -08:00
parent f32df4f004
commit 8c088336e8
4 changed files with 1 additions and 1 deletions

View file

@ -78,7 +78,7 @@ for (var i = 0; i < TEMPLATES.length; ++i) {
if (template.type == "Model") {
var urlParts = template.modelURL.split("/");
var filename = urlParts[urlParts.length - 1];
var newURL = Script.resolvePath("assets/" + filename);
var newURL = Script.resolvePath("models/" + filename);
print("Updated url", template.modelURL, "to", newURL);
template.modelURL = newURL;
}