21 lines
572 B
C#
21 lines
572 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class StartSeneData : MonoBehaviour
|
|
{
|
|
[Header("Game mode")]
|
|
public int gameMode = 0;// default trainning mode
|
|
[Header("Targets Prob")]
|
|
public float attackProb = 0f;
|
|
public List<float> attackLevelProbs = new List<float>();
|
|
public float gotoProb = 0f;
|
|
public List<float> gotoLevelProbs = new List<float>();
|
|
public float defenceProb = 0f;
|
|
public List<float> defenceLevelProbs = new List<float>();
|
|
|
|
void Awake()
|
|
{
|
|
DontDestroyOnLoad(transform.gameObject);
|
|
}
|
|
}
|