├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE │ └── release.md └── workflows │ └── release-windows.yml ├── .gitignore ├── .vscode ├── recommended.code-workspace └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── assets └── thumbnail.png ├── excludes.txt └── src ├── Blender.sln ├── LICENSE.txt ├── addon ├── __init__.py ├── blender_manifest.toml ├── formats │ ├── _3mf.py │ ├── __init__.py │ ├── abc.py │ ├── bvh.py │ ├── dae.py │ ├── fbx.py │ ├── glb.py │ ├── obj.py │ ├── obj_legacy.py │ ├── ply.py │ ├── pmx.py │ ├── png.py │ ├── stl.py │ ├── stl_legacy.py │ ├── super.py │ ├── svg.py │ ├── usd.py │ ├── vrm.py │ └── x3d.py ├── operator.py └── requirements.txt └── dll ├── BlenderObj.h ├── BlenderPatch.cpp ├── BlenderPatch.h ├── BlenderPatchPatterns.h ├── BlenderPatcher.cpp ├── BlenderPatcher.h ├── Injections.asm ├── assembly.hpp ├── blender-injection.vcxproj ├── blender-injection.vcxproj.filters ├── byte_pattern.cpp ├── byte_pattern.h ├── dllmain.cpp ├── extern.cpp ├── extern.h ├── framework.h ├── injector.hpp ├── pch.cpp ├── pch.h ├── strings.h └── stubs ├── ListBase.h ├── bContext.h ├── eWM_DragDataType.h ├── eWM_DragFlags.h ├── eWM_EventFlag.h ├── wmDrag.h ├── wmDragActiveDropState.h ├── wmDragPath.h ├── wmEvent.h └── wmTabletData.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/.github/PULL_REQUEST_TEMPLATE/release.md -------------------------------------------------------------------------------- /.github/workflows/release-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/.github/workflows/release-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/recommended.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/.vscode/recommended.code-workspace -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/README.md -------------------------------------------------------------------------------- /assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/assets/thumbnail.png -------------------------------------------------------------------------------- /excludes.txt: -------------------------------------------------------------------------------- 1 | .pdb -------------------------------------------------------------------------------- /src/Blender.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/Blender.sln -------------------------------------------------------------------------------- /src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/LICENSE.txt -------------------------------------------------------------------------------- /src/addon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/__init__.py -------------------------------------------------------------------------------- /src/addon/blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/blender_manifest.toml -------------------------------------------------------------------------------- /src/addon/formats/_3mf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/_3mf.py -------------------------------------------------------------------------------- /src/addon/formats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/__init__.py -------------------------------------------------------------------------------- /src/addon/formats/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/abc.py -------------------------------------------------------------------------------- /src/addon/formats/bvh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/bvh.py -------------------------------------------------------------------------------- /src/addon/formats/dae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/dae.py -------------------------------------------------------------------------------- /src/addon/formats/fbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/fbx.py -------------------------------------------------------------------------------- /src/addon/formats/glb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/glb.py -------------------------------------------------------------------------------- /src/addon/formats/obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/obj.py -------------------------------------------------------------------------------- /src/addon/formats/obj_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/obj_legacy.py -------------------------------------------------------------------------------- /src/addon/formats/ply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/ply.py -------------------------------------------------------------------------------- /src/addon/formats/pmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/pmx.py -------------------------------------------------------------------------------- /src/addon/formats/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/png.py -------------------------------------------------------------------------------- /src/addon/formats/stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/stl.py -------------------------------------------------------------------------------- /src/addon/formats/stl_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/stl_legacy.py -------------------------------------------------------------------------------- /src/addon/formats/super.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/super.py -------------------------------------------------------------------------------- /src/addon/formats/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/svg.py -------------------------------------------------------------------------------- /src/addon/formats/usd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/usd.py -------------------------------------------------------------------------------- /src/addon/formats/vrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/vrm.py -------------------------------------------------------------------------------- /src/addon/formats/x3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/formats/x3d.py -------------------------------------------------------------------------------- /src/addon/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/addon/operator.py -------------------------------------------------------------------------------- /src/addon/requirements.txt: -------------------------------------------------------------------------------- 1 | fake-bpy-module-4.1==20240604 -------------------------------------------------------------------------------- /src/dll/BlenderObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/BlenderObj.h -------------------------------------------------------------------------------- /src/dll/BlenderPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/BlenderPatch.cpp -------------------------------------------------------------------------------- /src/dll/BlenderPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/BlenderPatch.h -------------------------------------------------------------------------------- /src/dll/BlenderPatchPatterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/BlenderPatchPatterns.h -------------------------------------------------------------------------------- /src/dll/BlenderPatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/BlenderPatcher.cpp -------------------------------------------------------------------------------- /src/dll/BlenderPatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/BlenderPatcher.h -------------------------------------------------------------------------------- /src/dll/Injections.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/Injections.asm -------------------------------------------------------------------------------- /src/dll/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/assembly.hpp -------------------------------------------------------------------------------- /src/dll/blender-injection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/blender-injection.vcxproj -------------------------------------------------------------------------------- /src/dll/blender-injection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/blender-injection.vcxproj.filters -------------------------------------------------------------------------------- /src/dll/byte_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/byte_pattern.cpp -------------------------------------------------------------------------------- /src/dll/byte_pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/byte_pattern.h -------------------------------------------------------------------------------- /src/dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/dllmain.cpp -------------------------------------------------------------------------------- /src/dll/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/extern.cpp -------------------------------------------------------------------------------- /src/dll/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/extern.h -------------------------------------------------------------------------------- /src/dll/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/framework.h -------------------------------------------------------------------------------- /src/dll/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/injector.hpp -------------------------------------------------------------------------------- /src/dll/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/pch.cpp -------------------------------------------------------------------------------- /src/dll/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/pch.h -------------------------------------------------------------------------------- /src/dll/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/strings.h -------------------------------------------------------------------------------- /src/dll/stubs/ListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/ListBase.h -------------------------------------------------------------------------------- /src/dll/stubs/bContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/bContext.h -------------------------------------------------------------------------------- /src/dll/stubs/eWM_DragDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/eWM_DragDataType.h -------------------------------------------------------------------------------- /src/dll/stubs/eWM_DragFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/eWM_DragFlags.h -------------------------------------------------------------------------------- /src/dll/stubs/eWM_EventFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/eWM_EventFlag.h -------------------------------------------------------------------------------- /src/dll/stubs/wmDrag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/wmDrag.h -------------------------------------------------------------------------------- /src/dll/stubs/wmDragActiveDropState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/wmDragActiveDropState.h -------------------------------------------------------------------------------- /src/dll/stubs/wmDragPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/wmDragPath.h -------------------------------------------------------------------------------- /src/dll/stubs/wmEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/wmEvent.h -------------------------------------------------------------------------------- /src/dll/stubs/wmTabletData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mika-f/blender-drag-and-drop/HEAD/src/dll/stubs/wmTabletData.h --------------------------------------------------------------------------------