From 99d3707c5bc315991db9e26d233cba1c8c2eeaa4 Mon Sep 17 00:00:00 2001 From: Isamu Mogi Date: Thu, 6 Jun 2019 22:48:36 +0900 Subject: [PATCH] Fix typo (Base64Embedded) --- Assets/VRM/UniGLTF/Scripts/Format/glTF.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/VRM/UniGLTF/Scripts/Format/glTF.cs b/Assets/VRM/UniGLTF/Scripts/Format/glTF.cs index 17252adbb..9067e6f09 100644 --- a/Assets/VRM/UniGLTF/Scripts/Format/glTF.cs +++ b/Assets/VRM/UniGLTF/Scripts/Format/glTF.cs @@ -247,7 +247,7 @@ namespace UniGLTF { if (image.uri.StartsWith("data:")) { - textureName = !string.IsNullOrEmpty(image.name) ? image.name : string.Format("{0:00}#Base64Embeded", imageIndex); + textureName = !string.IsNullOrEmpty(image.name) ? image.name : string.Format("{0:00}#Base64Embedded", imageIndex); } else {