private void Start()
        {
            // Load
            var boss = GetTrackerBoss();

            if (cstFromFile)
            {
                var basePath = "";
                if (cstPathBase == RelativePathBase.ProjectAssets)
                {
                    basePath = Application.dataPath;
                }
                else if (cstPathBase == RelativePathBase.TrackerBoss)
                {
                    if (boss == null)
                    {
                        throw new System.Exception("No TrackerBoss in scene.");
                    }
                    basePath = boss.MatrixDirectory;
                }
                var path      = System.IO.Path.Combine(basePath, cstPath);
                var cstMatrix = MatrixIO.ReadMatrixFromFile(path);
                SetCstMatrix(cstMatrix);
            }
            if (offsetFromFile)
            {
                var basePath = "";
                if (offsetPathBase == RelativePathBase.ProjectAssets)
                {
                    basePath = Application.dataPath;
                }
                else if (offsetPathBase == RelativePathBase.TrackerBoss)
                {
                    if (boss == null)
                    {
                        throw new System.Exception("No TrackerBoss in scene.");
                    }
                    basePath = boss.MatrixDirectory;
                }
                var path         = System.IO.Path.Combine(basePath, offsetPath);
                var offsetMatrix = MatrixIO.ReadMatrixFromFile(path);
                SetOffsetMatrix(offsetMatrix);
            }
        }
 private void Start()
 {
     // Load
     if (cstFromFile)
     {
         var basePath = "";
         if (cstPathBase == TrackerTransform.RelativePathBase.ProjectAssets)
         {
             basePath = Application.dataPath;
         }
         else if (cstPathBase == TrackerTransform.RelativePathBase.TrackerBoss)
         {
             basePath = MatrixDirectory;
         }
         var path      = System.IO.Path.Combine(basePath, cstPath);
         var cstMatrix = MatrixIO.ReadMatrixFromFile(path);
         SetCstMatrix(cstMatrix);
     }
 }