Exemple #1
0
    public void queueThought(Thought thought)
    {
        SpeechEntry entry = new ThoughtSpeechEntry(thought);

        Debug.Log("Add thought: " + thought.getDescription());

        this.textQueue.Add(entry);

        // Generate and show the bubble
        Bubble bubble = this.genBubble();
        entry.setBubble(bubble);
    }