diff --git a/Editor/LycianthesConfig.cs b/Editor/LycianthesConfig.cs index 6bad9dd4635fac9c03643d4aae379b459317a830..65d2c4014351a9c73311d841a5071de7787881a3 100644 --- a/Editor/LycianthesConfig.cs +++ b/Editor/LycianthesConfig.cs @@ -9,6 +9,7 @@ using Sirenix.OdinInspector; using System; +using UnityEditor; using UnityEngine; namespace Lycianthes @@ -36,7 +37,9 @@ namespace Lycianthes if (!PlayerPrefs.HasKey(KEY_LYCIANTHES_CONFIG)) { - instance = new LycianthesConfig(); ; + instance = new LycianthesConfig(); + instance.CompanyName = PlayerSettings.companyName; + instance.AuthorName = "New User"; return instance; }