1234567891011121314151617181920212223 |
- using UnityEngine;
- public class TestSetup : MonoBehaviour
- {
- // Start is called once before the first execution of Update after the MonoBehaviour is created
- void Start()
- {
- // 初始化狗数据用于测试
- //DogProperty puppy = new DogProperty();
- //UserProperty.puppies.Add(puppy);
- if (EnviromentSetting.languageData == null)
- {
- EnviromentController.InitialGameEnviroment();
- }
- }
- // Update is called once per frame
- // void Update()
- // {
- // }
- }
|