コード例 #1
0
    // activate the thought and end sequence
    public void Accept()
    {
        // Time.timeScale = 1;
        canvas.SetActive(false);
        RunState runState = runManager.runState;

        runState.thoughtHistory.Add(currentThought);
        currentThought.AcceptEffect(runState);
        runManager.PostThoughtSelect();
        currentThought = null;
    }