feat: rose spawner setup
This commit is contained in:
parent
d6c618add0
commit
ff2d68ed07
12 changed files with 312 additions and 0 deletions
13
Assets/Scripts/View/RoseSpawner.cs
Normal file
13
Assets/Scripts/View/RoseSpawner.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
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);
|
||||
}
|
||||
}
|
||||
}
|
3
Assets/Scripts/View/RoseSpawner.cs.meta
Normal file
3
Assets/Scripts/View/RoseSpawner.cs.meta
Normal file
|
@ -0,0 +1,3 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 09c20020a55148b1b1590295456f9fcc
|
||||
timeCreated: 1713196864
|
Loading…
Add table
Add a link
Reference in a new issue