暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestSequence.cs 381B

1234567891011121314
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. public class TestSequence : MonoBehaviour
  4. {
  5. public bool autoMode = false;
  6. public bool loop = false;
  7. public int loopCycles = 1;
  8. public List<LoadLevel> orderedLoadLevels = new List<LoadLevel>
  9. {
  10. new LoadLevel(LoadLevel.loadlevels.High, 30),
  11. new LoadLevel(LoadLevel.loadlevels.Mid, 20)
  12. };
  13. }