├── .gitignore ├── LICENSE ├── PyUE4Builder ├── .idea │ ├── Scripts.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── actions │ ├── action.py │ ├── build.py │ ├── buildsteps.py │ ├── cook.py │ ├── copy.py │ ├── delete.py │ ├── git.py │ ├── package.py │ ├── pak.py │ ├── steamupload.py │ └── versioninc.py ├── build_meta.py ├── build_script.py ├── config.py ├── example_build.json ├── rsa │ └── readme.txt ├── tools.py └── utility │ ├── common.py │ └── downloaders.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/LICENSE -------------------------------------------------------------------------------- /PyUE4Builder/.idea/Scripts.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/.idea/Scripts.iml -------------------------------------------------------------------------------- /PyUE4Builder/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /PyUE4Builder/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /PyUE4Builder/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/.idea/misc.xml -------------------------------------------------------------------------------- /PyUE4Builder/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/.idea/modules.xml -------------------------------------------------------------------------------- /PyUE4Builder/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/.idea/vcs.xml -------------------------------------------------------------------------------- /PyUE4Builder/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/.idea/workspace.xml -------------------------------------------------------------------------------- /PyUE4Builder/actions/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/action.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/build.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/buildsteps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/buildsteps.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/cook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/cook.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/copy.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/delete.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/git.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/package.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/pak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/pak.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/steamupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/steamupload.py -------------------------------------------------------------------------------- /PyUE4Builder/actions/versioninc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/actions/versioninc.py -------------------------------------------------------------------------------- /PyUE4Builder/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/build_meta.py -------------------------------------------------------------------------------- /PyUE4Builder/build_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/build_script.py -------------------------------------------------------------------------------- /PyUE4Builder/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/config.py -------------------------------------------------------------------------------- /PyUE4Builder/example_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/example_build.json -------------------------------------------------------------------------------- /PyUE4Builder/rsa/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/rsa/readme.txt -------------------------------------------------------------------------------- /PyUE4Builder/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/tools.py -------------------------------------------------------------------------------- /PyUE4Builder/utility/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/utility/common.py -------------------------------------------------------------------------------- /PyUE4Builder/utility/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/PyUE4Builder/utility/downloaders.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfsheffer/PyUE4Builder/HEAD/README.md --------------------------------------------------------------------------------