Example #1
0
        internal void LoadWindowLayout()
        {
            if (m_WindowLayout == null)
            {
                return;
            }

            var layoutPath = AssetDatabase.GetAssetPath(m_WindowLayout);

            TutorialManager.LoadWindowLayout(layoutPath);
        }
Example #2
0
 public void LoadTutorialProjectLayout()
 {
     File.Copy(projectLayoutPath, k_UserLayoutPath, overwrite: true);
     TutorialManager.LoadWindowLayout(k_UserLayoutPath);
 }