docs: fix table style in markdown

This commit is contained in:
xiaoiver 2019-10-08 20:25:39 +08:00 committed by GitHub
parent 31a3db93a1
commit 31ab7b48cb
1 changed files with 5 additions and 3 deletions

View File

@ -45,6 +45,7 @@ ClearPass -> RenderPass -> [ ...其他后处理 Pass ] -> CopyPass
```
目前各内置 Pass 说明如下:
| Pass 名称 | 类型 | 参数 | 说明 |
| -------- | --- | ------------- | --------- |
| ClearPass | normal | 无 | 清除 framebufferclearColor 为 [0, 0, 0, 0] |
@ -54,8 +55,9 @@ ClearPass -> RenderPass -> [ ...其他后处理 Pass ] -> CopyPass
| BlurVPass | post-processing | `blurRadius` 垂直方向模糊半径,默认值为 `8.0` | 同上 |
后续待实现 Pass 如下:
* [] PickingPass 负责拾取
* [] ShadowPass 负责生成 shadowMap供 PCF、CSM 等实时阴影技术使用
- [ ] PickingPass 负责拾取
- [ ] ShadowPass 负责生成 shadowMap供 PCF、CSM 等实时阴影技术使用
## 使用方法