HeavenStudioPlus/Assets/Scripts/Games/ShootEmUp/Effect.cs
フマジメ 619c01b77a Shoot-'em-up (#796)
* 無駄

* spawn

* Start Interval

* new sprites, background particles

* fix white flash

* wip hit particle

* finished hit particle

* oops

* oops2

* sorry last tweak

* Damage

* Merge manually

* modified: Update()

* fix particle layering

* tweak particle more

* more enemies

* Changed the way effects are generated

* animation fixes

* attack fix

* laser and enemy miss anim

* sorry!!!!!!!!!

* monitor animations

* intro gate animations

* trajectory

* Pass Turn (WIP)

* Animation Event

* Fine placement

* Pass Turn

* Placement Pattern

* EnemyType

* icon

* fix bg, fix animations, added smoke particle

* Adding and modifying effects

* I made a mistake in the operation

---------

Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
Co-authored-by: ev <85412919+iloveoatmeal2022@users.noreply.github.com>
2024-03-25 01:41:51 +00:00

16 lines
No EOL
280 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using HeavenStudio.Util;
namespace HeavenStudio.Games.Scripts_ShootEmUp
{
public class Effect : MonoBehaviour
{
void End()
{
Destroy(gameObject);
}
}
}