Home › Forums › TimelineFX Editor › Vaders and effects not being cleared? › Re: Re: Vaders and effects not being cleared?
Very astute of you š
My gut feeling was the bullets not being tidied up properly, and I was right. This code:
'delete the bullet if it flies off of the screen
If y < - 10 Or y > GraphicsHeight() + 10
dead = True
effect.softkill()
End If
in the bullet update method accounts for bullets going off the top or bottom of the screen but not the sides…Thanks for spotting that one, will fix it.