示例#1
0
    private void Awake()
    {
        if (Instance == null)
        {
            Instance = this;
        }
        else
        {
            Destroy(gameObject);
        }

        randomVoiceLinesPool.AddRange(randomVoiceLines);
    }
示例#2
0
 private void Start()
 {
     audiopoolSystem = AudiopoolSystem.Instance;
 }