您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
17 行
461 B
17 行
461 B
using UnityEngine;
|
|
|
|
namespace UnityEditor.VFXToolbox.ImageSequencer
|
|
{
|
|
[Processor("Color","Alpha From RGB", typeof(AlphaFromRGBProcessor))]
|
|
public class AlphaFromRGBProcessorSettings : ProcessorSettingsBase
|
|
{
|
|
public Color BWFilterTint;
|
|
//public Vector3 Weights;
|
|
|
|
public override void Default()
|
|
{
|
|
BWFilterTint = Color.white;
|
|
//Weights = new Vector3(0.2126f, 0.7152f, 0.0722f);
|
|
}
|
|
}
|
|
}
|