2022-10-25 19:07:39 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class StartSeneData : MonoBehaviour
|
|
|
|
{
|
2023-04-09 14:35:38 +00:00
|
|
|
[Header("Game mode")]
|
2023-07-28 10:44:02 +00:00
|
|
|
public int gameMode = 0;// default trainning mode
|
2023-07-08 14:22:31 +00:00
|
|
|
[Header("Targets Prob")]
|
|
|
|
public float attackProb = 0f;
|
|
|
|
public float gotoProb = 0f;
|
|
|
|
public float defenceProb = 0f;
|
2022-10-25 19:07:39 +00:00
|
|
|
|
|
|
|
void Awake()
|
|
|
|
{
|
|
|
|
DontDestroyOnLoad(transform.gameObject);
|
|
|
|
}
|
|
|
|
}
|