コード例 #1
0
    void Awake()
    {
        if (instance == null)
        {
            instance = this;
        }
        else if (instance != this)
        {
            Destroy(gameObject);
        }
        DontDestroyOnLoad(gameObject);

        animator = GetComponent <Animator>();
        dialogue = GetComponent <DialogueHUDController>();
    }
コード例 #2
0
 public void SetDialogueHUD(DialogueHUDController d)
 {
     dialogueHUD = d;
 }