[TASK] Working on duck-catching minigame

This commit is contained in:
2019-08-27 01:48:20 +02:00
parent a507a4e70e
commit 9057c295da
3403 changed files with 8231793 additions and 40 deletions

View File

@@ -0,0 +1,40 @@
using UnityEngine;
using System.Collections;
namespace PolygonArsenal
{
public class PolygonLoopScript : MonoBehaviour
{
public GameObject chosenEffect;
public float loopTimeLimit = 2.0f;
void Start()
{
PlayEffect();
}
public void PlayEffect()
{
StartCoroutine("EffectLoop");
}
IEnumerator EffectLoop()
{
//GameObject effectPlayer = (GameObject)Instantiate(chosenEffect, transform.position, transform.rotation);
GameObject effectPlayer = (GameObject)Instantiate(chosenEffect);
effectPlayer.transform.position = transform.position;
//effectPlayer.transform.rotation = Quaternion.Euler(new Vector3(0, 90, 0));
yield return new WaitForSeconds(loopTimeLimit);
Destroy(effectPlayer);
PlayEffect();
}
}
}