15 lines
309 B
C#
15 lines
309 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace cylvester
|
|||
|
{
|
|||
|
public class RandomPosition : MonoBehaviour
|
|||
|
{
|
|||
|
public void OnLoopStarted()
|
|||
|
{
|
|||
|
var x = Random.Range(-3f, 3f);
|
|||
|
var y = Random.Range(-3f, 3f);
|
|||
|
transform.localPosition = new Vector3(x, y, 0f);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|