C# 클래스 AbstractDialogueManager, XMGDialogue

Abstract dialogue manager
상속: MonoBehaviour
파일 보기 프로젝트 열기: xmgstudio/XMGDialogue

보호된 프로퍼티들

프로퍼티 타입 설명
conversationFile List
dialogueContexts List

공개 메소드들

메소드 설명
Initialize ( ) : void

Initialize this dialogue manager.

StartConversation ( TextAsset serializedConversation, AbstractDialogueContext, context ) : DialogueController,

Find the conversation with the correct name and create a Dialogue Controller to manage that conversation.

메소드 상세

Initialize() 공개 추상적인 메소드

Initialize this dialogue manager.
public abstract Initialize ( ) : void
리턴 void

StartConversation() 공개 추상적인 메소드

Find the conversation with the correct name and create a Dialogue Controller to manage that conversation.
public abstract StartConversation ( TextAsset serializedConversation, AbstractDialogueContext, context ) : DialogueController,
serializedConversation UnityEngine.TextAsset The data of the conversation to start.
context AbstractDialogueContext, The dialogue context to attatch to the controller.
리턴 DialogueController,

프로퍼티 상세

conversationFile 보호되어 있는 프로퍼티

The conversation file that is currently loaded.
protected List conversationFile
리턴 List

dialogueContexts 보호되어 있는 프로퍼티

A list of all the dialogue contexts that this dialogue manager supports.
protected List dialogueContexts
리턴 List