For enemies with projectiles, I would like to slow down the game like a Max Payne type bullet time when the projectile is half way between the enemy and the player.
How can I create a bullet time Effect for some projectiles and not others ?
Are there any assetstore assets that will help create this Effect ?
Slowing your game down isn’t as complicated as you might think. You can use Time.timeScale to do this very easily. Make a separate prefab for bullets which you want to have this effect, and calculate their distance from the player to trigger the change in timeScale. And, of course, change it back afterward.