From 833086e7d2f4ef37dda23fd1c0feb663162d2b23 Mon Sep 17 00:00:00 2001 From: Spencer Date: Fri, 13 Apr 2018 21:38:43 -0500 Subject: [PATCH] Fixed Android Texturecube shader directory The app was crashing because it was failing to grab the `shaders/texturecubemap/skybox.vert.spv` asset because it was never getting included in the build --- android/texturecubemap/example.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/texturecubemap/example.json b/android/texturecubemap/example.json index 8654d620..71ce4787 100644 --- a/android/texturecubemap/example.json +++ b/android/texturecubemap/example.json @@ -1,7 +1,7 @@ { "apkname": "vulkanTexturecubemap", "directories": { - "shaders": "cubemap" + "shaders": "texturecubemap" }, "assets": { "models": [ @@ -16,4 +16,4 @@ "cubemap_yokohama_astc_8x8_unorm.ktx" ] } -} \ No newline at end of file +}