summaryrefslogtreecommitdiff
path: root/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateShaderPropertyData.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/TemplateShaderPropertyData.cs
parent8b04ea73e540067f83870b61d89db4868fea5e8a (diff)
* move folder
Diffstat (limited to 'Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateShaderPropertyData.cs')
-rw-r--r--Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateShaderPropertyData.cs44
1 files changed, 0 insertions, 44 deletions
diff --git a/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateShaderPropertyData.cs b/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateShaderPropertyData.cs
deleted file mode 100644
index 2b67f816..00000000
--- a/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Templates/TemplateShaderPropertyData.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-// Amplify Shader Editor - Visual Shader Editing Tool
-// Copyright (c) Amplify Creations, Lda <info@amplify.pt>
-
-using System;
-
-namespace AmplifyShaderEditor
-{
- [Serializable]
- public class TemplateShaderPropertyData
- {
- public string PropertyInspectorName;
- public string PropertyName;
- public WirePortDataType PropertyDataType;
- public PropertyType PropertyType;
-
- public int Index;
- public string FullValue;
- public string ReplacementValueHelper;
- public string Identation;
-
- public TemplateShaderPropertyData( int index, string fullValue,string identation, string propertyInspectorName, string propertyName, WirePortDataType propertyDataType , PropertyType propertyType )
- {
- Index = index;
- FullValue = fullValue;
- Identation = identation;
- PropertyInspectorName = string.IsNullOrEmpty( propertyInspectorName )?propertyName: propertyInspectorName;
- PropertyName = propertyName;
- PropertyDataType = propertyDataType;
- PropertyType = propertyType;
- int idx = FullValue.LastIndexOf( "=" );
- ReplacementValueHelper = ( idx >= 0 ) ? FullValue.Substring( 0, idx + 1 ) +" ": FullValue + " = ";
- }
-
- public string CreatePropertyForValue( string value )
- {
- return value.Contains( PropertyName ) ? Identation + value : ReplacementValueHelper + value;
- }
-
- public override string ToString()
- {
- return string.Format( "{0}(\"{1}\", {2})", PropertyName, PropertyInspectorName,UIUtils.WirePortToCgType( PropertyDataType ) );
- }
- }
-}