├── .github └── workflows │ └── mkdocs.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── api.md ├── community.md ├── customshapes.md ├── download.md ├── hierarchy.md ├── images.md ├── images │ ├── 2minutes.png │ ├── addshape.png │ ├── assignpanel.gif │ ├── clearchildren.gif │ ├── connecthierarchy.gif │ ├── createlayer.gif │ ├── createpanels.gif │ ├── customshapeeditor.gif │ ├── customshapeeditor.png │ ├── dock.png │ ├── dreamwall.png │ ├── dreamwallpicker.png │ ├── ellipse.png │ ├── giant.png │ ├── hierarchy.png │ ├── install.gif │ ├── isolatepanel.gif │ ├── larian.png │ ├── library.gif │ ├── moon_studio.png │ ├── multibuttons.gif │ ├── namespacecombo.png │ ├── nodilus.jpg │ ├── overlay.gif │ ├── overlayplacment.gif │ ├── rmchildren.png │ ├── switchdisplaymode.gif │ ├── switchlayers.gif │ ├── togglelayers.gif │ └── visibilitylayers.png ├── index.md ├── install.md ├── layers.md ├── namespace.md ├── overlays.md ├── panels.md ├── scripts.md └── support.md ├── drag_and_drop_to_maya_install.py ├── dwpicker ├── __init__.py ├── align.py ├── appinfos.py ├── arrayutils.py ├── clipboard.py ├── colorwheel.py ├── commands.py ├── compatibility.py ├── designer │ ├── __init__.py │ ├── attributes.py │ ├── canvas.py │ ├── display.py │ ├── editor.py │ ├── highlighter.py │ ├── layer.py │ ├── menu.py │ ├── patheditor.py │ └── stackeditor.py ├── dialog.py ├── document.py ├── geometry.py ├── hotkeys.py ├── hotkeyseditor.py ├── icons │ ├── addbg.png │ ├── addbutton.png │ ├── addshape.png │ ├── addtext.png │ ├── align_bottom.png │ ├── align_h_center.png │ ├── align_left.png │ ├── align_right.png │ ├── align_top.png │ ├── align_v_center.png │ ├── arrange_h.png │ ├── arrange_v.png │ ├── center.png │ ├── copy.png │ ├── copy_settings.png │ ├── delete.png │ ├── delete2.png │ ├── dock.png │ ├── dreamwallpicker.png │ ├── edit.png │ ├── edit2.png │ ├── frame.png │ ├── h_symmetry.png │ ├── hierarchy.png │ ├── isolate.png │ ├── link.png │ ├── lock-non-interactive.png │ ├── manager-delete.png │ ├── manager-edit.png │ ├── manager-export.png │ ├── manager-import.png │ ├── manager-new.png │ ├── mini-open.png │ ├── movedown.png │ ├── moveup.png │ ├── new.png │ ├── onbottom.png │ ├── ontop.png │ ├── open.png │ ├── panels.png │ ├── paste.png │ ├── paste_settings.png │ ├── picker.png │ ├── play.png │ ├── polygon.png │ ├── redo.png │ ├── reload.png │ ├── rotation.png │ ├── save.png │ ├── search.png │ ├── snap.png │ ├── tabs.png │ ├── tangent.png │ ├── tangentbreak.png │ ├── touch.png │ ├── undo.png │ ├── unlink.png │ └── v_symmetry.png ├── ingest │ ├── __init__.py │ ├── animschool │ │ ├── __init__.py │ │ ├── converter.py │ │ └── parser.py │ └── mgear │ │ ├── __init__.py │ │ ├── converter.py │ │ └── template.py ├── interactionmanager.py ├── interactive.py ├── languages.py ├── main.py ├── namespace.py ├── optionvar.py ├── painting.py ├── path.py ├── picker.py ├── preference.py ├── pyside.py ├── qtutils.py ├── quick.py ├── references.py ├── scenedata.py ├── selection.py ├── shape.py ├── shapelibrary.py ├── shapepath.py ├── shapes │ ├── cross.dws │ ├── cross_arrow.dws │ ├── diamond.dws │ ├── double_arrow.dws │ ├── fat_arrow.dws │ ├── half_circle.dws │ ├── hexagon.dws │ ├── pie.dws │ ├── star_5.dws │ ├── star_6.dws │ ├── tailess_arrow.dws │ └── thin_arrow.dws ├── stack.py ├── templates.py ├── transform.py ├── undo.py ├── updatechecker.py ├── viewport.py └── widgets.py ├── mkdocs.yml ├── screenshots ├── createbuttons.gif ├── editor.gif └── picker.gif └── scripts ├── change_namespace.py ├── clean_reload_dwpicker.py ├── convert_multiple_animschool_files.py ├── create_buttons.py ├── create_picker_dashboard.py ├── detect_current_namespace.py └── independent_picker_widget.py /.github/workflows/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/.github/workflows/mkdocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/community.md -------------------------------------------------------------------------------- /docs/customshapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/customshapes.md -------------------------------------------------------------------------------- /docs/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/download.md -------------------------------------------------------------------------------- /docs/hierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/hierarchy.md -------------------------------------------------------------------------------- /docs/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images.md -------------------------------------------------------------------------------- /docs/images/2minutes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/2minutes.png -------------------------------------------------------------------------------- /docs/images/addshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/addshape.png -------------------------------------------------------------------------------- /docs/images/assignpanel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/assignpanel.gif -------------------------------------------------------------------------------- /docs/images/clearchildren.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/clearchildren.gif -------------------------------------------------------------------------------- /docs/images/connecthierarchy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/connecthierarchy.gif -------------------------------------------------------------------------------- /docs/images/createlayer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/createlayer.gif -------------------------------------------------------------------------------- /docs/images/createpanels.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/createpanels.gif -------------------------------------------------------------------------------- /docs/images/customshapeeditor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/customshapeeditor.gif -------------------------------------------------------------------------------- /docs/images/customshapeeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/customshapeeditor.png -------------------------------------------------------------------------------- /docs/images/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/dock.png -------------------------------------------------------------------------------- /docs/images/dreamwall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/dreamwall.png -------------------------------------------------------------------------------- /docs/images/dreamwallpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/dreamwallpicker.png -------------------------------------------------------------------------------- /docs/images/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/ellipse.png -------------------------------------------------------------------------------- /docs/images/giant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/giant.png -------------------------------------------------------------------------------- /docs/images/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/hierarchy.png -------------------------------------------------------------------------------- /docs/images/install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/install.gif -------------------------------------------------------------------------------- /docs/images/isolatepanel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/isolatepanel.gif -------------------------------------------------------------------------------- /docs/images/larian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/larian.png -------------------------------------------------------------------------------- /docs/images/library.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/library.gif -------------------------------------------------------------------------------- /docs/images/moon_studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/moon_studio.png -------------------------------------------------------------------------------- /docs/images/multibuttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/multibuttons.gif -------------------------------------------------------------------------------- /docs/images/namespacecombo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/namespacecombo.png -------------------------------------------------------------------------------- /docs/images/nodilus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/nodilus.jpg -------------------------------------------------------------------------------- /docs/images/overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/overlay.gif -------------------------------------------------------------------------------- /docs/images/overlayplacment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/overlayplacment.gif -------------------------------------------------------------------------------- /docs/images/rmchildren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/rmchildren.png -------------------------------------------------------------------------------- /docs/images/switchdisplaymode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/switchdisplaymode.gif -------------------------------------------------------------------------------- /docs/images/switchlayers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/switchlayers.gif -------------------------------------------------------------------------------- /docs/images/togglelayers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/togglelayers.gif -------------------------------------------------------------------------------- /docs/images/visibilitylayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/images/visibilitylayers.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/layers.md -------------------------------------------------------------------------------- /docs/namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/namespace.md -------------------------------------------------------------------------------- /docs/overlays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/overlays.md -------------------------------------------------------------------------------- /docs/panels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/panels.md -------------------------------------------------------------------------------- /docs/scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/scripts.md -------------------------------------------------------------------------------- /docs/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/docs/support.md -------------------------------------------------------------------------------- /drag_and_drop_to_maya_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/drag_and_drop_to_maya_install.py -------------------------------------------------------------------------------- /dwpicker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/__init__.py -------------------------------------------------------------------------------- /dwpicker/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/align.py -------------------------------------------------------------------------------- /dwpicker/appinfos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/appinfos.py -------------------------------------------------------------------------------- /dwpicker/arrayutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/arrayutils.py -------------------------------------------------------------------------------- /dwpicker/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/clipboard.py -------------------------------------------------------------------------------- /dwpicker/colorwheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/colorwheel.py -------------------------------------------------------------------------------- /dwpicker/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/commands.py -------------------------------------------------------------------------------- /dwpicker/compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/compatibility.py -------------------------------------------------------------------------------- /dwpicker/designer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dwpicker/designer/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/designer/attributes.py -------------------------------------------------------------------------------- /dwpicker/designer/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/designer/canvas.py -------------------------------------------------------------------------------- /dwpicker/designer/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/designer/display.py -------------------------------------------------------------------------------- /dwpicker/designer/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/designer/editor.py -------------------------------------------------------------------------------- /dwpicker/designer/highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/designer/highlighter.py -------------------------------------------------------------------------------- /dwpicker/designer/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/designer/layer.py -------------------------------------------------------------------------------- /dwpicker/designer/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/designer/menu.py -------------------------------------------------------------------------------- /dwpicker/designer/patheditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/designer/patheditor.py -------------------------------------------------------------------------------- /dwpicker/designer/stackeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/designer/stackeditor.py -------------------------------------------------------------------------------- /dwpicker/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/dialog.py -------------------------------------------------------------------------------- /dwpicker/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/document.py -------------------------------------------------------------------------------- /dwpicker/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/geometry.py -------------------------------------------------------------------------------- /dwpicker/hotkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/hotkeys.py -------------------------------------------------------------------------------- /dwpicker/hotkeyseditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/hotkeyseditor.py -------------------------------------------------------------------------------- /dwpicker/icons/addbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/addbg.png -------------------------------------------------------------------------------- /dwpicker/icons/addbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/addbutton.png -------------------------------------------------------------------------------- /dwpicker/icons/addshape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/addshape.png -------------------------------------------------------------------------------- /dwpicker/icons/addtext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/addtext.png -------------------------------------------------------------------------------- /dwpicker/icons/align_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/align_bottom.png -------------------------------------------------------------------------------- /dwpicker/icons/align_h_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/align_h_center.png -------------------------------------------------------------------------------- /dwpicker/icons/align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/align_left.png -------------------------------------------------------------------------------- /dwpicker/icons/align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/align_right.png -------------------------------------------------------------------------------- /dwpicker/icons/align_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/align_top.png -------------------------------------------------------------------------------- /dwpicker/icons/align_v_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/align_v_center.png -------------------------------------------------------------------------------- /dwpicker/icons/arrange_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/arrange_h.png -------------------------------------------------------------------------------- /dwpicker/icons/arrange_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/arrange_v.png -------------------------------------------------------------------------------- /dwpicker/icons/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/center.png -------------------------------------------------------------------------------- /dwpicker/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/copy.png -------------------------------------------------------------------------------- /dwpicker/icons/copy_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/copy_settings.png -------------------------------------------------------------------------------- /dwpicker/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/delete.png -------------------------------------------------------------------------------- /dwpicker/icons/delete2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/delete2.png -------------------------------------------------------------------------------- /dwpicker/icons/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/dock.png -------------------------------------------------------------------------------- /dwpicker/icons/dreamwallpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/dreamwallpicker.png -------------------------------------------------------------------------------- /dwpicker/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/edit.png -------------------------------------------------------------------------------- /dwpicker/icons/edit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/edit2.png -------------------------------------------------------------------------------- /dwpicker/icons/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/frame.png -------------------------------------------------------------------------------- /dwpicker/icons/h_symmetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/h_symmetry.png -------------------------------------------------------------------------------- /dwpicker/icons/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/hierarchy.png -------------------------------------------------------------------------------- /dwpicker/icons/isolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/isolate.png -------------------------------------------------------------------------------- /dwpicker/icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/link.png -------------------------------------------------------------------------------- /dwpicker/icons/lock-non-interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/lock-non-interactive.png -------------------------------------------------------------------------------- /dwpicker/icons/manager-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/manager-delete.png -------------------------------------------------------------------------------- /dwpicker/icons/manager-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/manager-edit.png -------------------------------------------------------------------------------- /dwpicker/icons/manager-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/manager-export.png -------------------------------------------------------------------------------- /dwpicker/icons/manager-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/manager-import.png -------------------------------------------------------------------------------- /dwpicker/icons/manager-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/manager-new.png -------------------------------------------------------------------------------- /dwpicker/icons/mini-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/mini-open.png -------------------------------------------------------------------------------- /dwpicker/icons/movedown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/movedown.png -------------------------------------------------------------------------------- /dwpicker/icons/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/moveup.png -------------------------------------------------------------------------------- /dwpicker/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/new.png -------------------------------------------------------------------------------- /dwpicker/icons/onbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/onbottom.png -------------------------------------------------------------------------------- /dwpicker/icons/ontop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/ontop.png -------------------------------------------------------------------------------- /dwpicker/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/open.png -------------------------------------------------------------------------------- /dwpicker/icons/panels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/panels.png -------------------------------------------------------------------------------- /dwpicker/icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/paste.png -------------------------------------------------------------------------------- /dwpicker/icons/paste_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/paste_settings.png -------------------------------------------------------------------------------- /dwpicker/icons/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/picker.png -------------------------------------------------------------------------------- /dwpicker/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/play.png -------------------------------------------------------------------------------- /dwpicker/icons/polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/polygon.png -------------------------------------------------------------------------------- /dwpicker/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/redo.png -------------------------------------------------------------------------------- /dwpicker/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/reload.png -------------------------------------------------------------------------------- /dwpicker/icons/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/rotation.png -------------------------------------------------------------------------------- /dwpicker/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/save.png -------------------------------------------------------------------------------- /dwpicker/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/search.png -------------------------------------------------------------------------------- /dwpicker/icons/snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/snap.png -------------------------------------------------------------------------------- /dwpicker/icons/tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/tabs.png -------------------------------------------------------------------------------- /dwpicker/icons/tangent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/tangent.png -------------------------------------------------------------------------------- /dwpicker/icons/tangentbreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/tangentbreak.png -------------------------------------------------------------------------------- /dwpicker/icons/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/touch.png -------------------------------------------------------------------------------- /dwpicker/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/undo.png -------------------------------------------------------------------------------- /dwpicker/icons/unlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/unlink.png -------------------------------------------------------------------------------- /dwpicker/icons/v_symmetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/icons/v_symmetry.png -------------------------------------------------------------------------------- /dwpicker/ingest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dwpicker/ingest/animschool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/ingest/animschool/__init__.py -------------------------------------------------------------------------------- /dwpicker/ingest/animschool/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/ingest/animschool/converter.py -------------------------------------------------------------------------------- /dwpicker/ingest/animschool/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/ingest/animschool/parser.py -------------------------------------------------------------------------------- /dwpicker/ingest/mgear/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/ingest/mgear/__init__.py -------------------------------------------------------------------------------- /dwpicker/ingest/mgear/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/ingest/mgear/converter.py -------------------------------------------------------------------------------- /dwpicker/ingest/mgear/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/ingest/mgear/template.py -------------------------------------------------------------------------------- /dwpicker/interactionmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/interactionmanager.py -------------------------------------------------------------------------------- /dwpicker/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/interactive.py -------------------------------------------------------------------------------- /dwpicker/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/languages.py -------------------------------------------------------------------------------- /dwpicker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/main.py -------------------------------------------------------------------------------- /dwpicker/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/namespace.py -------------------------------------------------------------------------------- /dwpicker/optionvar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/optionvar.py -------------------------------------------------------------------------------- /dwpicker/painting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/painting.py -------------------------------------------------------------------------------- /dwpicker/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/path.py -------------------------------------------------------------------------------- /dwpicker/picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/picker.py -------------------------------------------------------------------------------- /dwpicker/preference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/preference.py -------------------------------------------------------------------------------- /dwpicker/pyside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/pyside.py -------------------------------------------------------------------------------- /dwpicker/qtutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/qtutils.py -------------------------------------------------------------------------------- /dwpicker/quick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/quick.py -------------------------------------------------------------------------------- /dwpicker/references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/references.py -------------------------------------------------------------------------------- /dwpicker/scenedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/scenedata.py -------------------------------------------------------------------------------- /dwpicker/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/selection.py -------------------------------------------------------------------------------- /dwpicker/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shape.py -------------------------------------------------------------------------------- /dwpicker/shapelibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapelibrary.py -------------------------------------------------------------------------------- /dwpicker/shapepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapepath.py -------------------------------------------------------------------------------- /dwpicker/shapes/cross.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/cross.dws -------------------------------------------------------------------------------- /dwpicker/shapes/cross_arrow.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/cross_arrow.dws -------------------------------------------------------------------------------- /dwpicker/shapes/diamond.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/diamond.dws -------------------------------------------------------------------------------- /dwpicker/shapes/double_arrow.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/double_arrow.dws -------------------------------------------------------------------------------- /dwpicker/shapes/fat_arrow.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/fat_arrow.dws -------------------------------------------------------------------------------- /dwpicker/shapes/half_circle.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/half_circle.dws -------------------------------------------------------------------------------- /dwpicker/shapes/hexagon.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/hexagon.dws -------------------------------------------------------------------------------- /dwpicker/shapes/pie.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/pie.dws -------------------------------------------------------------------------------- /dwpicker/shapes/star_5.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/star_5.dws -------------------------------------------------------------------------------- /dwpicker/shapes/star_6.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/star_6.dws -------------------------------------------------------------------------------- /dwpicker/shapes/tailess_arrow.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/tailess_arrow.dws -------------------------------------------------------------------------------- /dwpicker/shapes/thin_arrow.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/shapes/thin_arrow.dws -------------------------------------------------------------------------------- /dwpicker/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/stack.py -------------------------------------------------------------------------------- /dwpicker/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/templates.py -------------------------------------------------------------------------------- /dwpicker/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/transform.py -------------------------------------------------------------------------------- /dwpicker/undo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/undo.py -------------------------------------------------------------------------------- /dwpicker/updatechecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/updatechecker.py -------------------------------------------------------------------------------- /dwpicker/viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/viewport.py -------------------------------------------------------------------------------- /dwpicker/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/dwpicker/widgets.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /screenshots/createbuttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/screenshots/createbuttons.gif -------------------------------------------------------------------------------- /screenshots/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/screenshots/editor.gif -------------------------------------------------------------------------------- /screenshots/picker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/screenshots/picker.gif -------------------------------------------------------------------------------- /scripts/change_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/scripts/change_namespace.py -------------------------------------------------------------------------------- /scripts/clean_reload_dwpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/scripts/clean_reload_dwpicker.py -------------------------------------------------------------------------------- /scripts/convert_multiple_animschool_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/scripts/convert_multiple_animschool_files.py -------------------------------------------------------------------------------- /scripts/create_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/scripts/create_buttons.py -------------------------------------------------------------------------------- /scripts/create_picker_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/scripts/create_picker_dashboard.py -------------------------------------------------------------------------------- /scripts/detect_current_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/scripts/detect_current_namespace.py -------------------------------------------------------------------------------- /scripts/independent_picker_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamWall-Animation/dwpicker/HEAD/scripts/independent_picker_widget.py --------------------------------------------------------------------------------