Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 ARKit 与 SceneKit 一起使用,并且我想实现类似于下面粘贴的视频中所示的效果。我已经尝试了相机的所有属性,如饱和度、对比度等,但无法达到这样的效果。
https://youtu.be/C16I_VxHboc
当用户在屏幕上从左到右平移时,就会达到这种效果。请建议一种使用 iOS 相机(SCNCamera)执行此操作的方法。
提前致谢。
您可以添加一个 UIView 而不是拉伸整个屏幕并将其背景颜色设为黑色,alpha 为 0,然后当您想要添加调光时,您可以使用动画更改视图的 alpha。
UIView.animate(withDuration: 1, animations: { self.view.alpha = 1 })