├── .github └── issue_template.md ├── .gitignore ├── .import ├── actIco.png-9b3e244d65e69fed1868086d7cd7c04e.md5 ├── actIco.png-9b3e244d65e69fed1868086d7cd7c04e.stex ├── attn.png-7e17f0d1392f8bccfd60acd789e9d37a.md5 ├── attn.png-7e17f0d1392f8bccfd60acd789e9d37a.stex ├── conIco.png-95440e0b77bad39ab24f04e52421d536.md5 ├── conIco.png-95440e0b77bad39ab24f04e52421d536.stex ├── diaIco.png-4781208d4a9624bbd542beebdcda174f.md5 ├── diaIco.png-4781208d4a9624bbd542beebdcda174f.stex ├── expIco.png-f9c0a8f401ca65dfb973c2eebef13509.md5 ├── expIco.png-f9c0a8f401ca65dfb973c2eebef13509.stex ├── git_toolbar_icon.png-5b363365a37a52a0dbce2e357353b701.md5 ├── git_toolbar_icon.png-5b363365a37a52a0dbce2e357353b701.stex ├── godot-git.png-d7ac435f39d77eea6618833b75aed563.md5 ├── godot-git.png-d7ac435f39d77eea6618833b75aed563.stex ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex ├── jumIco.png-1f2270e7da317d799111ecf9d9641d04.md5 ├── jumIco.png-1f2270e7da317d799111ecf9d9641d04.stex ├── logo.png-b8b61a09dbd3005e8497cb5271c00da6.md5 ├── logo.png-b8b61a09dbd3005e8497cb5271c00da6.stex ├── logo.png-c9155d45446a22c2a8eb8f490bd9a28f.md5 ├── logo.png-c9155d45446a22c2a8eb8f490bd9a28f.stex ├── logo_transparent.png-79bc7177f6b837da3d0956309be61028.md5 ├── logo_transparent.png-79bc7177f6b837da3d0956309be61028.stex ├── optIco.png-39931917345118f33e93ba3db86224fa.md5 ├── optIco.png-39931917345118f33e93ba3db86224fa.stex ├── screenshot.png-ca0ed05bcac7cc4ee1d4c2d972ece23f.md5 └── screenshot.png-ca0ed05bcac7cc4ee1d4c2d972ece23f.stex ├── Assets ├── Fonts │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-Italic.ttf │ ├── OpenSans-Regular.ttf │ ├── bold.tres │ ├── boldItalics.tres │ ├── italics.tres │ └── regular.tres ├── Images │ ├── attn.png │ ├── attn.png.import │ ├── logo.png │ ├── logo.png.import │ ├── logo_transparent.png │ └── logo_transparent.png.import ├── Node Images │ ├── actIco.png │ ├── actIco.png.import │ ├── comIco.png │ ├── conIco.png │ ├── conIco.png.import │ ├── diaIco.png │ ├── diaIco.png.import │ ├── endIco.png │ ├── expIco.png │ ├── expIco.png.import │ ├── jumIco.png │ ├── jumIco.png.import │ ├── optIco.png │ ├── optIco.png.import │ └── starIco.png └── Themes │ ├── Containers │ ├── Graph.tres │ └── Tab.tres │ ├── Dialogs │ └── Dialog.tres │ ├── MenuObj │ └── Panel.tres │ ├── Nodes │ ├── Normal │ │ ├── Action.tres │ │ ├── Condition.tres │ │ ├── Dialogue.tres │ │ ├── Expression.tres │ │ ├── Jump.tres │ │ ├── Option.tres │ │ ├── Utility.tres │ │ └── line.tres │ └── Selected │ │ ├── ActionSelected.tres │ │ ├── ConditionSelected.tres │ │ ├── DialogueSelected.tres │ │ ├── ExpressionSelected.tres │ │ ├── JumpSelected.tres │ │ ├── OptionSelected.tres │ │ ├── UtilitySelected.tres │ │ └── lineSelected.tres │ └── Other │ ├── ScrollGrabber.tres │ ├── ScrollGrapperPressed.tres │ └── ScrollTrack.tres ├── LICENSE.md ├── README.md ├── Scenes ├── Dialogue.tscn ├── Editor.tscn └── Nodes │ ├── Comment.tscn │ ├── Condition.tscn │ ├── Dialogue.tscn │ ├── End.tscn │ ├── Expression.tscn │ ├── Jump.tscn │ ├── Option.tscn │ └── Start.tscn ├── Scripts ├── DemoGame.gd ├── DemoSingleton.gd ├── Dialogue.gd ├── DocFuncs.gd ├── DocVars.gd ├── DragFunction.gd ├── DragHandler.gd ├── EditorSingleton.gd ├── Graph.gd ├── GraphNode.gd ├── MenuController.gd └── WhiskersParser.gd ├── default_env.tres ├── examples ├── Dialogue │ ├── advanced_dave.json │ ├── basic_dave.json │ ├── bbcode_dave.json │ ├── condition_dave.json │ ├── import_dave.json │ └── jump_dave.json └── exampleImport.gd ├── icon.png ├── icon.png.import ├── logo.png ├── media.png └── project.godot /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.gitignore -------------------------------------------------------------------------------- /.import/actIco.png-9b3e244d65e69fed1868086d7cd7c04e.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/actIco.png-9b3e244d65e69fed1868086d7cd7c04e.md5 -------------------------------------------------------------------------------- /.import/actIco.png-9b3e244d65e69fed1868086d7cd7c04e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/actIco.png-9b3e244d65e69fed1868086d7cd7c04e.stex -------------------------------------------------------------------------------- /.import/attn.png-7e17f0d1392f8bccfd60acd789e9d37a.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/attn.png-7e17f0d1392f8bccfd60acd789e9d37a.md5 -------------------------------------------------------------------------------- /.import/attn.png-7e17f0d1392f8bccfd60acd789e9d37a.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/attn.png-7e17f0d1392f8bccfd60acd789e9d37a.stex -------------------------------------------------------------------------------- /.import/conIco.png-95440e0b77bad39ab24f04e52421d536.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/conIco.png-95440e0b77bad39ab24f04e52421d536.md5 -------------------------------------------------------------------------------- /.import/conIco.png-95440e0b77bad39ab24f04e52421d536.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/conIco.png-95440e0b77bad39ab24f04e52421d536.stex -------------------------------------------------------------------------------- /.import/diaIco.png-4781208d4a9624bbd542beebdcda174f.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/diaIco.png-4781208d4a9624bbd542beebdcda174f.md5 -------------------------------------------------------------------------------- /.import/diaIco.png-4781208d4a9624bbd542beebdcda174f.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/diaIco.png-4781208d4a9624bbd542beebdcda174f.stex -------------------------------------------------------------------------------- /.import/expIco.png-f9c0a8f401ca65dfb973c2eebef13509.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/expIco.png-f9c0a8f401ca65dfb973c2eebef13509.md5 -------------------------------------------------------------------------------- /.import/expIco.png-f9c0a8f401ca65dfb973c2eebef13509.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/expIco.png-f9c0a8f401ca65dfb973c2eebef13509.stex -------------------------------------------------------------------------------- /.import/git_toolbar_icon.png-5b363365a37a52a0dbce2e357353b701.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/git_toolbar_icon.png-5b363365a37a52a0dbce2e357353b701.md5 -------------------------------------------------------------------------------- /.import/git_toolbar_icon.png-5b363365a37a52a0dbce2e357353b701.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/git_toolbar_icon.png-5b363365a37a52a0dbce2e357353b701.stex -------------------------------------------------------------------------------- /.import/godot-git.png-d7ac435f39d77eea6618833b75aed563.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/godot-git.png-d7ac435f39d77eea6618833b75aed563.md5 -------------------------------------------------------------------------------- /.import/godot-git.png-d7ac435f39d77eea6618833b75aed563.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/godot-git.png-d7ac435f39d77eea6618833b75aed563.stex -------------------------------------------------------------------------------- /.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 -------------------------------------------------------------------------------- /.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /.import/jumIco.png-1f2270e7da317d799111ecf9d9641d04.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/jumIco.png-1f2270e7da317d799111ecf9d9641d04.md5 -------------------------------------------------------------------------------- /.import/jumIco.png-1f2270e7da317d799111ecf9d9641d04.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/jumIco.png-1f2270e7da317d799111ecf9d9641d04.stex -------------------------------------------------------------------------------- /.import/logo.png-b8b61a09dbd3005e8497cb5271c00da6.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/logo.png-b8b61a09dbd3005e8497cb5271c00da6.md5 -------------------------------------------------------------------------------- /.import/logo.png-b8b61a09dbd3005e8497cb5271c00da6.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/logo.png-b8b61a09dbd3005e8497cb5271c00da6.stex -------------------------------------------------------------------------------- /.import/logo.png-c9155d45446a22c2a8eb8f490bd9a28f.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/logo.png-c9155d45446a22c2a8eb8f490bd9a28f.md5 -------------------------------------------------------------------------------- /.import/logo.png-c9155d45446a22c2a8eb8f490bd9a28f.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/logo.png-c9155d45446a22c2a8eb8f490bd9a28f.stex -------------------------------------------------------------------------------- /.import/logo_transparent.png-79bc7177f6b837da3d0956309be61028.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/logo_transparent.png-79bc7177f6b837da3d0956309be61028.md5 -------------------------------------------------------------------------------- /.import/logo_transparent.png-79bc7177f6b837da3d0956309be61028.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/logo_transparent.png-79bc7177f6b837da3d0956309be61028.stex -------------------------------------------------------------------------------- /.import/optIco.png-39931917345118f33e93ba3db86224fa.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/optIco.png-39931917345118f33e93ba3db86224fa.md5 -------------------------------------------------------------------------------- /.import/optIco.png-39931917345118f33e93ba3db86224fa.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/optIco.png-39931917345118f33e93ba3db86224fa.stex -------------------------------------------------------------------------------- /.import/screenshot.png-ca0ed05bcac7cc4ee1d4c2d972ece23f.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/screenshot.png-ca0ed05bcac7cc4ee1d4c2d972ece23f.md5 -------------------------------------------------------------------------------- /.import/screenshot.png-ca0ed05bcac7cc4ee1d4c2d972ece23f.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/.import/screenshot.png-ca0ed05bcac7cc4ee1d4c2d972ece23f.stex -------------------------------------------------------------------------------- /Assets/Fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /Assets/Fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Assets/Fonts/bold.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Fonts/bold.tres -------------------------------------------------------------------------------- /Assets/Fonts/boldItalics.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Fonts/boldItalics.tres -------------------------------------------------------------------------------- /Assets/Fonts/italics.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Fonts/italics.tres -------------------------------------------------------------------------------- /Assets/Fonts/regular.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Fonts/regular.tres -------------------------------------------------------------------------------- /Assets/Images/attn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Images/attn.png -------------------------------------------------------------------------------- /Assets/Images/attn.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Images/attn.png.import -------------------------------------------------------------------------------- /Assets/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Images/logo.png -------------------------------------------------------------------------------- /Assets/Images/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Images/logo.png.import -------------------------------------------------------------------------------- /Assets/Images/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Images/logo_transparent.png -------------------------------------------------------------------------------- /Assets/Images/logo_transparent.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Images/logo_transparent.png.import -------------------------------------------------------------------------------- /Assets/Node Images/actIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/actIco.png -------------------------------------------------------------------------------- /Assets/Node Images/actIco.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/actIco.png.import -------------------------------------------------------------------------------- /Assets/Node Images/comIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/comIco.png -------------------------------------------------------------------------------- /Assets/Node Images/conIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/conIco.png -------------------------------------------------------------------------------- /Assets/Node Images/conIco.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/conIco.png.import -------------------------------------------------------------------------------- /Assets/Node Images/diaIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/diaIco.png -------------------------------------------------------------------------------- /Assets/Node Images/diaIco.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/diaIco.png.import -------------------------------------------------------------------------------- /Assets/Node Images/endIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/endIco.png -------------------------------------------------------------------------------- /Assets/Node Images/expIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/expIco.png -------------------------------------------------------------------------------- /Assets/Node Images/expIco.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/expIco.png.import -------------------------------------------------------------------------------- /Assets/Node Images/jumIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/jumIco.png -------------------------------------------------------------------------------- /Assets/Node Images/jumIco.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/jumIco.png.import -------------------------------------------------------------------------------- /Assets/Node Images/optIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/optIco.png -------------------------------------------------------------------------------- /Assets/Node Images/optIco.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/optIco.png.import -------------------------------------------------------------------------------- /Assets/Node Images/starIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Node Images/starIco.png -------------------------------------------------------------------------------- /Assets/Themes/Containers/Graph.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Containers/Graph.tres -------------------------------------------------------------------------------- /Assets/Themes/Containers/Tab.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Containers/Tab.tres -------------------------------------------------------------------------------- /Assets/Themes/Dialogs/Dialog.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Dialogs/Dialog.tres -------------------------------------------------------------------------------- /Assets/Themes/MenuObj/Panel.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/MenuObj/Panel.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Normal/Action.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Normal/Action.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Normal/Condition.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Normal/Condition.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Normal/Dialogue.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Normal/Dialogue.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Normal/Expression.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Normal/Expression.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Normal/Jump.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Normal/Jump.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Normal/Option.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Normal/Option.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Normal/Utility.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Normal/Utility.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Normal/line.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Normal/line.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Selected/ActionSelected.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Selected/ActionSelected.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Selected/ConditionSelected.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Selected/ConditionSelected.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Selected/DialogueSelected.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Selected/DialogueSelected.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Selected/ExpressionSelected.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Selected/ExpressionSelected.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Selected/JumpSelected.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Selected/JumpSelected.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Selected/OptionSelected.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Selected/OptionSelected.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Selected/UtilitySelected.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Selected/UtilitySelected.tres -------------------------------------------------------------------------------- /Assets/Themes/Nodes/Selected/lineSelected.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Nodes/Selected/lineSelected.tres -------------------------------------------------------------------------------- /Assets/Themes/Other/ScrollGrabber.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Other/ScrollGrabber.tres -------------------------------------------------------------------------------- /Assets/Themes/Other/ScrollGrapperPressed.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Other/ScrollGrapperPressed.tres -------------------------------------------------------------------------------- /Assets/Themes/Other/ScrollTrack.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Assets/Themes/Other/ScrollTrack.tres -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/README.md -------------------------------------------------------------------------------- /Scenes/Dialogue.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Dialogue.tscn -------------------------------------------------------------------------------- /Scenes/Editor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Editor.tscn -------------------------------------------------------------------------------- /Scenes/Nodes/Comment.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Nodes/Comment.tscn -------------------------------------------------------------------------------- /Scenes/Nodes/Condition.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Nodes/Condition.tscn -------------------------------------------------------------------------------- /Scenes/Nodes/Dialogue.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Nodes/Dialogue.tscn -------------------------------------------------------------------------------- /Scenes/Nodes/End.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Nodes/End.tscn -------------------------------------------------------------------------------- /Scenes/Nodes/Expression.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Nodes/Expression.tscn -------------------------------------------------------------------------------- /Scenes/Nodes/Jump.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Nodes/Jump.tscn -------------------------------------------------------------------------------- /Scenes/Nodes/Option.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Nodes/Option.tscn -------------------------------------------------------------------------------- /Scenes/Nodes/Start.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scenes/Nodes/Start.tscn -------------------------------------------------------------------------------- /Scripts/DemoGame.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/DemoGame.gd -------------------------------------------------------------------------------- /Scripts/DemoSingleton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/DemoSingleton.gd -------------------------------------------------------------------------------- /Scripts/Dialogue.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/Dialogue.gd -------------------------------------------------------------------------------- /Scripts/DocFuncs.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/DocFuncs.gd -------------------------------------------------------------------------------- /Scripts/DocVars.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/DocVars.gd -------------------------------------------------------------------------------- /Scripts/DragFunction.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/DragFunction.gd -------------------------------------------------------------------------------- /Scripts/DragHandler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/DragHandler.gd -------------------------------------------------------------------------------- /Scripts/EditorSingleton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/EditorSingleton.gd -------------------------------------------------------------------------------- /Scripts/Graph.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/Graph.gd -------------------------------------------------------------------------------- /Scripts/GraphNode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/GraphNode.gd -------------------------------------------------------------------------------- /Scripts/MenuController.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/MenuController.gd -------------------------------------------------------------------------------- /Scripts/WhiskersParser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/Scripts/WhiskersParser.gd -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/default_env.tres -------------------------------------------------------------------------------- /examples/Dialogue/advanced_dave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/examples/Dialogue/advanced_dave.json -------------------------------------------------------------------------------- /examples/Dialogue/basic_dave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/examples/Dialogue/basic_dave.json -------------------------------------------------------------------------------- /examples/Dialogue/bbcode_dave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/examples/Dialogue/bbcode_dave.json -------------------------------------------------------------------------------- /examples/Dialogue/condition_dave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/examples/Dialogue/condition_dave.json -------------------------------------------------------------------------------- /examples/Dialogue/import_dave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/examples/Dialogue/import_dave.json -------------------------------------------------------------------------------- /examples/Dialogue/jump_dave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/examples/Dialogue/jump_dave.json -------------------------------------------------------------------------------- /examples/exampleImport.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/examples/exampleImport.gd -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/icon.png.import -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/logo.png -------------------------------------------------------------------------------- /media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/media.png -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleMouseGames/whiskers/HEAD/project.godot --------------------------------------------------------------------------------