UnityEditor.ShaderImporterInspector.Apply C# (CSharp) 메소드

Apply() 개인적인 메소드

private Apply ( ) : void
리턴 void
        internal override void Apply()
        {
            base.Apply();
            ShaderImporter target = base.target as ShaderImporter;
            if (target != null)
            {
                target.SetDefaultTextures(this.propertyNames.ToArray(), this.textures.ToArray());
                AssetDatabase.ImportAsset(AssetDatabase.GetAssetPath(target));
            }
        }