└── addons └── event_system_plugin ├── LICENSE ├── assets ├── icons │ ├── event_icons │ │ ├── call.svg │ │ ├── call.svg.import │ │ ├── condition.svg │ │ ├── condition.svg.import │ │ ├── custom.svg │ │ ├── custom.svg.import │ │ ├── emit_signal.svg │ │ ├── emit_signal.svg.import │ │ ├── goto.svg │ │ ├── goto.svg.import │ │ ├── hidden.png │ │ ├── hidden.png.import │ │ ├── label.svg │ │ ├── label.svg.import │ │ ├── outline.svg │ │ ├── outline.svg.import │ │ ├── set_value.svg │ │ ├── set_value.svg.import │ │ ├── solid.svg │ │ ├── solid.svg.import │ │ ├── visible.png │ │ ├── visible.png.import │ │ ├── wait.svg │ │ └── wait.svg.import │ ├── timeline_icon.png │ ├── timeline_icon.png.import │ ├── warning.svg │ └── warning.svg.import └── themes │ ├── event_node │ └── event_node.tres │ ├── timeline_editor.tres │ └── timeline_editor │ └── timeline_editor_d.tres ├── core ├── event_inspector.gd ├── inspector_tools.gd ├── shortcuts.gd └── utils.gd ├── events ├── call_from.gd ├── comment.gd ├── condition.gd ├── emit_signal.gd ├── end_timeline.gd ├── goto.gd ├── hide.gd ├── set.gd ├── show.gd └── wait.gd ├── godot_plugin.gd ├── icon.png ├── icon.png.import ├── nodes ├── editor │ ├── category_manager.gd │ ├── event_node │ │ ├── event_condition_node.gd │ │ ├── event_node.gd │ │ └── event_popup_menu.gd │ ├── event_selector │ │ ├── event_selector.gd │ │ └── event_selector.tscn │ ├── flow_container.gd │ ├── playground │ │ ├── event_manager_demo.tscn │ │ └── in_game_editor.tscn │ ├── subtimeline.gd │ ├── timeline_displayer.gd │ ├── timeline_drawer.gd │ ├── timeline_editor.gd │ ├── timeline_list.gd │ └── welcome │ │ ├── main_panel.gd │ │ └── main_panel.tscn └── event_manager │ └── event_manager.gd ├── plugin.cfg ├── plugin_script.gd └── resources ├── event_class └── event_class.gd ├── registered_events ├── _.gd └── registered_events.tres └── timeline_class └── timeline_class.gd /addons/event_system_plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/LICENSE -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/call.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/call.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/call.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/condition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/condition.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/condition.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/condition.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/custom.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/custom.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/custom.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/emit_signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/emit_signal.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/emit_signal.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/emit_signal.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/goto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/goto.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/goto.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/goto.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/hidden.png -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/hidden.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/hidden.png.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/label.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/label.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/label.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/outline.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/outline.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/outline.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/set_value.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/set_value.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/set_value.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/set_value.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/solid.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/solid.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/solid.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/visible.png -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/visible.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/visible.png.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/wait.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/event_icons/wait.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/event_icons/wait.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/timeline_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/timeline_icon.png -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/timeline_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/timeline_icon.png.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/warning.svg -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/icons/warning.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/icons/warning.svg.import -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/themes/event_node/event_node.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/themes/event_node/event_node.tres -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/themes/timeline_editor.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/themes/timeline_editor.tres -------------------------------------------------------------------------------- /addons/event_system_plugin/assets/themes/timeline_editor/timeline_editor_d.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/assets/themes/timeline_editor/timeline_editor_d.tres -------------------------------------------------------------------------------- /addons/event_system_plugin/core/event_inspector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/core/event_inspector.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/core/inspector_tools.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/core/inspector_tools.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/core/shortcuts.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/core/shortcuts.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/core/utils.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/core/utils.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/call_from.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/call_from.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/comment.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/comment.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/condition.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/condition.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/emit_signal.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/emit_signal.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/end_timeline.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/end_timeline.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/goto.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/goto.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/hide.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/hide.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/set.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/set.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/show.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/show.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/events/wait.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/events/wait.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/godot_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/godot_plugin.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/icon.png -------------------------------------------------------------------------------- /addons/event_system_plugin/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/icon.png.import -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/category_manager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/category_manager.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/event_node/event_condition_node.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/event_node/event_condition_node.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/event_node/event_node.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/event_node/event_node.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/event_node/event_popup_menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/event_node/event_popup_menu.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/event_selector/event_selector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/event_selector/event_selector.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/event_selector/event_selector.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/event_selector/event_selector.tscn -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/flow_container.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/flow_container.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/playground/event_manager_demo.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/playground/event_manager_demo.tscn -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/playground/in_game_editor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/playground/in_game_editor.tscn -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/subtimeline.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/subtimeline.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/timeline_displayer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/timeline_displayer.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/timeline_drawer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/timeline_drawer.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/timeline_editor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/timeline_editor.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/timeline_list.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/timeline_list.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/welcome/main_panel.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/welcome/main_panel.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/editor/welcome/main_panel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/editor/welcome/main_panel.tscn -------------------------------------------------------------------------------- /addons/event_system_plugin/nodes/event_manager/event_manager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/nodes/event_manager/event_manager.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/plugin.cfg -------------------------------------------------------------------------------- /addons/event_system_plugin/plugin_script.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/plugin_script.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/resources/event_class/event_class.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/resources/event_class/event_class.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/resources/registered_events/_.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/resources/registered_events/_.gd -------------------------------------------------------------------------------- /addons/event_system_plugin/resources/registered_events/registered_events.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/resources/registered_events/registered_events.tres -------------------------------------------------------------------------------- /addons/event_system_plugin/resources/timeline_class/timeline_class.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnidemDex/Godot-EventSystem/HEAD/addons/event_system_plugin/resources/timeline_class/timeline_class.gd --------------------------------------------------------------------------------