summaryrefslogtreecommitdiff
path: root/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateCodeSnippetBase.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2022-03-10 14:07:40 +0800
committerchai <chaifix@163.com>2022-03-10 14:07:40 +0800
commit22891bf59032ba88262824255a706d652031384b (patch)
tree7595439ba9966c9402d37e37cee5e8cf098757d5 /Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateCodeSnippetBase.cs
parent8b04ea73e540067f83870b61d89db4868fea5e8a (diff)
* move folder
Diffstat (limited to 'Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateCodeSnippetBase.cs')
-rw-r--r--Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateCodeSnippetBase.cs102
1 files changed, 0 insertions, 102 deletions
diff --git a/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateCodeSnippetBase.cs b/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateCodeSnippetBase.cs
deleted file mode 100644
index ea717e62..00000000
--- a/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateCodeSnippetBase.cs
+++ /dev/null
@@ -1,102 +0,0 @@
-// Amplify Shader Editor - Visual Shader Editing Tool
-// Copyright (c) Amplify Creations, Lda <info@amplify.pt>
-
-using System;
-using UnityEngine;
-using System.Collections.Generic;
-
-namespace AmplifyShaderEditor
-{
- public enum TemplateCodeSnippetType
- {
- Toggle
- };
-
-
- public enum TemplateCodeSnippetInfoIdx
- {
- Name = 0,
- Type
- };
-
- [Serializable]
- public class TemplateCodeSnippetElement
- {
- public string Id;
- public string Snippet;
- public TemplateCodeSnippetElement( string id, string snippet )
- {
- Id = id;
- Snippet = snippet;
- }
- }
-
- [Serializable]
- public class TemplateCodeSnippetBase : ScriptableObject
- {
- [SerializeField]
- private string m_nameId;
-
- [SerializeField]
- private TemplateCodeSnippetType m_type;
-
- [SerializeField]
- private List<TemplateCodeSnippetElement> m_elements = new List<TemplateCodeSnippetElement>();
-
- public void Init( string nameId, TemplateCodeSnippetType type )
- {
- m_nameId = nameId;
- m_type = type;
- }
-
- public void AddSnippet( TemplateCodeSnippetElement element )
- {
- m_elements.Add( element );
- }
-
- public void Destroy()
- {
- for ( int i = 0; i < m_elements.Count; i++ )
- {
- m_elements[ i ].Snippet = null;
- }
- m_elements.Clear();
- m_elements = null;
- }
-
- public virtual void DrawProperties( ParentNode owner ) { }
- public virtual bool CheckSnippet() { return true; }
-
- public void InsertSnippet( ref string shaderBody )
- {
- bool insertSnippet = CheckSnippet();
- for ( int i = 0; i < m_elements.Count; i++ )
- {
- shaderBody = shaderBody.Replace( m_elements[ i ].Id, ( insertSnippet ? m_elements[ i ].Snippet : string.Empty ) );
- }
- }
- public string NameId { get { return m_nameId; } }
- public TemplateCodeSnippetType Type { get { return m_type; } }
- public List<TemplateCodeSnippetElement> Elements { get { return m_elements; } }
- }
-
- [Serializable]
- public class TemplateCodeSnippetToggle : TemplateCodeSnippetBase
- {
- private const string Label = "Activate";
- [SerializeField]
- private bool m_value = false;
-
-
- public override bool CheckSnippet()
- {
- return m_value;
- }
-
- public override void DrawProperties( ParentNode owner )
- {
- m_value = owner.EditorGUILayoutToggle( Label, m_value );
- }
- }
-
-}