如何在Aframe中向实体添加淡入淡出过渡
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Aframe中向实体添加淡入淡出过渡相关的知识,希望对你有一定的参考价值。
我想淡化A-Frame中的实体,我似乎无法使用文档找到解决方案。任何帮助将不胜感激谢谢!
答案
包括动画组件:qazxsw poi
然后:
https://github.com/ngokevin/kframe/tree/master/components/animation
我通过<a-box animation="property: components.material.material.opacity; from: 1; to: 0"></a-box>
进行跳过A-Frame setAttribute的高性能补间。
另一答案
您可以使用components
更改<a-animation>
属性,如下所示:
material.opacity
。你可以查看文档<a-entity id="myEntity">
<a-animation attribute="material.opacity" dur="1000" repeat="0></a-animation>
</a-entity>
。
活小提琴here。
以上是关于如何在Aframe中向实体添加淡入淡出过渡的主要内容,如果未能解决你的问题,请参考以下文章