官方文档: https://krpano.com/plugins/postprocessing/#pp_light.lights
主要包含三个js文件, pp_light.js, pp_sharpen.js, pp_blur.js
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | // 光线插件 <plugin name="pp_light" devices="html5" keep="true"         url="plugins/pp_light.js"          enabled="true" // 是否启动         exposure="0.0" // 曝光度         lights="0.0" // 亮度         shadows="0.0" // 阴影(常用,.调节亮度)         filterrange="60.0" //滤波         masking="1.0" //亮度蒙版         quality="7" // 质量         order=""         phase="2"         /> // 模糊插件 <plugin name="pp_blur" devices="html5" keep="true"         url="plugins/pp_blur.js"          enabled="true"         range="0.0" // 模糊度         quality="10" // 质量         linearrgb="false"         mirroredges="false"         order=""         phase="2"         /> // 锐化插件 <plugin name="pp_sharpen" devices="html5" keep="true"         url="plugins/pp_sharpen.js"          enabled="true"         strength="0.0" // 锐化         range="0.0" // 锐化度         luminanceonly="true"         quality="5"         order=""         phase="2"         /> | 
经过我的简单尝试, 差不多摸索出这些参数, 如有不对, 还请指出!
 雅荷心语博客
雅荷心语博客