Roses/Assets/Scripts/View/RoseSpawner.cs
2024-04-15 18:07:43 +02:00

13 lines
No EOL
298 B
C#

using System;
using UnityEngine;
namespace View {
public class RoseSpawner : MonoBehaviour {
[SerializeField] private Rect spawnerRegion;
[SerializeField] private GameObject rose;
private void OnDrawGizmos() {
Gizmos.DrawWireCube(spawnerRegion.position, spawnerRegion.size);
}
}
}