我正在与aframe合作,并希望尝试使用成色效果进行后期处理,以在场景中获得黏土风格。但是ssao组件无法正常工作。
我尝试了“ bloom”和“ godray”,两者都很好。但是当我尝试“ ssao”时,它根本不起作用。结果很奇怪。最相关的参考是Google的云基础架构插图,可通过以下链接找到它: https://cloud.withgoogle.com/infrastructure但这是使用three.js,我想使用Aframe在VR中制作ssao。下面是代码。
<a-scene antialias="false"
effects="ssao, fxaa"
ssao="samples:16; rings:5; radius:0.5; ratio:0.5; intensity:1; scale:0.15; blurRadius:7; depthCutoff:10"
fxaa="true">
<a-assets>
<img id="sky" src="img/clearSunnySky.jpg">
<a-asset-item id="sample-model" src="gltf_model/model-UVS-MATERIALS.glb"></a-asset-item>
</a-assets>
<a-entity camera look-controls orbit-controls="target: 0 1.6 0; minDistance: 0.5; maxDistance: 180; initialPosition: 0 5 15"></a-entity>
<a-entity gltf-model="#sample-model"
scale="1 1 1"
rotation="0 0 0"
position="0 0 0">
</a-entity>
</a-scene>
任何帮助将不胜感激。谢谢!