public void OnPreprocessBuild(BuildReport report)
        {
            IntroductionAsset introAsset = Resources.Load <IntroductionAsset>(IntroductionAsset.ASSET_NAME);

            if (introAsset.RestoreOnBuild)
            {
                introAsset.Restore();
            }
        }
Beispiel #2
0
 public void RestoreIntroductions()
 {
     asset.Restore();
 }