Stars animation on intro
SoundBlaster opened this issue · 2 comments
SoundBlaster commented
Some improvement for stars animation on Intro screen, like flying through stars array:
func randomizeEmitterPosition() {
let sizeWidth = 1.0*self.bounds.size.height
let radius = 0 + CGFloat(arc4random()) % sizeWidth;
emitter.emitterSize = CGSizeMake(radius, radius)
particle.birthRate = 10 + sqrt(Float(radius))
}
Art3mS1d commented
Looks great!!! Thanks, @SoundBlaster. b104fb5
xiaoqi723 commented
why not have OC ?