ios - SpriteKit : how to make SKEmitterNode particles twinkle?
<p><p>SpriteKit 中的 SKEmitterNode 可让您更改粒子属性,但是如何为粒子设置动画,使它们像本视频的 0:12 标记处一样闪烁?</p>
<p> <a href="https://www.youtube.com/watch?v=wYy2G0lVTAM" rel="noreferrer noopener nofollow">https://www.youtube.com/watch?v=wYy2G0lVTAM</a> </p>
<p>这可能吗?</p>
<p>我们尝试快速将颜色从黄色变为白色( Sprite 原本是白色的),但这并没有达到预期的闪烁效果:</p>
<pre><code> let colorizeYellow = SKAction.colorize(with: UIColor.yellow, colorBlendFactor: 1.0, duration: 0.2)
let colorizeReset = SKAction.colorize(withColorBlendFactor: 0.0, duration: 0.2)
let colorizeSequence = SKAction.sequence()
let colorizeRepeat = SKAction.repeatForever(colorizeSequence)
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>根据苹果的文档,你可以给粒子添加 Action :</p>
<blockquote>
<p>This means you can perform other interesting tricks, such as
animating the particle’s textures.</p>
</blockquote>
<p>在您提供的视频示例中,大多数粒子从完全“闪烁”开始,随着时间的推移变得越来越小,直到只剩下一个点并迅速消失。所以从一个闪烁的 Sprite 开始(有点像一个带有褪色提示的加号),缩小它并用一个普通的点交叉淡化它,当它缩小时也会淡出。应该很接近视频中的效果了。</p></p>
<p style="font-size: 20px;">关于ios - SpriteKit : how to make SKEmitterNode particles twinkle?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/44611156/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/44611156/
</a>
</p>
页:
[1]