├── .gitattributes ├── .gitignore ├── README.md ├── __init__.py ├── addon_preferences_ui.py ├── addon_updater.py ├── addon_updater_ops.py ├── asset_parser.py ├── atool.code-workspace ├── bitmap_type_name_conventions.json ├── bl_utils.py ├── data.blend ├── data.py ├── dev_tools.py ├── edit_mode_operator.py ├── image_utils.py ├── node_utils.py ├── pose_mode_operator.py ├── property_panel_operator.py ├── requirements.txt ├── scripts ├── get_polyhaven_dimensions.py ├── initialize_asset.py ├── preview.py ├── render_icon.blend ├── render_icon.py ├── render_partial.py ├── render_worker.py └── unreal_export.py ├── shader_editor_operator.py ├── shader_editor_ui.py ├── ship.py ├── type_definer.py ├── utils.py ├── view_3d_fur_operator.py ├── view_3d_operator.py └── view_3d_ui.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/__init__.py -------------------------------------------------------------------------------- /addon_preferences_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/addon_preferences_ui.py -------------------------------------------------------------------------------- /addon_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/addon_updater.py -------------------------------------------------------------------------------- /addon_updater_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/addon_updater_ops.py -------------------------------------------------------------------------------- /asset_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/asset_parser.py -------------------------------------------------------------------------------- /atool.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/atool.code-workspace -------------------------------------------------------------------------------- /bitmap_type_name_conventions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/bitmap_type_name_conventions.json -------------------------------------------------------------------------------- /bl_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/bl_utils.py -------------------------------------------------------------------------------- /data.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/data.blend -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/data.py -------------------------------------------------------------------------------- /dev_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/dev_tools.py -------------------------------------------------------------------------------- /edit_mode_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/edit_mode_operator.py -------------------------------------------------------------------------------- /image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/image_utils.py -------------------------------------------------------------------------------- /node_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/node_utils.py -------------------------------------------------------------------------------- /pose_mode_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/pose_mode_operator.py -------------------------------------------------------------------------------- /property_panel_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/property_panel_operator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/get_polyhaven_dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/scripts/get_polyhaven_dimensions.py -------------------------------------------------------------------------------- /scripts/initialize_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/scripts/initialize_asset.py -------------------------------------------------------------------------------- /scripts/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/scripts/preview.py -------------------------------------------------------------------------------- /scripts/render_icon.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/scripts/render_icon.blend -------------------------------------------------------------------------------- /scripts/render_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/scripts/render_icon.py -------------------------------------------------------------------------------- /scripts/render_partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/scripts/render_partial.py -------------------------------------------------------------------------------- /scripts/render_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/scripts/render_worker.py -------------------------------------------------------------------------------- /scripts/unreal_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/scripts/unreal_export.py -------------------------------------------------------------------------------- /shader_editor_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/shader_editor_operator.py -------------------------------------------------------------------------------- /shader_editor_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/shader_editor_ui.py -------------------------------------------------------------------------------- /ship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/ship.py -------------------------------------------------------------------------------- /type_definer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/type_definer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/utils.py -------------------------------------------------------------------------------- /view_3d_fur_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/view_3d_fur_operator.py -------------------------------------------------------------------------------- /view_3d_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/view_3d_operator.py -------------------------------------------------------------------------------- /view_3d_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unwave/atool/HEAD/view_3d_ui.py --------------------------------------------------------------------------------