├── .gitignore ├── .vscode └── settings.json ├── Content └── Python │ ├── Examples │ ├── __init__.py │ └── post_import_texture2D_settings.py │ ├── ImporterRules │ ├── Actions.py │ ├── Manager.py │ ├── Queries.py │ ├── Rules.py │ └── __init__.py │ └── init_unreal.py ├── Documentation └── editor_properties.png ├── ImporterRulesPython.code-workspace ├── ImporterRulesPython.uplugin ├── LICENSE ├── README.md └── Resources └── Icon128.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Content/Python/Examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Content/Python/Examples/__init__.py -------------------------------------------------------------------------------- /Content/Python/Examples/post_import_texture2D_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Content/Python/Examples/post_import_texture2D_settings.py -------------------------------------------------------------------------------- /Content/Python/ImporterRules/Actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Content/Python/ImporterRules/Actions.py -------------------------------------------------------------------------------- /Content/Python/ImporterRules/Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Content/Python/ImporterRules/Manager.py -------------------------------------------------------------------------------- /Content/Python/ImporterRules/Queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Content/Python/ImporterRules/Queries.py -------------------------------------------------------------------------------- /Content/Python/ImporterRules/Rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Content/Python/ImporterRules/Rules.py -------------------------------------------------------------------------------- /Content/Python/ImporterRules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Content/Python/ImporterRules/__init__.py -------------------------------------------------------------------------------- /Content/Python/init_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Content/Python/init_unreal.py -------------------------------------------------------------------------------- /Documentation/editor_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Documentation/editor_properties.png -------------------------------------------------------------------------------- /ImporterRulesPython.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/ImporterRulesPython.code-workspace -------------------------------------------------------------------------------- /ImporterRulesPython.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/ImporterRulesPython.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryan-DowlingSoka/UnrealImporterRules-Python/HEAD/Resources/Icon128.png --------------------------------------------------------------------------------