mirror of
https://github.com/Steffo99/gravity-fusion.git
synced 2024-11-22 08:24:17 +00:00
36 lines
1.3 KiB
C#
36 lines
1.3 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class SpawnOnMouseClick : MonoBehaviour
|
|
{
|
|
[Header("Config")]
|
|
public int mouseButton = 0;
|
|
public int spawnedTier = 0;
|
|
public int spawnCount = 1;
|
|
public float appliedForce = 0.1f;
|
|
|
|
protected GameController gameController;
|
|
|
|
protected void Awake() {
|
|
gameController = GameObject.FindGameObjectWithTag("GameController").GetComponent<GameController>();
|
|
}
|
|
|
|
protected Vector3 GetWorldMousePosition() {
|
|
return Camera.main.ScreenToWorldPoint(Input.mousePosition);
|
|
}
|
|
|
|
protected void Update()
|
|
{
|
|
if(!gameController.upgradePanel.gameObject.activeSelf && Input.GetMouseButtonDown(mouseButton)) {
|
|
Vector3 mousePosition = GetWorldMousePosition();
|
|
for(int i = 0; i < spawnCount; i++) {
|
|
GameObject particleObject = Instantiate(gameController.particlePrefab, new Vector3(mousePosition.x, mousePosition.y, 0f), Quaternion.identity);
|
|
Particle particle = particleObject.GetComponent<Particle>();
|
|
particle.Tier = spawnedTier;
|
|
Vector2 direction = new Vector2(Random.value - 0.5f, Random.value - 0.5f).normalized;
|
|
particle.rigidbody.AddForce(direction * appliedForce);
|
|
}
|
|
}
|
|
}
|
|
}
|