浏览代码

Removed useless methods

/namespace
Thomas 7 年前
当前提交
b17057ee
共有 1 个文件被更改,包括 0 次插入10 次删除
  1. 10
      ScriptableRenderPipeline/Core/Volume/VolumeStack.cs

10
ScriptableRenderPipeline/Core/Volume/VolumeStack.cs


}
}
public bool HasComponent<T>()
{
return HasComponent(typeof(T));
}
public bool HasComponent(Type type)
{
return components.ContainsKey(type);
}
public T GetComponent<T>()
where T : VolumeComponent
{

正在加载...
取消
保存