浏览代码

D'oh

/main
Thomas 7 年前
当前提交
43ea0206
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 8
      ScriptableRenderPipeline/Core/CoreRP/Volume/VolumeProfile.cs

8
ScriptableRenderPipeline/Core/CoreRP/Volume/VolumeProfile.cs


return false;
}
public bool TryGetAllSubclassOf<T>(Type type, List<T> component)
public bool TryGetAllSubclassOf<T>(Type type, List<T> result)
int count = component.Count;
int count = result.Count;
components.Add(comp);
result.Add((T)comp);
return count != component.Count;
return count != result.Count;
}
}
}
正在加载...
取消
保存