UniGLTF.M17N

This commit is contained in:
ousttrue
2021-04-19 20:55:46 +09:00
parent 33bd8a38f9
commit df8fbe79cd
15 changed files with 26 additions and 12 deletions

View File

@@ -2,6 +2,7 @@ using UnityEditor;
using UnityEngine;
using System.IO;
using UniGLTF;
using UniGLTF.M17N;
namespace VRM
{
@@ -55,7 +56,7 @@ namespace VRM
static string RequiredMessage(string name)
{
switch (Getter.Lang)
switch (LanguageGetter.Lang)
{
case Languages.ja:
return $"必須項目。{name} を入力してください";
@@ -162,7 +163,7 @@ namespace VRM
static string Msg(MessageKeys key)
{
return Getter.Msg(key);
return LanguageGetter.Msg(key);
}
bool m_foldoutInfo = true;