mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-22 09:24:19 +00:00
19 lines
472 B
C#
19 lines
472 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class SpawnInArea : MonoBehaviour
|
|
{
|
|
public GameObject instantiate;
|
|
public Vector2 min;
|
|
public Vector2 max;
|
|
public int quantity = 1;
|
|
|
|
private void Start()
|
|
{
|
|
for(int i = 0; i < quantity; i++) {
|
|
Instantiate(instantiate, new Vector2(Random.Range(min.x, max.x), Random.Range(min.y, max.y)), Quaternion.identity, transform);
|
|
}
|
|
}
|
|
|
|
}
|