blob: 2b67f81696be19805a48d008845b5b83bf2a7029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// 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 ) );
}
}
}
|