浏览代码

Commented code specific to 4.x .NET runtime

/main
Frédéric Vauchelles 6 年前
当前提交
d61424da
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 2
      ScriptableRenderPipeline/Core/CoreRP/Editor/ShaderGenerator/CSharpToHLSL.cs

2
ScriptableRenderPipeline/Core/CoreRP/Editor/ShaderGenerator/CSharpToHLSL.cs


// Iterate over assemblyList, discover all applicable types with fully qualified names
var assemblyList = AppDomain.CurrentDomain.GetAssemblies()
// We need to exclude dynamic assemblies (their type can't be queried, throwing an exception below)
.Where(ass => !ass.IsDynamic)
//.Where(ass => !ass.IsDynamic)
.ToList();
foreach (var assembly in assemblyList)

正在加载...
取消
保存