您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
27 行
788 B
27 行
788 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEditor.Graphing;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Serializable]
|
|
public class MaterialGraph : AbstractMaterialGraph, IShaderGraph
|
|
{
|
|
public IMasterNode masterNode
|
|
{
|
|
get { return GetNodes<INode>().OfType<IMasterNode>().FirstOrDefault(); }
|
|
}
|
|
|
|
public string GetShader(string name, GenerationMode mode, out List<PropertyCollector.TextureInfo> configuredTextures, List<string> sourceAssetDependencyPaths = null)
|
|
{
|
|
return masterNode.GetShader(mode, name, out configuredTextures, sourceAssetDependencyPaths);
|
|
}
|
|
|
|
public void LoadedFromDisk()
|
|
{
|
|
OnEnable();
|
|
ValidateGraph();
|
|
}
|
|
}
|
|
}
|