├── .gitattributes ├── .gitignore ├── Assets ├── DialogueSystem.meta ├── DialogueSystem │ ├── Animations.meta │ ├── Animations │ │ ├── DialogueBox.meta │ │ └── DialogueBox │ │ │ ├── DialogueBox_Close.anim │ │ │ ├── DialogueBox_Close.anim.meta │ │ │ ├── DialogueBox_Open.anim │ │ │ ├── DialogueBox_Open.anim.meta │ │ │ ├── TextBox.controller │ │ │ └── TextBox.controller.meta │ ├── Misc.meta │ ├── Misc │ │ ├── Fonts.meta │ │ └── Fonts │ │ │ ├── m5x7.ttf │ │ │ └── m5x7.ttf.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Conversation.prefab │ │ ├── Conversation.prefab.meta │ │ ├── Dialogue.prefab │ │ ├── Dialogue.prefab.meta │ │ ├── DialogueBox.prefab │ │ ├── DialogueBox.prefab.meta │ │ ├── DialogueManager.prefab │ │ ├── DialogueManager.prefab.meta │ │ ├── GameConversations.prefab │ │ └── GameConversations.prefab.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Builders.meta │ │ ├── Builders │ │ │ ├── TextEffectBuilders.meta │ │ │ └── TextEffectBuilders │ │ │ │ ├── AngryEffectBuilder.cs │ │ │ │ ├── AngryEffectBuilder.cs.meta │ │ │ │ ├── ITextEffectBuilder.cs │ │ │ │ ├── ITextEffectBuilder.cs.meta │ │ │ │ ├── WaveEffectBuilder.cs │ │ │ │ └── WaveEffectBuilder.cs.meta │ │ ├── Classes.meta │ │ ├── Classes │ │ │ ├── Character.cs │ │ │ └── Character.cs.meta │ │ ├── Controllers.meta │ │ ├── Controllers │ │ │ ├── ConversationController.cs │ │ │ ├── ConversationController.cs.meta │ │ │ ├── DialogueManagerController.cs │ │ │ ├── DialogueManagerController.cs.meta │ │ │ ├── GameConversationsController.cs │ │ │ └── GameConversationsController.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── CharacterEditor.cs │ │ │ ├── CharacterEditor.cs.meta │ │ │ ├── ConversationEditor.cs │ │ │ ├── ConversationEditor.cs.meta │ │ │ ├── DialogueManagerEditor.cs │ │ │ ├── DialogueManagerEditor.cs.meta │ │ │ ├── EditorButtons.cs │ │ │ ├── EditorButtons.cs.meta │ │ │ ├── NonComponentEditors.meta │ │ │ └── NonComponentEditors │ │ │ │ ├── ConversationStatusEditor.cs │ │ │ │ ├── ConversationStatusEditor.cs.meta │ │ │ │ ├── DialogueEditor.cs │ │ │ │ ├── DialogueEditor.cs.meta │ │ │ │ ├── ExpressionEditor.cs │ │ │ │ ├── ExpressionEditor.cs.meta │ │ │ │ ├── NewConversationsEditor.cs │ │ │ │ ├── NewConversationsEditor.cs.meta │ │ │ │ ├── SentenceEditor.cs │ │ │ │ └── SentenceEditor.cs.meta │ │ ├── GameComponents.meta │ │ ├── GameComponents │ │ │ ├── ConversationComponent.cs │ │ │ ├── ConversationComponent.cs.meta │ │ │ ├── ConversationTriggers.meta │ │ │ ├── ConversationTriggers │ │ │ │ ├── PositionTrigger.cs │ │ │ │ └── PositionTrigger.cs.meta │ │ │ ├── DialogueManagerComponent.cs │ │ │ ├── DialogueManagerComponent.cs.meta │ │ │ ├── GameConversationsComponent.cs │ │ │ ├── GameConversationsComponent.cs.meta │ │ │ ├── LetterComponent.cs │ │ │ ├── LetterComponent.cs.meta │ │ │ ├── TextEffects.meta │ │ │ └── TextEffects │ │ │ │ ├── AngryEffect.cs │ │ │ │ ├── AngryEffect.cs.meta │ │ │ │ ├── TextEffect.cs │ │ │ │ ├── TextEffect.cs.meta │ │ │ │ ├── WaveEffect.cs │ │ │ │ └── WaveEffect.cs.meta │ │ ├── Models.meta │ │ └── Models │ │ │ ├── Conversation.cs │ │ │ ├── Conversation.cs.meta │ │ │ ├── ConversationStatus.cs │ │ │ ├── ConversationStatus.cs.meta │ │ │ ├── Dialogue.cs │ │ │ ├── Dialogue.cs.meta │ │ │ ├── DialogueManager.cs │ │ │ ├── DialogueManager.cs.meta │ │ │ ├── Expression.cs │ │ │ ├── Expression.cs.meta │ │ │ ├── GameConversations.cs │ │ │ ├── GameConversations.cs.meta │ │ │ ├── Letter.cs │ │ │ ├── Letter.cs.meta │ │ │ ├── Sentence.cs │ │ │ └── Sentence.cs.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── UI.meta │ │ └── UI │ │ ├── Dialogues.png │ │ └── Dialogues.png.meta ├── Example.meta ├── Example │ ├── Animations.meta │ ├── Animations │ │ ├── Locke_IdleDown.anim │ │ ├── Locke_IdleDown.anim.meta │ │ ├── Locke_IdleLeft.anim │ │ ├── Locke_IdleLeft.anim.meta │ │ ├── Locke_IdleRight.anim │ │ ├── Locke_IdleRight.anim.meta │ │ ├── Locke_IdleUp.anim │ │ ├── Locke_IdleUp.anim.meta │ │ ├── Locke_WalkDown.anim │ │ ├── Locke_WalkDown.anim.meta │ │ ├── Locke_WalkLeft.anim │ │ ├── Locke_WalkLeft.anim.meta │ │ ├── Locke_WalkRight.anim │ │ ├── Locke_WalkRight.anim.meta │ │ ├── Locke_WalkUp.anim │ │ ├── Locke_WalkUp.anim.meta │ │ ├── PlayerAC.controller │ │ └── PlayerAC.controller.meta │ ├── Characters.meta │ ├── Characters │ │ ├── Edgar.asset │ │ ├── Edgar.asset.meta │ │ ├── Locke.meta │ │ ├── Locke │ │ │ ├── Locke.asset │ │ │ ├── Locke.asset.meta │ │ │ ├── Player.prefab │ │ │ └── Player.prefab.meta │ │ ├── Terra.asset │ │ └── Terra.asset.meta │ ├── Sounds.meta │ ├── Sounds │ │ ├── Edgar_Voice.wav │ │ ├── Edgar_Voice.wav.meta │ │ ├── Locke_Voice.wav │ │ ├── Locke_Voice.wav.meta │ │ ├── Terra_Voice.wav │ │ └── Terra_Voice.wav.meta │ ├── Sprites.meta │ ├── Sprites │ │ ├── Edgar.meta │ │ ├── Edgar │ │ │ ├── Edgar.png │ │ │ ├── Edgar.png.meta │ │ │ ├── Edgar_Sprites.png │ │ │ └── Edgar_Sprites.png.meta │ │ ├── Locke.meta │ │ ├── Locke │ │ │ ├── Locke_Portrait.png │ │ │ ├── Locke_Portrait.png.meta │ │ │ ├── Locke_Sprites.png │ │ │ └── Locke_Sprites.png.meta │ │ ├── Terra.meta │ │ ├── Terra │ │ │ ├── Terra.png │ │ │ ├── Terra.png.meta │ │ │ ├── Terra_Sprites.png │ │ │ └── Terra_Sprites.png.meta │ │ ├── scenario.gif │ │ └── scenario.gif.meta │ ├── TestScene.unity │ └── TestScene.unity.meta ├── MovementSystem.meta ├── MovementSystem │ ├── Examples.meta │ ├── Examples │ │ ├── SceneTest.unity │ │ ├── SceneTest.unity.meta │ │ ├── ghost.png │ │ ├── ghost.png.meta │ │ ├── ghostNPC.png │ │ ├── ghostNPC.png.meta │ │ ├── path.jpg │ │ └── path.jpg.meta │ ├── Main Camera.prefab │ ├── Main Camera.prefab.meta │ ├── Player.prefab │ ├── Player.prefab.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── CameraFollow.cs │ │ ├── CameraFollow.cs.meta │ │ ├── PlayerMovement.cs │ │ └── PlayerMovement.cs.meta ├── TextSeparator.meta └── TextSeparator │ ├── Enojado.jpg │ ├── Enojado.jpg.meta │ ├── ShakeText.cs │ ├── ShakeText.cs.meta │ ├── TestScene.unity │ ├── TestScene.unity.meta │ ├── TextSeparator.cs │ ├── TextSeparator.cs.meta │ ├── WaveText.cs │ └── WaveText.cs.meta ├── LICENSE.md ├── Logs └── Packages-Update.log ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset └── VFXManager.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/DialogueSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Animations.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Animations/DialogueBox.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Animations/DialogueBox.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Animations/DialogueBox/DialogueBox_Close.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Animations/DialogueBox/DialogueBox_Close.anim -------------------------------------------------------------------------------- /Assets/DialogueSystem/Animations/DialogueBox/DialogueBox_Close.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Animations/DialogueBox/DialogueBox_Close.anim.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Animations/DialogueBox/DialogueBox_Open.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Animations/DialogueBox/DialogueBox_Open.anim -------------------------------------------------------------------------------- /Assets/DialogueSystem/Animations/DialogueBox/DialogueBox_Open.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Animations/DialogueBox/DialogueBox_Open.anim.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Animations/DialogueBox/TextBox.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Animations/DialogueBox/TextBox.controller -------------------------------------------------------------------------------- /Assets/DialogueSystem/Animations/DialogueBox/TextBox.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Animations/DialogueBox/TextBox.controller.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Misc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Misc.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Misc/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Misc/Fonts.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Misc/Fonts/m5x7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Misc/Fonts/m5x7.ttf -------------------------------------------------------------------------------- /Assets/DialogueSystem/Misc/Fonts/m5x7.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Misc/Fonts/m5x7.ttf.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/Conversation.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/Conversation.prefab -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/Conversation.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/Conversation.prefab.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/Dialogue.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/Dialogue.prefab -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/Dialogue.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/Dialogue.prefab.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/DialogueBox.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/DialogueBox.prefab -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/DialogueBox.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/DialogueBox.prefab.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/DialogueManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/DialogueManager.prefab -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/DialogueManager.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/DialogueManager.prefab.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/GameConversations.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/GameConversations.prefab -------------------------------------------------------------------------------- /Assets/DialogueSystem/Prefabs/GameConversations.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Prefabs/GameConversations.prefab.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Builders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Builders.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/AngryEffectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/AngryEffectBuilder.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/AngryEffectBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/AngryEffectBuilder.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/ITextEffectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/ITextEffectBuilder.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/ITextEffectBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/ITextEffectBuilder.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/WaveEffectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/WaveEffectBuilder.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/WaveEffectBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Builders/TextEffectBuilders/WaveEffectBuilder.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Classes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Classes.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Classes/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Classes/Character.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Classes/Character.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Classes/Character.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Controllers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Controllers.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Controllers/ConversationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Controllers/ConversationController.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Controllers/ConversationController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Controllers/ConversationController.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Controllers/DialogueManagerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Controllers/DialogueManagerController.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Controllers/DialogueManagerController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Controllers/DialogueManagerController.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Controllers/GameConversationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Controllers/GameConversationsController.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Controllers/GameConversationsController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Controllers/GameConversationsController.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/CharacterEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/CharacterEditor.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/CharacterEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/CharacterEditor.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/ConversationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/ConversationEditor.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/ConversationEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/ConversationEditor.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/DialogueManagerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/DialogueManagerEditor.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/DialogueManagerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/DialogueManagerEditor.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/EditorButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/EditorButtons.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/EditorButtons.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/EditorButtons.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/ConversationStatusEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/ConversationStatusEditor.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/ConversationStatusEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/ConversationStatusEditor.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/DialogueEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/DialogueEditor.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/DialogueEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/DialogueEditor.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/ExpressionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/ExpressionEditor.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/ExpressionEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/ExpressionEditor.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/NewConversationsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/NewConversationsEditor.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/NewConversationsEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/NewConversationsEditor.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/SentenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/SentenceEditor.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/SentenceEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Editor/NonComponentEditors/SentenceEditor.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/ConversationComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/ConversationComponent.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/ConversationComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/ConversationComponent.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/ConversationTriggers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/ConversationTriggers.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/ConversationTriggers/PositionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/ConversationTriggers/PositionTrigger.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/ConversationTriggers/PositionTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/ConversationTriggers/PositionTrigger.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/DialogueManagerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/DialogueManagerComponent.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/DialogueManagerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/DialogueManagerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/GameConversationsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/GameConversationsComponent.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/GameConversationsComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/GameConversationsComponent.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/LetterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/LetterComponent.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/LetterComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/LetterComponent.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/TextEffects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/TextEffects.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/TextEffects/AngryEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/TextEffects/AngryEffect.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/TextEffects/AngryEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/TextEffects/AngryEffect.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/TextEffects/TextEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/TextEffects/TextEffect.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/TextEffects/TextEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/TextEffects/TextEffect.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/TextEffects/WaveEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/TextEffects/WaveEffect.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/GameComponents/TextEffects/WaveEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/GameComponents/TextEffects/WaveEffect.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Conversation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Conversation.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Conversation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Conversation.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/ConversationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/ConversationStatus.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/ConversationStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/ConversationStatus.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Dialogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Dialogue.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Dialogue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Dialogue.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/DialogueManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/DialogueManager.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/DialogueManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/DialogueManager.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Expression.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Expression.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Expression.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/GameConversations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/GameConversations.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/GameConversations.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/GameConversations.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Letter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Letter.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Letter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Letter.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Sentence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Sentence.cs -------------------------------------------------------------------------------- /Assets/DialogueSystem/Scripts/Models/Sentence.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Scripts/Models/Sentence.cs.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Sprites.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Sprites/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Sprites/UI.meta -------------------------------------------------------------------------------- /Assets/DialogueSystem/Sprites/UI/Dialogues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Sprites/UI/Dialogues.png -------------------------------------------------------------------------------- /Assets/DialogueSystem/Sprites/UI/Dialogues.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/DialogueSystem/Sprites/UI/Dialogues.png.meta -------------------------------------------------------------------------------- /Assets/Example.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example.meta -------------------------------------------------------------------------------- /Assets/Example/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations.meta -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_IdleDown.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_IdleDown.anim -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_IdleDown.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_IdleDown.anim.meta -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_IdleLeft.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_IdleLeft.anim -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_IdleLeft.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_IdleLeft.anim.meta -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_IdleRight.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_IdleRight.anim -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_IdleRight.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_IdleRight.anim.meta -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_IdleUp.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_IdleUp.anim -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_IdleUp.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_IdleUp.anim.meta -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_WalkDown.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_WalkDown.anim -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_WalkDown.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_WalkDown.anim.meta -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_WalkLeft.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_WalkLeft.anim -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_WalkLeft.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_WalkLeft.anim.meta -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_WalkRight.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_WalkRight.anim -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_WalkRight.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_WalkRight.anim.meta -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_WalkUp.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_WalkUp.anim -------------------------------------------------------------------------------- /Assets/Example/Animations/Locke_WalkUp.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/Locke_WalkUp.anim.meta -------------------------------------------------------------------------------- /Assets/Example/Animations/PlayerAC.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/PlayerAC.controller -------------------------------------------------------------------------------- /Assets/Example/Animations/PlayerAC.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Animations/PlayerAC.controller.meta -------------------------------------------------------------------------------- /Assets/Example/Characters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters.meta -------------------------------------------------------------------------------- /Assets/Example/Characters/Edgar.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters/Edgar.asset -------------------------------------------------------------------------------- /Assets/Example/Characters/Edgar.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters/Edgar.asset.meta -------------------------------------------------------------------------------- /Assets/Example/Characters/Locke.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters/Locke.meta -------------------------------------------------------------------------------- /Assets/Example/Characters/Locke/Locke.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters/Locke/Locke.asset -------------------------------------------------------------------------------- /Assets/Example/Characters/Locke/Locke.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters/Locke/Locke.asset.meta -------------------------------------------------------------------------------- /Assets/Example/Characters/Locke/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters/Locke/Player.prefab -------------------------------------------------------------------------------- /Assets/Example/Characters/Locke/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters/Locke/Player.prefab.meta -------------------------------------------------------------------------------- /Assets/Example/Characters/Terra.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters/Terra.asset -------------------------------------------------------------------------------- /Assets/Example/Characters/Terra.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Characters/Terra.asset.meta -------------------------------------------------------------------------------- /Assets/Example/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sounds.meta -------------------------------------------------------------------------------- /Assets/Example/Sounds/Edgar_Voice.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sounds/Edgar_Voice.wav -------------------------------------------------------------------------------- /Assets/Example/Sounds/Edgar_Voice.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sounds/Edgar_Voice.wav.meta -------------------------------------------------------------------------------- /Assets/Example/Sounds/Locke_Voice.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sounds/Locke_Voice.wav -------------------------------------------------------------------------------- /Assets/Example/Sounds/Locke_Voice.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sounds/Locke_Voice.wav.meta -------------------------------------------------------------------------------- /Assets/Example/Sounds/Terra_Voice.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sounds/Terra_Voice.wav -------------------------------------------------------------------------------- /Assets/Example/Sounds/Terra_Voice.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sounds/Terra_Voice.wav.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/Edgar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Edgar.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/Edgar/Edgar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Edgar/Edgar.png -------------------------------------------------------------------------------- /Assets/Example/Sprites/Edgar/Edgar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Edgar/Edgar.png.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/Edgar/Edgar_Sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Edgar/Edgar_Sprites.png -------------------------------------------------------------------------------- /Assets/Example/Sprites/Edgar/Edgar_Sprites.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Edgar/Edgar_Sprites.png.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/Locke.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Locke.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/Locke/Locke_Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Locke/Locke_Portrait.png -------------------------------------------------------------------------------- /Assets/Example/Sprites/Locke/Locke_Portrait.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Locke/Locke_Portrait.png.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/Locke/Locke_Sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Locke/Locke_Sprites.png -------------------------------------------------------------------------------- /Assets/Example/Sprites/Locke/Locke_Sprites.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Locke/Locke_Sprites.png.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/Terra.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Terra.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/Terra/Terra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Terra/Terra.png -------------------------------------------------------------------------------- /Assets/Example/Sprites/Terra/Terra.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Terra/Terra.png.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/Terra/Terra_Sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Terra/Terra_Sprites.png -------------------------------------------------------------------------------- /Assets/Example/Sprites/Terra/Terra_Sprites.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/Terra/Terra_Sprites.png.meta -------------------------------------------------------------------------------- /Assets/Example/Sprites/scenario.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/scenario.gif -------------------------------------------------------------------------------- /Assets/Example/Sprites/scenario.gif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/Sprites/scenario.gif.meta -------------------------------------------------------------------------------- /Assets/Example/TestScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/TestScene.unity -------------------------------------------------------------------------------- /Assets/Example/TestScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/Example/TestScene.unity.meta -------------------------------------------------------------------------------- /Assets/MovementSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Examples.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Examples/SceneTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Examples/SceneTest.unity -------------------------------------------------------------------------------- /Assets/MovementSystem/Examples/SceneTest.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Examples/SceneTest.unity.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Examples/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Examples/ghost.png -------------------------------------------------------------------------------- /Assets/MovementSystem/Examples/ghost.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Examples/ghost.png.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Examples/ghostNPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Examples/ghostNPC.png -------------------------------------------------------------------------------- /Assets/MovementSystem/Examples/ghostNPC.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Examples/ghostNPC.png.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Examples/path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Examples/path.jpg -------------------------------------------------------------------------------- /Assets/MovementSystem/Examples/path.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Examples/path.jpg.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Main Camera.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Main Camera.prefab -------------------------------------------------------------------------------- /Assets/MovementSystem/Main Camera.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Main Camera.prefab.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Player.prefab -------------------------------------------------------------------------------- /Assets/MovementSystem/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Player.prefab.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Scripts.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Scripts/CameraFollow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Scripts/CameraFollow.cs -------------------------------------------------------------------------------- /Assets/MovementSystem/Scripts/CameraFollow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Scripts/CameraFollow.cs.meta -------------------------------------------------------------------------------- /Assets/MovementSystem/Scripts/PlayerMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Scripts/PlayerMovement.cs -------------------------------------------------------------------------------- /Assets/MovementSystem/Scripts/PlayerMovement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/MovementSystem/Scripts/PlayerMovement.cs.meta -------------------------------------------------------------------------------- /Assets/TextSeparator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator.meta -------------------------------------------------------------------------------- /Assets/TextSeparator/Enojado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/Enojado.jpg -------------------------------------------------------------------------------- /Assets/TextSeparator/Enojado.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/Enojado.jpg.meta -------------------------------------------------------------------------------- /Assets/TextSeparator/ShakeText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/ShakeText.cs -------------------------------------------------------------------------------- /Assets/TextSeparator/ShakeText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/ShakeText.cs.meta -------------------------------------------------------------------------------- /Assets/TextSeparator/TestScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/TestScene.unity -------------------------------------------------------------------------------- /Assets/TextSeparator/TestScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/TestScene.unity.meta -------------------------------------------------------------------------------- /Assets/TextSeparator/TextSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/TextSeparator.cs -------------------------------------------------------------------------------- /Assets/TextSeparator/TextSeparator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/TextSeparator.cs.meta -------------------------------------------------------------------------------- /Assets/TextSeparator/WaveText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/WaveText.cs -------------------------------------------------------------------------------- /Assets/TextSeparator/WaveText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Assets/TextSeparator/WaveText.cs.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/Logs/Packages-Update.log -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xnahual/UnityDialogueSystem/HEAD/README.md --------------------------------------------------------------------------------