From b82da95b5181ac8bbae38efb13e950d5e88a4caa Mon Sep 17 00:00:00 2001 From: chai Date: Fri, 23 Oct 2020 13:08:43 +0800 Subject: =?UTF-8?q?*=E7=A7=BB=E5=8A=A8amplify=20shader=20editor=E5=88=B0th?= =?UTF-8?q?ird=20party=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Plugins/Editor/Menu/AmplifyShaderFunction.cs | 189 --------------------- 1 file changed, 189 deletions(-) delete mode 100644 Assets/AmplifyShaderEditor/Plugins/Editor/Menu/AmplifyShaderFunction.cs (limited to 'Assets/AmplifyShaderEditor/Plugins/Editor/Menu/AmplifyShaderFunction.cs') diff --git a/Assets/AmplifyShaderEditor/Plugins/Editor/Menu/AmplifyShaderFunction.cs b/Assets/AmplifyShaderEditor/Plugins/Editor/Menu/AmplifyShaderFunction.cs deleted file mode 100644 index df83bedb..00000000 --- a/Assets/AmplifyShaderEditor/Plugins/Editor/Menu/AmplifyShaderFunction.cs +++ /dev/null @@ -1,189 +0,0 @@ -// Amplify Shader Editor - Visual Shader Editing Tool -// Copyright (c) Amplify Creations, Lda - -using UnityEngine; -using UnityEditor; -using System; -using System.Collections.Generic; -using AmplifyShaderEditor; - -[Serializable] -public class AmplifyShaderFunction : ScriptableObject -{ - [SerializeField] - private string m_functionInfo = string.Empty; - public string FunctionInfo - { - get { return m_functionInfo; } - set { m_functionInfo = value; } - } - - [SerializeField] - private string m_functionName = string.Empty; - public string FunctionName - { - get { if( m_functionName.Length == 0 ) return name; else return m_functionName; } - set { m_functionName = value; } - } - - [SerializeField] - [TextArea( 5, 15 )] - private string m_description = string.Empty; - public string Description - { - get { return m_description; } - set { m_description = value; } - } - - [SerializeField] - private AdditionalIncludesHelper m_additionalIncludes = new AdditionalIncludesHelper(); - //public AdditionalIncludesHelper AdditionalIncludes - //{ - // get { return m_additionalIncludes; } - // set { m_additionalIncludes = value; } - //} - - [SerializeField] - private AdditionalPragmasHelper m_additionalPragmas = new AdditionalPragmasHelper(); - //public AdditionalPragmasHelper AdditionalPragmas - //{ - // get { return m_additionalPragmas; } - // set { m_additionalPragmas = value; } - //} - - [SerializeField] - private TemplateAdditionalDirectivesHelper m_additionalDirectives = new TemplateAdditionalDirectivesHelper( " Additional Directives" ); - public TemplateAdditionalDirectivesHelper AdditionalDirectives - { - get { return m_additionalDirectives; } - set { m_additionalDirectives = value; } - } - - [SerializeField] - private FunctionNodeCategories m_nodeCategory = FunctionNodeCategories.Functions; - public FunctionNodeCategories NodeCategory - { - get { return m_nodeCategory; } - set { m_nodeCategory = value; } - } - - [SerializeField] - private string m_customNodeCategory = string.Empty; - public string CustomNodeCategory - { - get - { - if( m_nodeCategory == FunctionNodeCategories.Custom ) - { - if( string.IsNullOrEmpty( m_customNodeCategory ) ) - return "Functions"; - else - return m_customNodeCategory; - } - else - { - return UIUtils.CategoryPresets[ (int)m_nodeCategory ]; - //return new SerializedObject( this ).FindProperty( "m_nodeCategory" ).enumDisplayNames[ (int)m_nodeCategory ]; - } - } - } - - [SerializeField] - private PreviewLocation m_previewPosition = PreviewLocation.Auto; - public PreviewLocation PreviewPosition - { - get { return m_previewPosition; } - set { m_previewPosition = value; } - } - - [SerializeField] - private bool m_hidden = false; - public bool Hidden - { - get { return m_hidden; } - set { m_hidden = value; } - } - - public void UpdateDirectivesList() - { - m_additionalDirectives.CleanNullDirectives(); - m_additionalDirectives.UpdateDirectivesFromSaveItems(); - - if( m_additionalIncludes.IncludeList.Count > 0 ) - { - m_additionalDirectives.AddItems( AdditionalLineType.Include, m_additionalIncludes.IncludeList ); - m_additionalIncludes.IncludeList.Clear(); - } - - if( m_additionalPragmas.PragmaList.Count > 0 ) - { - m_additionalDirectives.AddItems( AdditionalLineType.Pragma, m_additionalPragmas.PragmaList ); - m_additionalPragmas.PragmaList.Clear(); - } - } - - public void ResetDirectivesOrigin() - { - //if( UIUtils.CurrentShaderVersion() < 16807 ) - // Although the correct version was 1.6.7 rev 07 this issue was only detected on v1.7.1. rev 00 - // So to avoid potential incorrect saves over shader functions, I decided to broaden up the version range - if( UIUtils.CurrentShaderVersion() < 17101 ) - { - m_additionalDirectives.ResetDirectivesOrigin(); - } - } -} - -public class ShaderFunctionDetector : AssetPostprocessor -{ - static void OnPostprocessAllAssets( string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths ) - { - if( UIUtils.CurrentWindow == null ) - return; - - bool markForRefresh = false; - AmplifyShaderFunction function = null; - for( int i = 0; i < importedAssets.Length; i++ ) - { - function = AssetDatabase.LoadAssetAtPath( importedAssets[ i ] ); - if( function != null ) - { - markForRefresh = true; - break; - } - } - - if( deletedAssets.Length > 0 ) - markForRefresh = true; - - for( int i = 0; i < movedAssets.Length; i++ ) - { - function = AssetDatabase.LoadAssetAtPath( movedAssets[ i ] ); - if( function != null ) - { - markForRefresh = true; - break; - } - } - - for( int i = 0; i < movedFromAssetPaths.Length; i++ ) - { - function = AssetDatabase.LoadAssetAtPath( movedFromAssetPaths[ i ] ); - if( function != null ) - { - markForRefresh = true; - break; - } - } - - if( markForRefresh ) - { - markForRefresh = false; - if( function != null ) - { - IOUtils.UpdateSFandRefreshWindows( function ); - } - UIUtils.CurrentWindow.LateRefreshAvailableNodes(); - } - } -} -- cgit v1.1-26-g67d0