├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── boghma ├── c4d │ └── c4d_interact.pyp ├── dialogs │ ├── custom_confirm_dialog.gd │ └── file_dialog.gd ├── finite_state_machine │ ├── base_state.gd │ └── base_state_machine.gd ├── model │ ├── base_hierarchy.gd │ └── uniform_data.gd ├── mvc │ ├── action_message.gd │ ├── base_item.gd │ ├── base_message.gd │ ├── controller.gd │ ├── item_factory.gd │ └── update_message.gd ├── scripts │ ├── custom_iterator.gd │ ├── factory.gd │ ├── free_parent_when_start.gd │ ├── funfile.gd │ ├── json_helper.gd │ ├── result_helper.gd │ ├── scene_manager.gd │ ├── structure.gd │ ├── thread_helper.gd │ └── uuid.gd └── utils │ ├── http_request_helper.gd │ └── spring_function.gd ├── components ├── cell_grid.gd ├── custom_window_bar │ ├── cusBBE6.tmp │ ├── custom_window_bar.gd │ ├── custom_window_bar.tscn │ ├── example │ │ └── cwb_application_example.tscn │ ├── window_drag_component.gd │ ├── window_resize_component.gd │ └── window_state_component.gd ├── dashline_stylebox │ └── dashline_stylebox.gd ├── draggable_card_component │ ├── card │ │ ├── base_draggable_card.gd │ │ ├── base_draggable_card.tscn │ │ ├── place_holder_panel.gd │ │ ├── place_holder_panel.tscn │ │ └── shadow_panel.tscn │ ├── draggable_card_component.gd │ ├── draggable_card_component.tscn │ └── example │ │ ├── custom_card.gd │ │ ├── custom_card.tscn │ │ ├── draggable_card_example.gd │ │ └── draggable_card_example.tscn └── mograph_component │ ├── effector │ ├── mograph_base_effector.gd │ ├── mograph_delay_effector.gd │ ├── mograph_plain_effector.gd │ └── mograph_target_effector.gd │ ├── example │ ├── mograph_effector_example.tscn │ ├── mograph_grid_example.tscn │ ├── mograph_linear_example.tscn │ └── mograph_radial_example.tscn │ ├── field │ ├── mograph_base_field.gd │ ├── mograph_circle_field.gd │ └── mograph_linear_field.gd │ ├── mograph_container │ ├── mograph_base_container.gd │ ├── mograph_grid_container.gd │ ├── mograph_linear_container.gd │ └── mograph_radial_container.gd │ ├── test │ └── control_1.tscn │ └── tool │ └── container_transform_viewer.gd ├── example ├── custom_iterator │ ├── custom_iterator.gd │ └── custom_iterator.tscn ├── factory │ ├── example_factory.gd │ └── example_factory.tscn └── result_helper │ ├── example_result_helper.gd │ └── example_result_helper.tscn ├── globals └── debug │ ├── debug_panel.gd │ └── debug_panel.tscn ├── icon.svg ├── icon.svg.import ├── project.godot ├── resource ├── clear icon cache on window.bat ├── fonts │ ├── NotosansSC │ │ ├── NotoSansCJK-Black-7.otf │ │ ├── NotoSansCJK-Black-7.otf.import │ │ ├── NotoSansCJK-Bold-6.otf │ │ ├── NotoSansCJK-Bold-6.otf.import │ │ ├── NotoSansCJK-DemiLight-4.otf │ │ ├── NotoSansCJK-DemiLight-4.otf.import │ │ ├── NotoSansCJK-Light-3.otf │ │ ├── NotoSansCJK-Light-3.otf.import │ │ ├── NotoSansCJK-Medium-5.otf │ │ ├── NotoSansCJK-Medium-5.otf.import │ │ ├── NotoSansCJK-Regular-1.otf │ │ ├── NotoSansCJK-Regular-1.otf.import │ │ ├── NotoSansCJK-Thin-2.otf │ │ └── NotoSansCJK-Thin-2.otf.import │ └── inter │ │ ├── Inter-VariableFont_slnt,wght.ttf │ │ ├── Inter-VariableFont_slnt,wght.ttf.import │ │ └── static │ │ ├── Inter-Black.ttf │ │ ├── Inter-Black.ttf.import │ │ ├── Inter-Bold.ttf │ │ ├── Inter-Bold.ttf.import │ │ ├── Inter-ExtraBold.ttf │ │ ├── Inter-ExtraBold.ttf.import │ │ ├── Inter-ExtraLight.ttf │ │ ├── Inter-ExtraLight.ttf.import │ │ ├── Inter-Light.ttf │ │ ├── Inter-Light.ttf.import │ │ ├── Inter-Medium.ttf │ │ ├── Inter-Medium.ttf.import │ │ ├── Inter-Regular.ttf │ │ ├── Inter-Regular.ttf.import │ │ ├── Inter-SemiBold.ttf │ │ ├── Inter-SemiBold.ttf.import │ │ ├── Inter-Thin.ttf │ │ └── Inter-Thin.ttf.import ├── icons │ ├── Boghma.png │ ├── Boghma.png.import │ ├── drag.png │ ├── drag.png.import │ ├── godot.png │ └── godot.png.import └── shader │ └── ms_fill.tres └── tips.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/README.md -------------------------------------------------------------------------------- /boghma/c4d/c4d_interact.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/c4d/c4d_interact.pyp -------------------------------------------------------------------------------- /boghma/dialogs/custom_confirm_dialog.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/dialogs/custom_confirm_dialog.gd -------------------------------------------------------------------------------- /boghma/dialogs/file_dialog.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/dialogs/file_dialog.gd -------------------------------------------------------------------------------- /boghma/finite_state_machine/base_state.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/finite_state_machine/base_state.gd -------------------------------------------------------------------------------- /boghma/finite_state_machine/base_state_machine.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/finite_state_machine/base_state_machine.gd -------------------------------------------------------------------------------- /boghma/model/base_hierarchy.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/model/base_hierarchy.gd -------------------------------------------------------------------------------- /boghma/model/uniform_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/model/uniform_data.gd -------------------------------------------------------------------------------- /boghma/mvc/action_message.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/mvc/action_message.gd -------------------------------------------------------------------------------- /boghma/mvc/base_item.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/mvc/base_item.gd -------------------------------------------------------------------------------- /boghma/mvc/base_message.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/mvc/base_message.gd -------------------------------------------------------------------------------- /boghma/mvc/controller.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/mvc/controller.gd -------------------------------------------------------------------------------- /boghma/mvc/item_factory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/mvc/item_factory.gd -------------------------------------------------------------------------------- /boghma/mvc/update_message.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/mvc/update_message.gd -------------------------------------------------------------------------------- /boghma/scripts/custom_iterator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/custom_iterator.gd -------------------------------------------------------------------------------- /boghma/scripts/factory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/factory.gd -------------------------------------------------------------------------------- /boghma/scripts/free_parent_when_start.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/free_parent_when_start.gd -------------------------------------------------------------------------------- /boghma/scripts/funfile.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/funfile.gd -------------------------------------------------------------------------------- /boghma/scripts/json_helper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/json_helper.gd -------------------------------------------------------------------------------- /boghma/scripts/result_helper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/result_helper.gd -------------------------------------------------------------------------------- /boghma/scripts/scene_manager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/scene_manager.gd -------------------------------------------------------------------------------- /boghma/scripts/structure.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/structure.gd -------------------------------------------------------------------------------- /boghma/scripts/thread_helper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/thread_helper.gd -------------------------------------------------------------------------------- /boghma/scripts/uuid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/scripts/uuid.gd -------------------------------------------------------------------------------- /boghma/utils/http_request_helper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/utils/http_request_helper.gd -------------------------------------------------------------------------------- /boghma/utils/spring_function.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/boghma/utils/spring_function.gd -------------------------------------------------------------------------------- /components/cell_grid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/cell_grid.gd -------------------------------------------------------------------------------- /components/custom_window_bar/cusBBE6.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/custom_window_bar/cusBBE6.tmp -------------------------------------------------------------------------------- /components/custom_window_bar/custom_window_bar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/custom_window_bar/custom_window_bar.gd -------------------------------------------------------------------------------- /components/custom_window_bar/custom_window_bar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/custom_window_bar/custom_window_bar.tscn -------------------------------------------------------------------------------- /components/custom_window_bar/example/cwb_application_example.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/custom_window_bar/example/cwb_application_example.tscn -------------------------------------------------------------------------------- /components/custom_window_bar/window_drag_component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/custom_window_bar/window_drag_component.gd -------------------------------------------------------------------------------- /components/custom_window_bar/window_resize_component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/custom_window_bar/window_resize_component.gd -------------------------------------------------------------------------------- /components/custom_window_bar/window_state_component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/custom_window_bar/window_state_component.gd -------------------------------------------------------------------------------- /components/dashline_stylebox/dashline_stylebox.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/dashline_stylebox/dashline_stylebox.gd -------------------------------------------------------------------------------- /components/draggable_card_component/card/base_draggable_card.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/card/base_draggable_card.gd -------------------------------------------------------------------------------- /components/draggable_card_component/card/base_draggable_card.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/card/base_draggable_card.tscn -------------------------------------------------------------------------------- /components/draggable_card_component/card/place_holder_panel.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/card/place_holder_panel.gd -------------------------------------------------------------------------------- /components/draggable_card_component/card/place_holder_panel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/card/place_holder_panel.tscn -------------------------------------------------------------------------------- /components/draggable_card_component/card/shadow_panel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/card/shadow_panel.tscn -------------------------------------------------------------------------------- /components/draggable_card_component/draggable_card_component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/draggable_card_component.gd -------------------------------------------------------------------------------- /components/draggable_card_component/draggable_card_component.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/draggable_card_component.tscn -------------------------------------------------------------------------------- /components/draggable_card_component/example/custom_card.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/example/custom_card.gd -------------------------------------------------------------------------------- /components/draggable_card_component/example/custom_card.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/example/custom_card.tscn -------------------------------------------------------------------------------- /components/draggable_card_component/example/draggable_card_example.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/example/draggable_card_example.gd -------------------------------------------------------------------------------- /components/draggable_card_component/example/draggable_card_example.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/draggable_card_component/example/draggable_card_example.tscn -------------------------------------------------------------------------------- /components/mograph_component/effector/mograph_base_effector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/effector/mograph_base_effector.gd -------------------------------------------------------------------------------- /components/mograph_component/effector/mograph_delay_effector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/effector/mograph_delay_effector.gd -------------------------------------------------------------------------------- /components/mograph_component/effector/mograph_plain_effector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/effector/mograph_plain_effector.gd -------------------------------------------------------------------------------- /components/mograph_component/effector/mograph_target_effector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/effector/mograph_target_effector.gd -------------------------------------------------------------------------------- /components/mograph_component/example/mograph_effector_example.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/example/mograph_effector_example.tscn -------------------------------------------------------------------------------- /components/mograph_component/example/mograph_grid_example.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/example/mograph_grid_example.tscn -------------------------------------------------------------------------------- /components/mograph_component/example/mograph_linear_example.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/example/mograph_linear_example.tscn -------------------------------------------------------------------------------- /components/mograph_component/example/mograph_radial_example.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/example/mograph_radial_example.tscn -------------------------------------------------------------------------------- /components/mograph_component/field/mograph_base_field.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/field/mograph_base_field.gd -------------------------------------------------------------------------------- /components/mograph_component/field/mograph_circle_field.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/field/mograph_circle_field.gd -------------------------------------------------------------------------------- /components/mograph_component/field/mograph_linear_field.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/field/mograph_linear_field.gd -------------------------------------------------------------------------------- /components/mograph_component/mograph_container/mograph_base_container.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/mograph_container/mograph_base_container.gd -------------------------------------------------------------------------------- /components/mograph_component/mograph_container/mograph_grid_container.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/mograph_container/mograph_grid_container.gd -------------------------------------------------------------------------------- /components/mograph_component/mograph_container/mograph_linear_container.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/mograph_container/mograph_linear_container.gd -------------------------------------------------------------------------------- /components/mograph_component/mograph_container/mograph_radial_container.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/mograph_container/mograph_radial_container.gd -------------------------------------------------------------------------------- /components/mograph_component/test/control_1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/test/control_1.tscn -------------------------------------------------------------------------------- /components/mograph_component/tool/container_transform_viewer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/components/mograph_component/tool/container_transform_viewer.gd -------------------------------------------------------------------------------- /example/custom_iterator/custom_iterator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/example/custom_iterator/custom_iterator.gd -------------------------------------------------------------------------------- /example/custom_iterator/custom_iterator.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/example/custom_iterator/custom_iterator.tscn -------------------------------------------------------------------------------- /example/factory/example_factory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/example/factory/example_factory.gd -------------------------------------------------------------------------------- /example/factory/example_factory.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/example/factory/example_factory.tscn -------------------------------------------------------------------------------- /example/result_helper/example_result_helper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/example/result_helper/example_result_helper.gd -------------------------------------------------------------------------------- /example/result_helper/example_result_helper.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/example/result_helper/example_result_helper.tscn -------------------------------------------------------------------------------- /globals/debug/debug_panel.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/globals/debug/debug_panel.gd -------------------------------------------------------------------------------- /globals/debug/debug_panel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/globals/debug/debug_panel.tscn -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/project.godot -------------------------------------------------------------------------------- /resource/clear icon cache on window.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/clear icon cache on window.bat -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Black-7.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Black-7.otf -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Black-7.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Black-7.otf.import -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Bold-6.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Bold-6.otf -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Bold-6.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Bold-6.otf.import -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-DemiLight-4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-DemiLight-4.otf -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-DemiLight-4.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-DemiLight-4.otf.import -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Light-3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Light-3.otf -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Light-3.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Light-3.otf.import -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Medium-5.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Medium-5.otf -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Medium-5.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Medium-5.otf.import -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Regular-1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Regular-1.otf -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Regular-1.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Regular-1.otf.import -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Thin-2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Thin-2.otf -------------------------------------------------------------------------------- /resource/fonts/NotosansSC/NotoSansCJK-Thin-2.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/NotosansSC/NotoSansCJK-Thin-2.otf.import -------------------------------------------------------------------------------- /resource/fonts/inter/Inter-VariableFont_slnt,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/Inter-VariableFont_slnt,wght.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/Inter-VariableFont_slnt,wght.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/Inter-VariableFont_slnt,wght.ttf.import -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Black.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Black.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Black.ttf.import -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Bold.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Bold.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Bold.ttf.import -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-ExtraBold.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-ExtraBold.ttf.import -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-ExtraLight.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-ExtraLight.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-ExtraLight.ttf.import -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Light.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Light.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Light.ttf.import -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Medium.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Medium.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Medium.ttf.import -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Regular.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Regular.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Regular.ttf.import -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-SemiBold.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-SemiBold.ttf.import -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Thin.ttf -------------------------------------------------------------------------------- /resource/fonts/inter/static/Inter-Thin.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/fonts/inter/static/Inter-Thin.ttf.import -------------------------------------------------------------------------------- /resource/icons/Boghma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/icons/Boghma.png -------------------------------------------------------------------------------- /resource/icons/Boghma.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/icons/Boghma.png.import -------------------------------------------------------------------------------- /resource/icons/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/icons/drag.png -------------------------------------------------------------------------------- /resource/icons/drag.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/icons/drag.png.import -------------------------------------------------------------------------------- /resource/icons/godot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/icons/godot.png -------------------------------------------------------------------------------- /resource/icons/godot.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/icons/godot.png.import -------------------------------------------------------------------------------- /resource/shader/ms_fill.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/resource/shader/ms_fill.tres -------------------------------------------------------------------------------- /tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JACKADUX/Application-Components/HEAD/tips.txt --------------------------------------------------------------------------------