├── .gitignore ├── .vscode └── settings.json ├── MyPlugin ├── Content │ └── Python │ │ ├── dependencies_installer │ │ ├── __init__.py │ │ └── vendor │ │ │ └── py_pip │ │ │ └── __init__.py │ │ ├── init_unreal.py │ │ ├── my_module.py │ │ └── requirements.txt ├── MyPlugin.uplugin └── Resources │ └── icon128.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesdelbeke/unreal-python-plugin-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesdelbeke/unreal-python-plugin-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /MyPlugin/Content/Python/dependencies_installer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesdelbeke/unreal-python-plugin-template/HEAD/MyPlugin/Content/Python/dependencies_installer/__init__.py -------------------------------------------------------------------------------- /MyPlugin/Content/Python/dependencies_installer/vendor/py_pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesdelbeke/unreal-python-plugin-template/HEAD/MyPlugin/Content/Python/dependencies_installer/vendor/py_pip/__init__.py -------------------------------------------------------------------------------- /MyPlugin/Content/Python/init_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesdelbeke/unreal-python-plugin-template/HEAD/MyPlugin/Content/Python/init_unreal.py -------------------------------------------------------------------------------- /MyPlugin/Content/Python/my_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesdelbeke/unreal-python-plugin-template/HEAD/MyPlugin/Content/Python/my_module.py -------------------------------------------------------------------------------- /MyPlugin/Content/Python/requirements.txt: -------------------------------------------------------------------------------- 1 | unreal-qt 2 | -------------------------------------------------------------------------------- /MyPlugin/MyPlugin.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesdelbeke/unreal-python-plugin-template/HEAD/MyPlugin/MyPlugin.uplugin -------------------------------------------------------------------------------- /MyPlugin/Resources/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesdelbeke/unreal-python-plugin-template/HEAD/MyPlugin/Resources/icon128.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesdelbeke/unreal-python-plugin-template/HEAD/README.md --------------------------------------------------------------------------------