├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── release.yml │ └── unittests.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── NXTStage.md ├── api_docs │ ├── Makefile │ ├── api_docs.md │ ├── docs_env.yml │ ├── make.bat │ └── source │ │ ├── conf.py │ │ └── index.rst ├── doc_setup.md ├── testing.md ├── user_docs │ ├── custom_theme │ │ ├── base.html │ │ ├── css │ │ │ ├── base.css │ │ │ ├── bootstrap.css │ │ │ └── font-awesome.css │ │ ├── extra.css │ │ └── img │ │ │ └── favicon.ico │ ├── docs │ │ ├── about.md │ │ ├── concepts.md │ │ ├── extensions.md │ │ ├── hotkeys.md │ │ ├── images │ │ │ ├── aaron_bw.png │ │ │ ├── attribute_color.PNG │ │ │ ├── code_editor.PNG │ │ │ ├── collapse.gif │ │ │ ├── execution_tag.PNG │ │ │ ├── graph_intro.PNG │ │ │ ├── hierarchy.PNG │ │ │ ├── inheritance_arm.gif │ │ │ ├── instance_intro.gif │ │ │ ├── instance_local.PNG │ │ │ ├── instance_overwrite.PNG │ │ │ ├── instance_simple.PNG │ │ │ ├── layer_intro.gif │ │ │ ├── layers.PNG │ │ │ ├── layers_concept.png │ │ │ ├── lucas_bw.png │ │ │ ├── michael_bw.png │ │ │ ├── nxt_layers01.gif │ │ │ ├── nxt_overhead_intro.PNG │ │ │ ├── nxt_structure.png │ │ │ ├── overhead_intro.PNG │ │ │ ├── profile_logo.png │ │ │ ├── proxy_children.PNG │ │ │ ├── token2_intro.gif │ │ │ ├── token_intro.gif │ │ │ ├── tree_intro.gif │ │ │ └── zach_bw.png │ │ ├── index.md │ │ ├── install.md │ │ ├── license.md │ │ ├── reference.md │ │ ├── tutorials.md │ │ └── workflows.md │ ├── mkdocs.yml │ ├── nxt_user_docs_env.yml │ ├── tmplzthqg.requirements.txt │ ├── tmpzdkad3.requirements.txt │ └── user_docs.md └── vs_code_remote_debug.md ├── examples ├── README.md ├── example_file.txt ├── file_list.nxt ├── layering.nxt ├── make_cube_spin.nxt ├── quick_start_graphs │ ├── README.md │ ├── maya_context.nxt │ ├── my_contexts.py │ └── my_sub_graph.nxt ├── the_basics.nxt └── using_sub_graphs.nxt ├── nxt_editor ├── __init__.py ├── actions.py ├── colors.py ├── commands.py ├── connection_graphics_item.py ├── constants.py ├── decorator_widgets.py ├── dialogs.py ├── dockwidgets │ ├── __init__.py │ ├── build_view.py │ ├── code_editor.py │ ├── dock_widget_base.py │ ├── find_rep.py │ ├── history_view.py │ ├── hotkey_editor.py │ ├── layer_manager.py │ ├── output_log.py │ ├── property_editor.py │ ├── syntax.py │ └── widget_builder.py ├── file_search.py ├── finder.py ├── integration │ ├── __init__.py │ ├── blender │ │ └── README.md │ ├── maya │ │ ├── README.md │ │ ├── drag_into_maya.py │ │ ├── nxt.mod │ │ ├── plug-ins │ │ │ └── nxt_maya.py │ │ └── run_maya_graph.py │ └── unreal │ │ ├── Content │ │ └── Python │ │ │ └── init_unreal.py │ │ ├── README.md │ │ ├── __init__.py │ │ └── nxt_unreal.uplugin ├── label_edit.py ├── main_window.py ├── node_graphics_item.py ├── pixmap_button.py ├── resources │ ├── LICENSE.FEATHERICONS │ ├── fonts │ │ ├── Roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ │ └── RobotoMono │ │ │ ├── LICENSE.txt │ │ │ ├── RobotoMono-Bold.ttf │ │ │ ├── RobotoMono-BoldItalic.ttf │ │ │ ├── RobotoMono-Italic.ttf │ │ │ ├── RobotoMono-Light.ttf │ │ │ ├── RobotoMono-LightItalic.ttf │ │ │ ├── RobotoMono-Medium.ttf │ │ │ ├── RobotoMono-MediumItalic.ttf │ │ │ ├── RobotoMono-Regular.ttf │ │ │ ├── RobotoMono-Thin.ttf │ │ │ └── RobotoMono-ThinItalic.ttf │ ├── icons │ │ ├── BDiagPattern.png │ │ ├── accept.png │ │ ├── accept_hover.png │ │ ├── accept_pressed.png │ │ ├── add_breakpoint.png │ │ ├── add_breakpoint_hover.png │ │ ├── add_breakpoint_pressed.png │ │ ├── add_node.png │ │ ├── add_node_hover.png │ │ ├── add_node_pressed.png │ │ ├── add_startpoint.png │ │ ├── add_startpoint_hover.png │ │ ├── add_startpoint_pressed.png │ │ ├── align_bottom.png │ │ ├── align_bottom_hover.png │ │ ├── align_bottom_pressed.png │ │ ├── align_hcenter.png │ │ ├── align_hcenter_hover.png │ │ ├── align_hcenter_pressed.png │ │ ├── align_left.png │ │ ├── align_left_hover.png │ │ ├── align_left_pressed.png │ │ ├── align_right.png │ │ ├── align_right_hover.png │ │ ├── align_right_pressed.png │ │ ├── align_top.png │ │ ├── align_top_hover.png │ │ ├── align_top_pressed.png │ │ ├── align_vcenter.png │ │ ├── align_vcenter_hover.png │ │ ├── align_vcenter_pressed.png │ │ ├── cache.png │ │ ├── cache_hover.png │ │ ├── cancel.png │ │ ├── cancel_hover.png │ │ ├── cancel_pressed.png │ │ ├── clean_node.png │ │ ├── clean_node_hover.png │ │ ├── clean_node_pressed.png │ │ ├── clear_breakpoints.png │ │ ├── clear_breakpoints_hover.png │ │ ├── clear_breakpoints_pressed.png │ │ ├── copy_node.png │ │ ├── copy_node_hover.png │ │ ├── copy_node_pressed.png │ │ ├── copy_resolved_12.png │ │ ├── copy_resolved_hover_12.png │ │ ├── cut_node.png │ │ ├── cut_node_hover.png │ │ ├── cut_node_pressed.png │ │ ├── delete.png │ │ ├── delete_hover.png │ │ ├── delete_items.png │ │ ├── delete_items_hover.png │ │ ├── delete_items_pressed.png │ │ ├── delete_node.png │ │ ├── delete_node_hover.png │ │ ├── delete_node_pressed.png │ │ ├── delete_pressed.png │ │ ├── diagline_pattern.png │ │ ├── diagline_pattern.svg │ │ ├── distribute_horizontal.png │ │ ├── distribute_horizontal_hover.png │ │ ├── distribute_horizontal_pressed.png │ │ ├── distribute_vertical.png │ │ ├── distribute_vertical_hover.png │ │ ├── distribute_vertical_pressed.png │ │ ├── duplicate_node.png │ │ ├── duplicate_node_hover.png │ │ ├── duplicate_node_pressed.png │ │ ├── edit.png │ │ ├── eye.png │ │ ├── eye_16.png │ │ ├── eye_checkbox_checked.png │ │ ├── eye_checkbox_checked_disabled.png │ │ ├── eye_checkbox_checked_focus.png │ │ ├── eye_hover_16.png │ │ ├── find_startpoint.png │ │ ├── find_startpoint_hover.png │ │ ├── find_startpoint_pressed.png │ │ ├── frame_all.png │ │ ├── frame_all_hover.png │ │ ├── frame_sel.png │ │ ├── frame_sel_hover.png │ │ ├── global_resolved.png │ │ ├── global_resolved_hover.png │ │ ├── global_resolved_pressed.png │ │ ├── global_unresolved.png │ │ ├── global_unresolved_hover.png │ │ ├── global_unresolved_pressed.png │ │ ├── grid.png │ │ ├── grid_hover.png │ │ ├── grid_pressed.png │ │ ├── gridsnap_off.png │ │ ├── gridsnap_off_hover.png │ │ ├── gridsnap_off_pressed.png │ │ ├── gridsnap_on.png │ │ ├── gridsnap_on_hover.png │ │ ├── gridsnap_on_pressed.png │ │ ├── implicit_connections.png │ │ ├── implicit_connections_hover.png │ │ ├── implicit_connections_pressed.png │ │ ├── instance_node.png │ │ ├── instance_node_hover.png │ │ ├── instance_node_pressed.png │ │ ├── layers.png │ │ ├── layers_hover.png │ │ ├── link.png │ │ ├── link_hover.png │ │ ├── link_pressed.png │ │ ├── localize_node.png │ │ ├── localize_node_hover.png │ │ ├── localize_node_pressed.png │ │ ├── locate_off.png │ │ ├── locate_off_hover.png │ │ ├── locate_off_pressed.png │ │ ├── locate_on.png │ │ ├── locate_on_hover.png │ │ ├── locate_on_pressed.png │ │ ├── lock.png │ │ ├── lock_checkbox_checked.png │ │ ├── lock_checkbox_checked_disabled.png │ │ ├── lock_checkbox_checked_focus.png │ │ ├── locked_12.png │ │ ├── locked_hover_12.png │ │ ├── minus.png │ │ ├── minus_hover.png │ │ ├── nxt.svg │ │ ├── nxt_128.png │ │ ├── nxt_16.png │ │ ├── nxt_24.png │ │ ├── nxt_256.png │ │ ├── nxt_32.png │ │ ├── nxt_48.png │ │ ├── nxt_err.svg │ │ ├── nxt_err_128.png │ │ ├── paragraph_off_12.png │ │ ├── paragraph_off_hover_12.png │ │ ├── paragraph_on_12.png │ │ ├── paragraph_on_hover_12.png │ │ ├── paste_node.png │ │ ├── paste_node_hover.png │ │ ├── paste_node_pressed.png │ │ ├── pause.png │ │ ├── pause_hover.png │ │ ├── pencil.png │ │ ├── pencil_hover.png │ │ ├── play.png │ │ ├── play_hover.png │ │ ├── play_pressed.png │ │ ├── plus.png │ │ ├── plus_hover.png │ │ ├── remove_breakpoint.png │ │ ├── remove_breakpoint_hover.png │ │ ├── remove_breakpoint_pressed.png │ │ ├── remove_startpoint.png │ │ ├── remove_startpoint_hover.png │ │ ├── remove_startpoint_pressed.png │ │ ├── reset.png │ │ ├── reset_hover.png │ │ ├── reset_pressed.png │ │ ├── resolved_12.png │ │ ├── resolved_hover_12.png │ │ ├── resume.png │ │ ├── resume_hover.png │ │ ├── resume_pressed.png │ │ ├── runtime.png │ │ ├── step_backward.png │ │ ├── step_backward_hover.png │ │ ├── step_backward_pressed.png │ │ ├── step_forward.png │ │ ├── step_forward_hover.png │ │ ├── step_forward_pressed.png │ │ ├── stop.png │ │ ├── stop_hover.png │ │ ├── stop_pressed.png │ │ ├── uninstance_node.png │ │ ├── uninstance_node_hover.png │ │ ├── uninstance_node_pressed.png │ │ ├── unlocked_12.png │ │ ├── unlocked_hover_12.png │ │ ├── unresolved_12.png │ │ └── unresolved_hover_12.png │ ├── nxt.ai │ ├── nxt_icons.ai │ ├── resources.qrc │ └── styles │ │ └── dark │ │ ├── dark.qss │ │ └── rc │ │ ├── Hmovetoolbar.png │ │ ├── Hsepartoolbar.png │ │ ├── Vmovetoolbar.png │ │ ├── Vsepartoolbar.png │ │ ├── branch_closed-on.png │ │ ├── branch_closed.png │ │ ├── branch_open-on.png │ │ ├── branch_open.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_disabled.png │ │ ├── checkbox_checked_focus.png │ │ ├── checkbox_indeterminate.png │ │ ├── checkbox_indeterminate_disabled.png │ │ ├── checkbox_indeterminate_focus.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_disabled.png │ │ ├── checkbox_unchecked_focus.png │ │ ├── close-hover.png │ │ ├── close-pressed.png │ │ ├── close.png │ │ ├── down_arrow.png │ │ ├── down_arrow_disabled.png │ │ ├── left_arrow.png │ │ ├── left_arrow_disabled.png │ │ ├── minus.png │ │ ├── plus.png │ │ ├── radio_checked.png │ │ ├── radio_checked_disabled.png │ │ ├── radio_checked_focus.png │ │ ├── radio_unchecked.png │ │ ├── radio_unchecked_disabled.png │ │ ├── radio_unchecked_focus.png │ │ ├── right_arrow.png │ │ ├── right_arrow_disabled.png │ │ ├── sizegrip.png │ │ ├── stylesheet-branch-end.png │ │ ├── stylesheet-branch-more.png │ │ ├── stylesheet-vline.png │ │ ├── transparent.png │ │ ├── undock.png │ │ ├── up_arrow.png │ │ └── up_arrow_disabled.png ├── stage_model.py ├── stage_view.py ├── test │ ├── StageInheritTest.nxt │ ├── StageInstanceAcrossLayersTest.nxt │ ├── StageInstanceTest.nxt │ ├── __init__.py │ └── test_stage_model.py ├── user_dir.py └── version.json ├── nxt_env.yml └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/.github/workflows/unittests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/README.md -------------------------------------------------------------------------------- /docs/NXTStage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/NXTStage.md -------------------------------------------------------------------------------- /docs/api_docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/api_docs/Makefile -------------------------------------------------------------------------------- /docs/api_docs/api_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/api_docs/api_docs.md -------------------------------------------------------------------------------- /docs/api_docs/docs_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/api_docs/docs_env.yml -------------------------------------------------------------------------------- /docs/api_docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/api_docs/make.bat -------------------------------------------------------------------------------- /docs/api_docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/api_docs/source/conf.py -------------------------------------------------------------------------------- /docs/api_docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/api_docs/source/index.rst -------------------------------------------------------------------------------- /docs/doc_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/doc_setup.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/user_docs/custom_theme/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/custom_theme/base.html -------------------------------------------------------------------------------- /docs/user_docs/custom_theme/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/custom_theme/css/base.css -------------------------------------------------------------------------------- /docs/user_docs/custom_theme/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/custom_theme/css/bootstrap.css -------------------------------------------------------------------------------- /docs/user_docs/custom_theme/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/custom_theme/css/font-awesome.css -------------------------------------------------------------------------------- /docs/user_docs/custom_theme/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/custom_theme/extra.css -------------------------------------------------------------------------------- /docs/user_docs/custom_theme/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/custom_theme/img/favicon.ico -------------------------------------------------------------------------------- /docs/user_docs/docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/about.md -------------------------------------------------------------------------------- /docs/user_docs/docs/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/concepts.md -------------------------------------------------------------------------------- /docs/user_docs/docs/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/extensions.md -------------------------------------------------------------------------------- /docs/user_docs/docs/hotkeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/hotkeys.md -------------------------------------------------------------------------------- /docs/user_docs/docs/images/aaron_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/aaron_bw.png -------------------------------------------------------------------------------- /docs/user_docs/docs/images/attribute_color.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/attribute_color.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/code_editor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/code_editor.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/collapse.gif -------------------------------------------------------------------------------- /docs/user_docs/docs/images/execution_tag.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/execution_tag.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/graph_intro.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/graph_intro.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/hierarchy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/hierarchy.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/inheritance_arm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/inheritance_arm.gif -------------------------------------------------------------------------------- /docs/user_docs/docs/images/instance_intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/instance_intro.gif -------------------------------------------------------------------------------- /docs/user_docs/docs/images/instance_local.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/instance_local.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/instance_overwrite.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/instance_overwrite.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/instance_simple.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/instance_simple.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/layer_intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/layer_intro.gif -------------------------------------------------------------------------------- /docs/user_docs/docs/images/layers.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/layers.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/layers_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/layers_concept.png -------------------------------------------------------------------------------- /docs/user_docs/docs/images/lucas_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/lucas_bw.png -------------------------------------------------------------------------------- /docs/user_docs/docs/images/michael_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/michael_bw.png -------------------------------------------------------------------------------- /docs/user_docs/docs/images/nxt_layers01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/nxt_layers01.gif -------------------------------------------------------------------------------- /docs/user_docs/docs/images/nxt_overhead_intro.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/nxt_overhead_intro.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/nxt_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/nxt_structure.png -------------------------------------------------------------------------------- /docs/user_docs/docs/images/overhead_intro.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/overhead_intro.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/profile_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/profile_logo.png -------------------------------------------------------------------------------- /docs/user_docs/docs/images/proxy_children.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/proxy_children.PNG -------------------------------------------------------------------------------- /docs/user_docs/docs/images/token2_intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/token2_intro.gif -------------------------------------------------------------------------------- /docs/user_docs/docs/images/token_intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/token_intro.gif -------------------------------------------------------------------------------- /docs/user_docs/docs/images/tree_intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/tree_intro.gif -------------------------------------------------------------------------------- /docs/user_docs/docs/images/zach_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/images/zach_bw.png -------------------------------------------------------------------------------- /docs/user_docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/index.md -------------------------------------------------------------------------------- /docs/user_docs/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/install.md -------------------------------------------------------------------------------- /docs/user_docs/docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/license.md -------------------------------------------------------------------------------- /docs/user_docs/docs/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/reference.md -------------------------------------------------------------------------------- /docs/user_docs/docs/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/tutorials.md -------------------------------------------------------------------------------- /docs/user_docs/docs/workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/docs/workflows.md -------------------------------------------------------------------------------- /docs/user_docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/user_docs/nxt_user_docs_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/nxt_user_docs_env.yml -------------------------------------------------------------------------------- /docs/user_docs/tmplzthqg.requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs-material -------------------------------------------------------------------------------- /docs/user_docs/tmpzdkad3.requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs-material -------------------------------------------------------------------------------- /docs/user_docs/user_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/user_docs/user_docs.md -------------------------------------------------------------------------------- /docs/vs_code_remote_debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/docs/vs_code_remote_debug.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/example_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/example_file.txt -------------------------------------------------------------------------------- /examples/file_list.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/file_list.nxt -------------------------------------------------------------------------------- /examples/layering.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/layering.nxt -------------------------------------------------------------------------------- /examples/make_cube_spin.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/make_cube_spin.nxt -------------------------------------------------------------------------------- /examples/quick_start_graphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/quick_start_graphs/README.md -------------------------------------------------------------------------------- /examples/quick_start_graphs/maya_context.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/quick_start_graphs/maya_context.nxt -------------------------------------------------------------------------------- /examples/quick_start_graphs/my_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/quick_start_graphs/my_contexts.py -------------------------------------------------------------------------------- /examples/quick_start_graphs/my_sub_graph.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/quick_start_graphs/my_sub_graph.nxt -------------------------------------------------------------------------------- /examples/the_basics.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/the_basics.nxt -------------------------------------------------------------------------------- /examples/using_sub_graphs.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/examples/using_sub_graphs.nxt -------------------------------------------------------------------------------- /nxt_editor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/__init__.py -------------------------------------------------------------------------------- /nxt_editor/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/actions.py -------------------------------------------------------------------------------- /nxt_editor/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/colors.py -------------------------------------------------------------------------------- /nxt_editor/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/commands.py -------------------------------------------------------------------------------- /nxt_editor/connection_graphics_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/connection_graphics_item.py -------------------------------------------------------------------------------- /nxt_editor/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/constants.py -------------------------------------------------------------------------------- /nxt_editor/decorator_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/decorator_widgets.py -------------------------------------------------------------------------------- /nxt_editor/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dialogs.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/__init__.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/build_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/build_view.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/code_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/code_editor.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/dock_widget_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/dock_widget_base.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/find_rep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/find_rep.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/history_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/history_view.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/hotkey_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/hotkey_editor.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/layer_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/layer_manager.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/output_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/output_log.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/property_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/property_editor.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/syntax.py -------------------------------------------------------------------------------- /nxt_editor/dockwidgets/widget_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/dockwidgets/widget_builder.py -------------------------------------------------------------------------------- /nxt_editor/file_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/file_search.py -------------------------------------------------------------------------------- /nxt_editor/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/finder.py -------------------------------------------------------------------------------- /nxt_editor/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/__init__.py -------------------------------------------------------------------------------- /nxt_editor/integration/blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/blender/README.md -------------------------------------------------------------------------------- /nxt_editor/integration/maya/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/maya/README.md -------------------------------------------------------------------------------- /nxt_editor/integration/maya/drag_into_maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/maya/drag_into_maya.py -------------------------------------------------------------------------------- /nxt_editor/integration/maya/nxt.mod: -------------------------------------------------------------------------------- 1 | + nxt_maya 2 | -------------------------------------------------------------------------------- /nxt_editor/integration/maya/plug-ins/nxt_maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/maya/plug-ins/nxt_maya.py -------------------------------------------------------------------------------- /nxt_editor/integration/maya/run_maya_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/maya/run_maya_graph.py -------------------------------------------------------------------------------- /nxt_editor/integration/unreal/Content/Python/init_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/unreal/Content/Python/init_unreal.py -------------------------------------------------------------------------------- /nxt_editor/integration/unreal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/unreal/README.md -------------------------------------------------------------------------------- /nxt_editor/integration/unreal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/unreal/__init__.py -------------------------------------------------------------------------------- /nxt_editor/integration/unreal/nxt_unreal.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/integration/unreal/nxt_unreal.uplugin -------------------------------------------------------------------------------- /nxt_editor/label_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/label_edit.py -------------------------------------------------------------------------------- /nxt_editor/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/main_window.py -------------------------------------------------------------------------------- /nxt_editor/node_graphics_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/node_graphics_item.py -------------------------------------------------------------------------------- /nxt_editor/pixmap_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/pixmap_button.py -------------------------------------------------------------------------------- /nxt_editor/resources/LICENSE.FEATHERICONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/LICENSE.FEATHERICONS -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/LICENSE.txt -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/fonts/RobotoMono/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/fonts/RobotoMono/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /nxt_editor/resources/icons/BDiagPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/BDiagPattern.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/accept.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/accept_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/accept_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/accept_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/accept_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/add_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/add_breakpoint.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/add_breakpoint_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/add_breakpoint_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/add_breakpoint_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/add_breakpoint_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/add_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/add_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/add_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/add_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/add_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/add_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/add_startpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/add_startpoint.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/add_startpoint_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/add_startpoint_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/add_startpoint_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/add_startpoint_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_bottom.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_bottom_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_bottom_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_bottom_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_bottom_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_hcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_hcenter.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_hcenter_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_hcenter_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_hcenter_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_hcenter_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_left.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_left_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_left_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_left_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_left_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_right.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_right_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_right_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_right_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_right_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_top.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_top_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_top_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_top_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_top_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_vcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_vcenter.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_vcenter_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_vcenter_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/align_vcenter_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/align_vcenter_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/cache.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/cache_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/cache_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/cancel.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/cancel_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/cancel_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/cancel_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/cancel_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/clean_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/clean_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/clean_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/clean_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/clean_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/clean_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/clear_breakpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/clear_breakpoints.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/clear_breakpoints_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/clear_breakpoints_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/clear_breakpoints_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/clear_breakpoints_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/copy_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/copy_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/copy_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/copy_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/copy_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/copy_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/copy_resolved_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/copy_resolved_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/copy_resolved_hover_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/copy_resolved_hover_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/cut_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/cut_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/cut_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/cut_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/cut_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/cut_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/delete.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/delete_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/delete_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/delete_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/delete_items.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/delete_items_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/delete_items_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/delete_items_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/delete_items_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/delete_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/delete_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/delete_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/delete_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/delete_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/delete_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/delete_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/delete_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/diagline_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/diagline_pattern.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/diagline_pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/diagline_pattern.svg -------------------------------------------------------------------------------- /nxt_editor/resources/icons/distribute_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/distribute_horizontal.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/distribute_horizontal_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/distribute_horizontal_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/distribute_horizontal_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/distribute_horizontal_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/distribute_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/distribute_vertical.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/distribute_vertical_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/distribute_vertical_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/distribute_vertical_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/distribute_vertical_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/duplicate_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/duplicate_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/duplicate_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/duplicate_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/duplicate_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/duplicate_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/edit.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/eye.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/eye_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/eye_16.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/eye_checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/eye_checkbox_checked.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/eye_checkbox_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/eye_checkbox_checked_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/eye_checkbox_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/eye_checkbox_checked_focus.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/eye_hover_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/eye_hover_16.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/find_startpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/find_startpoint.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/find_startpoint_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/find_startpoint_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/find_startpoint_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/find_startpoint_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/frame_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/frame_all.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/frame_all_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/frame_all_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/frame_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/frame_sel.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/frame_sel_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/frame_sel_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/global_resolved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/global_resolved.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/global_resolved_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/global_resolved_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/global_resolved_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/global_resolved_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/global_unresolved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/global_unresolved.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/global_unresolved_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/global_unresolved_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/global_unresolved_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/global_unresolved_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/grid.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/grid_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/grid_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/grid_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/grid_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/gridsnap_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/gridsnap_off.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/gridsnap_off_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/gridsnap_off_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/gridsnap_off_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/gridsnap_off_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/gridsnap_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/gridsnap_on.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/gridsnap_on_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/gridsnap_on_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/gridsnap_on_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/gridsnap_on_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/implicit_connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/implicit_connections.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/implicit_connections_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/implicit_connections_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/implicit_connections_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/implicit_connections_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/instance_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/instance_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/instance_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/instance_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/instance_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/instance_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/layers.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/layers_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/layers_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/link.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/link_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/link_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/link_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/link_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/localize_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/localize_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/localize_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/localize_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/localize_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/localize_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/locate_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/locate_off.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/locate_off_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/locate_off_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/locate_off_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/locate_off_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/locate_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/locate_on.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/locate_on_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/locate_on_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/locate_on_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/locate_on_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/lock.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/lock_checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/lock_checkbox_checked.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/lock_checkbox_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/lock_checkbox_checked_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/lock_checkbox_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/lock_checkbox_checked_focus.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/locked_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/locked_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/locked_hover_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/locked_hover_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/minus.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/minus_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/minus_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/nxt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/nxt.svg -------------------------------------------------------------------------------- /nxt_editor/resources/icons/nxt_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/nxt_128.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/nxt_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/nxt_16.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/nxt_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/nxt_24.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/nxt_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/nxt_256.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/nxt_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/nxt_32.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/nxt_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/nxt_48.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/nxt_err.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/nxt_err.svg -------------------------------------------------------------------------------- /nxt_editor/resources/icons/nxt_err_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/nxt_err_128.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/paragraph_off_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/paragraph_off_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/paragraph_off_hover_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/paragraph_off_hover_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/paragraph_on_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/paragraph_on_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/paragraph_on_hover_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/paragraph_on_hover_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/paste_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/paste_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/paste_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/paste_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/paste_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/paste_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/pause.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/pause_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/pause_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/pencil.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/pencil_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/pencil_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/play.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/play_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/play_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/play_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/plus.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/plus_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/plus_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/remove_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/remove_breakpoint.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/remove_breakpoint_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/remove_breakpoint_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/remove_breakpoint_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/remove_breakpoint_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/remove_startpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/remove_startpoint.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/remove_startpoint_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/remove_startpoint_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/remove_startpoint_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/remove_startpoint_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/reset.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/reset_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/reset_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/reset_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/reset_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/resolved_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/resolved_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/resolved_hover_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/resolved_hover_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/resume.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/resume_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/resume_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/resume_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/resume_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/runtime.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/step_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/step_backward.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/step_backward_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/step_backward_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/step_backward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/step_backward_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/step_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/step_forward.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/step_forward_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/step_forward_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/step_forward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/step_forward_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/stop.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/stop_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/stop_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/stop_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/stop_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/uninstance_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/uninstance_node.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/uninstance_node_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/uninstance_node_hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/uninstance_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/uninstance_node_pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/unlocked_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/unlocked_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/unlocked_hover_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/unlocked_hover_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/unresolved_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/unresolved_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/icons/unresolved_hover_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/icons/unresolved_hover_12.png -------------------------------------------------------------------------------- /nxt_editor/resources/nxt.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/nxt.ai -------------------------------------------------------------------------------- /nxt_editor/resources/nxt_icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/nxt_icons.ai -------------------------------------------------------------------------------- /nxt_editor/resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/resources.qrc -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/dark.qss -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/Hmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/Hmovetoolbar.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/Hsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/Hsepartoolbar.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/Vmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/Vmovetoolbar.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/Vsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/Vsepartoolbar.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/branch_closed-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/branch_closed-on.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/branch_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/branch_closed.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/branch_open-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/branch_open-on.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/branch_open.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/checkbox_checked.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/checkbox_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/checkbox_checked_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/checkbox_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/checkbox_checked_focus.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/checkbox_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/checkbox_indeterminate.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/checkbox_indeterminate_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/checkbox_indeterminate_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/checkbox_indeterminate_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/checkbox_indeterminate_focus.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/checkbox_unchecked.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/checkbox_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/checkbox_unchecked_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/checkbox_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/checkbox_unchecked_focus.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/close-hover.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/close-pressed.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/close.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/down_arrow.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/down_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/down_arrow_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/left_arrow.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/left_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/left_arrow_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/minus.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/plus.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/radio_checked.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/radio_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/radio_checked_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/radio_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/radio_checked_focus.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/radio_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/radio_unchecked.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/radio_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/radio_unchecked_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/radio_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/radio_unchecked_focus.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/right_arrow.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/right_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/right_arrow_disabled.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/sizegrip.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/stylesheet-branch-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/stylesheet-branch-end.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/stylesheet-branch-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/stylesheet-branch-more.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/stylesheet-vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/stylesheet-vline.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/transparent.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/undock.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/up_arrow.png -------------------------------------------------------------------------------- /nxt_editor/resources/styles/dark/rc/up_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/resources/styles/dark/rc/up_arrow_disabled.png -------------------------------------------------------------------------------- /nxt_editor/stage_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/stage_model.py -------------------------------------------------------------------------------- /nxt_editor/stage_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/stage_view.py -------------------------------------------------------------------------------- /nxt_editor/test/StageInheritTest.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/test/StageInheritTest.nxt -------------------------------------------------------------------------------- /nxt_editor/test/StageInstanceAcrossLayersTest.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/test/StageInstanceAcrossLayersTest.nxt -------------------------------------------------------------------------------- /nxt_editor/test/StageInstanceTest.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/test/StageInstanceTest.nxt -------------------------------------------------------------------------------- /nxt_editor/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nxt_editor/test/test_stage_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/test/test_stage_model.py -------------------------------------------------------------------------------- /nxt_editor/user_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/user_dir.py -------------------------------------------------------------------------------- /nxt_editor/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_editor/version.json -------------------------------------------------------------------------------- /nxt_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/nxt_env.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxt-dev/nxt_editor/HEAD/setup.py --------------------------------------------------------------------------------