Cocos Creator3.x实现拍照闪光灯效果
Posted LANGZI7758521
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cocos Creator3.x实现拍照闪光灯效果相关的知识,希望对你有一定的参考价值。
https://download.csdn.net/download/LANGZI7758521/22010455
效果地址
思路
- 在最上层添加一个白色的层,类似闪光灯的白光,设置隐藏;
- 启动拍照时,首先把Tween.show()白色层设置显示,然后使用Tween.hide()进行从亮逐渐到暗
核心代码
let sprite = find('Canvas/Sprite')?.getComponent(Sprite);
sprite!.node.active = true;
this.tweenSH = tween(sprite!.node)
.delay(0.1)
.show()
.delay(0.1)
.hide()
.union()
.repeat(2)
以上是关于Cocos Creator3.x实现拍照闪光灯效果的主要内容,如果未能解决你的问题,请参考以下文章
cocos creator3.x 关于Graphics组件绘制不显示的问题
使用 AVCapturePhotoOutput 使用闪光灯拍照时出现问题
Android 11.0 修复Camera 使用闪光灯拍照后,查看图片时详细信息为“未使用闪光灯”状态