├── .DS_Store ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md └── workflows │ ├── release_on_tag.yml │ └── release_pr_content.yml ├── .gitignore ├── .idea ├── .gitignore ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── markdown-doclet.xml ├── misc.xml └── vcs.xml ├── .readthedocs.yaml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE.rst ├── README.rst ├── docs ├── Makefile ├── _static │ ├── .gitignore │ ├── favicon.ico │ ├── images │ │ └── NifTools_Install.gif │ └── logo.png ├── _templates │ └── .gitignore ├── additional │ ├── authors.rst │ ├── changes.rst │ ├── contributing.rst │ ├── index.rst │ └── license.rst ├── conf.py ├── development │ ├── api │ │ ├── .gitignore │ │ └── index.rst │ ├── design │ │ ├── conventions.rst │ │ ├── decisions.rst │ │ ├── index.rst │ │ ├── issues.rst │ │ ├── overview.rst │ │ └── workflow.rst │ ├── docs.rst │ ├── index.rst │ ├── setup │ │ ├── building.rst │ │ ├── environment.rst │ │ ├── ide.rst │ │ ├── index.rst │ │ └── sourcecode.rst │ └── testframework │ │ ├── api │ │ ├── .gitignore │ │ └── index.rst │ │ ├── ci_server.rst │ │ ├── design │ │ ├── index.rst │ │ └── integration.rst │ │ └── index.rst ├── index.rst ├── make.bat ├── requirements.txt └── user │ ├── features │ ├── armature │ │ ├── armature.rst │ │ └── index.rst │ ├── collisions │ │ ├── collision_objects.rst │ │ ├── collision_settings.rst │ │ └── index.rst │ ├── geometry │ │ ├── geometry.rst │ │ └── index.rst │ ├── index.rst │ ├── iosettings │ │ ├── export.rst │ │ ├── import.rst │ │ └── index.rst │ ├── object │ │ └── index.rst │ ├── properties │ │ ├── index.rst │ │ ├── material.rst │ │ ├── niproperty.rst │ │ ├── shader │ │ │ └── index.rst │ │ └── textures │ │ │ ├── index.rst │ │ │ └── texture_maps.rst │ └── scene │ │ └── index.rst │ ├── index.rst │ ├── install.rst │ ├── support.rst │ ├── ui │ └── index.rst │ └── workflow.rst ├── install ├── .DS_Store ├── .gitignore ├── install.bat ├── install.sh ├── makezip.bat ├── makezip.sh ├── unzip.ps1 └── zip.ps1 ├── io_scene_niftools ├── VERSION.txt ├── __init__.py ├── addon_updater.py ├── addon_updater_ops.py ├── egm_import.py ├── file_io │ ├── __init__.py │ ├── egm.py │ └── nif.py ├── kf_export.py ├── kf_import.py ├── modules │ ├── __init__.py │ ├── nif_export │ │ ├── __init__.py │ │ ├── animation │ │ │ ├── __init__.py │ │ │ ├── material.py │ │ │ ├── morph.py │ │ │ ├── object.py │ │ │ ├── shader.py │ │ │ ├── texture.py │ │ │ └── transform.py │ │ ├── armature │ │ │ └── __init__.py │ │ ├── block_registry.py │ │ ├── collision │ │ │ ├── __init__.py │ │ │ ├── bound.py │ │ │ └── havok.py │ │ ├── constraint │ │ │ └── __init__.py │ │ ├── geometry │ │ │ ├── __init__.py │ │ │ ├── mesh │ │ │ │ ├── __init__.py │ │ │ │ └── skin_partition.py │ │ │ └── vertex │ │ │ │ └── __init__.py │ │ ├── object │ │ │ └── __init__.py │ │ ├── property │ │ │ ├── __init__.py │ │ │ ├── material │ │ │ │ └── __init__.py │ │ │ ├── object │ │ │ │ └── __init__.py │ │ │ ├── shader │ │ │ │ └── __init__.py │ │ │ └── texture │ │ │ │ ├── __init__.py │ │ │ │ ├── types │ │ │ │ ├── __init__.py │ │ │ │ ├── bsshadertexture.py │ │ │ │ └── nitextureprop.py │ │ │ │ └── writer.py │ │ ├── scene │ │ │ └── __init__.py │ │ └── types.py │ └── nif_import │ │ ├── __init__.py │ │ ├── animation │ │ ├── __init__.py │ │ ├── material.py │ │ ├── morph.py │ │ ├── object.py │ │ └── transform.py │ │ ├── armature │ │ └── __init__.py │ │ ├── collision │ │ ├── __init__.py │ │ ├── bound.py │ │ └── havok.py │ │ ├── constraint │ │ └── __init__.py │ │ ├── geometry │ │ ├── __init__.py │ │ ├── mesh │ │ │ └── __init__.py │ │ └── vertex │ │ │ ├── __init__.py │ │ │ └── groups.py │ │ ├── object │ │ ├── __init__.py │ │ ├── block_registry.py │ │ └── types.py │ │ ├── property │ │ ├── __init__.py │ │ ├── geometry │ │ │ ├── __init__.py │ │ │ ├── mesh.py │ │ │ └── niproperty.py │ │ ├── material │ │ │ └── __init__.py │ │ ├── nodes_wrapper │ │ │ └── __init__.py │ │ ├── object │ │ │ └── __init__.py │ │ ├── shader │ │ │ ├── __init__.py │ │ │ ├── bsshaderlightingproperty.py │ │ │ └── bsshaderproperty.py │ │ └── texture │ │ │ ├── __init__.py │ │ │ ├── loader.py │ │ │ └── types │ │ │ ├── __init__.py │ │ │ ├── bsshadertexture.py │ │ │ └── nitextureprop.py │ │ └── scene │ │ └── __init__.py ├── nif_common.py ├── nif_export.py ├── nif_import.py ├── operators │ ├── __init__.py │ ├── common_op.py │ ├── egm_import_op.py │ ├── geometry.py │ ├── kf_export_op.py │ ├── kf_import_op.py │ ├── nif_export_op.py │ ├── nif_import_op.py │ └── object.py ├── prefs │ └── __init__.py ├── properties │ ├── __init__.py │ ├── armature.py │ ├── collision.py │ ├── constraint.py │ ├── material.py │ ├── object.py │ ├── scene.py │ └── shader.py ├── ui │ ├── __init__.py │ ├── armature.py │ ├── collision.py │ ├── material.py │ ├── object.py │ ├── operators │ │ ├── __init__.py │ │ ├── nif_export.py │ │ └── nif_import.py │ ├── scene.py │ └── shader.py ├── update.py └── utils │ ├── __init__.py │ ├── consts.py │ ├── debugging.py │ ├── decorators.py │ ├── logging.py │ ├── math.py │ ├── nodes.py │ ├── singleton.py │ └── updater │ └── __init__.py ├── testframework ├── __init__.py ├── blender-nosetests.bat ├── blender-nosetests.py ├── blender-nosetests.sh ├── install_deps.bat ├── install_deps.sh ├── integration │ ├── __init__.py │ ├── gen │ │ ├── autoblend │ │ │ └── .gitignore │ │ ├── data │ │ │ └── property │ │ │ │ └── textures │ │ │ │ ├── bump │ │ │ │ └── bump.dds │ │ │ │ ├── diffuse │ │ │ │ └── diffuse.dds │ │ │ │ ├── glow │ │ │ │ └── glow.dds │ │ │ │ └── normal │ │ │ │ └── normal.dds │ │ └── nif │ │ │ └── .gitignore │ ├── modules │ │ ├── __init__.py │ │ ├── armature │ │ │ ├── __init__.py │ │ │ ├── b_gen_armature.py │ │ │ ├── n_gen_armature.py │ │ │ └── ninode │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_bone.py │ │ │ │ ├── n_gen_bone.py │ │ │ │ └── test_armature.py │ │ ├── collision │ │ │ ├── __init__.py │ │ │ ├── bhkshape │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_collision.py │ │ │ │ ├── bhkboxshape │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── b_gen_bhkboxshape.py │ │ │ │ │ ├── n_gen_bhkboxshape.py │ │ │ │ │ └── test_boxshape.py │ │ │ │ ├── bhkcapsuleshape │ │ │ │ │ └── __init__.py │ │ │ │ ├── bhkconvexpolyshape │ │ │ │ │ └── __init__.py │ │ │ │ ├── bhksphereshape │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── b_gen_bhksphereshape.py │ │ │ │ │ ├── n_gen_bhksphereshape.py │ │ │ │ │ └── test_sphereshape.py │ │ │ │ ├── bhktriangleshape │ │ │ │ │ └── __init__.py │ │ │ │ ├── n_gen_collision.py │ │ │ │ └── test_collision.py │ │ │ └── bounds │ │ │ │ ├── __init__.py │ │ │ │ ├── boundingbox │ │ │ │ └── __init__.py │ │ │ │ ├── bsbound │ │ │ │ └── __init__.py │ │ │ │ ├── n_gen_boundbox.py │ │ │ │ └── test_bounds.py │ │ ├── geometry │ │ │ ├── __init__.py │ │ │ ├── trishape │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_geometry.py │ │ │ │ ├── n_gen_geometry.py │ │ │ │ └── test_trishape.py │ │ │ └── vertex │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_vertex.py │ │ │ │ ├── color │ │ │ │ ├── __init__.py │ │ │ │ ├── n_gen_vertexcolor.py │ │ │ │ └── test_vertexcolor.py │ │ │ │ ├── n_gen_vertex.py │ │ │ │ ├── test_vertex.py │ │ │ │ └── uv │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_uv.py │ │ │ │ ├── n_gen_uv.py │ │ │ │ └── test_uv.py │ │ ├── object │ │ │ ├── __init__.py │ │ │ ├── b_gen_object.py │ │ │ ├── n_gen_object.py │ │ │ └── test_object.py │ │ ├── property │ │ │ ├── __init__.py │ │ │ ├── alpha │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_alpha.py │ │ │ │ ├── n_gen_alpha.py │ │ │ │ └── test_alpha.py │ │ │ ├── material │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_material.py │ │ │ │ ├── n_gen_material.py │ │ │ │ ├── test_emissive.py │ │ │ │ ├── test_gloss.py │ │ │ │ └── test_material.py │ │ │ ├── specular │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_specular.py │ │ │ │ ├── n_gen_specular.py │ │ │ │ └── test_specular.py │ │ │ ├── stencil │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_stencil.py │ │ │ │ ├── n_gen_stencil.py │ │ │ │ └── test_stencil.py │ │ │ ├── texture │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_texture.py │ │ │ │ ├── bump │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── b_gen_bumpmap.py │ │ │ │ │ ├── n_gen_bumpmap.py │ │ │ │ │ └── test_bump.py │ │ │ │ ├── diffuse │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── b_gen_diffusemap.py │ │ │ │ │ ├── n_gen_diffusemap.py │ │ │ │ │ └── test_diffuse.py │ │ │ │ ├── gloss │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── b_gen_glossmap.py │ │ │ │ │ ├── n_gen_glossmap.py │ │ │ │ │ └── test_gloss.py │ │ │ │ ├── glow │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── b_gen_glowmap.py │ │ │ │ │ ├── n_gen_glowmap.py │ │ │ │ │ └── test_glow.py │ │ │ │ ├── n_gen_texture.py │ │ │ │ └── normal │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── b_gen_normalmap.py │ │ │ │ │ ├── n_gen_normalmap.py │ │ │ │ │ └── test_normal.py │ │ │ └── wireframe │ │ │ │ ├── __init__.py │ │ │ │ ├── b_gen_wire.py │ │ │ │ ├── n_gen_wire.py │ │ │ │ └── test_wireframe.py │ │ └── scene │ │ │ ├── __init__.py │ │ │ ├── b_gen_header.py │ │ │ └── n_gen_header.py │ └── template.py ├── reports │ └── .gitignore ├── smoke │ └── __init__.py ├── unit │ ├── __init__.py │ ├── io │ │ ├── __init__.py │ │ ├── egm │ │ │ ├── __init__.py │ │ │ ├── notegm.txt │ │ │ ├── readable.egm │ │ │ ├── test_egm.py │ │ │ └── unreadable.egm │ │ ├── kf │ │ │ ├── __init__.py │ │ │ ├── notkf.txt │ │ │ ├── readable.kf │ │ │ ├── test_kf.py │ │ │ └── unreadable.nif │ │ └── nif │ │ │ ├── __init__.py │ │ │ ├── notnif.txt │ │ │ ├── readable.nif │ │ │ ├── test_nif.py │ │ │ └── unreadable.nif │ ├── modules │ │ ├── __init__.py │ │ ├── armature │ │ │ ├── __init__.py │ │ │ └── test_name.py │ │ ├── collisions │ │ │ └── __init__.py │ │ ├── geometry │ │ │ └── __init__.py │ │ └── property │ │ │ ├── __init__.py │ │ │ ├── alpha │ │ │ └── __init__.py │ │ │ ├── material │ │ │ └── __init__.py │ │ │ ├── specular │ │ │ └── __init__.py │ │ │ ├── stencil │ │ │ └── __init__.py │ │ │ ├── textures │ │ │ ├── __init__.py │ │ │ ├── bump │ │ │ │ └── __init__.py │ │ │ ├── diffuse │ │ │ │ └── __init__.py │ │ │ ├── glow │ │ │ │ └── __init__.py │ │ │ └── normal │ │ │ │ └── __init__.py │ │ │ └── wireframe │ │ │ └── __init__.py │ └── utility │ │ ├── __init__.py │ │ ├── test.kf │ │ ├── test_decorator.py │ │ └── test_utility.py └── utils │ ├── __init__.py │ └── nif_inspector │ ├── __init__.py │ ├── input │ └── .gitignore │ └── nif_inspector.py └── todo ├── blend ├── reflectionmap.blend ├── suzanne_box.blend ├── suzanne_capsule.blend ├── suzanne_convex.blend ├── suzanne_listshape.blend └── suzanne_sphere.blend ├── depreciated_code.py ├── old_nifs ├── README.txt ├── alphatest.nif ├── bb_skinf_br.nif ├── ee2 │ ├── lodtest-skinned.nif │ └── lodtest.nif ├── fo3 │ ├── test_emit.nif │ └── test_emit2.nif ├── fo3_textureslots.nif ├── mw │ ├── alphactrl.nif │ ├── dance.nif │ ├── matcolorctrl.nif │ ├── test_uvcontroller.nif │ └── visctrl.nif ├── name_ends_with_null.nif ├── ob │ └── .gitignore ├── smrailroads1.nif ├── stenciltest.nif ├── stub.tga ├── stub_g.tga ├── stub_n.tga ├── test.ini.example └── unsupported_root.nif ├── old_tests ├── runtest.bat ├── runtest.sh ├── runtest_armature.py ├── runtest_ee2_lodnode.py ├── runtest_fo3_animation.py ├── runtest_fo3_bodypart.py ├── runtest_fo3_egm.py ├── runtest_fo3_fullbody.py ├── runtest_fo3_skeleton.py ├── runtest_fo3_skinning.py ├── runtest_mw_controller.py ├── runtest_nonaccum.py ├── runtest_ob_animation.py ├── runtest_ob_egm.py ├── runtest_ob_havok.py ├── runtest_ob_skinning.py ├── runtest_skinning.py ├── runtest_smrailroads.py ├── runtest_textkeys.py └── runtest_varia.py └── utilities ├── mesh_niftools_hull.py ├── mesh_niftools_morphcopy.py ├── mesh_niftools_weightsquash.py ├── nif_test.py ├── object_niftools_load_bone_pose.py ├── object_niftools_save_bone_pose.py └── object_niftools_set_bone_priority.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/release_on_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.github/workflows/release_on_tag.yml -------------------------------------------------------------------------------- /.github/workflows/release_pr_content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.github/workflows/release_pr_content.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/markdown-doclet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.idea/markdown-doclet.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/images/NifTools_Install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/_static/images/NifTools_Install.gif -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/additional/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/additional/authors.rst -------------------------------------------------------------------------------- /docs/additional/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/additional/changes.rst -------------------------------------------------------------------------------- /docs/additional/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/additional/contributing.rst -------------------------------------------------------------------------------- /docs/additional/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/additional/index.rst -------------------------------------------------------------------------------- /docs/additional/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/additional/license.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development/api/.gitignore: -------------------------------------------------------------------------------- 1 | /submodules/ 2 | -------------------------------------------------------------------------------- /docs/development/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/api/index.rst -------------------------------------------------------------------------------- /docs/development/design/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/design/conventions.rst -------------------------------------------------------------------------------- /docs/development/design/decisions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/design/decisions.rst -------------------------------------------------------------------------------- /docs/development/design/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/design/index.rst -------------------------------------------------------------------------------- /docs/development/design/issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/design/issues.rst -------------------------------------------------------------------------------- /docs/development/design/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/design/overview.rst -------------------------------------------------------------------------------- /docs/development/design/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/design/workflow.rst -------------------------------------------------------------------------------- /docs/development/docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/docs.rst -------------------------------------------------------------------------------- /docs/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/index.rst -------------------------------------------------------------------------------- /docs/development/setup/building.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/setup/building.rst -------------------------------------------------------------------------------- /docs/development/setup/environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/setup/environment.rst -------------------------------------------------------------------------------- /docs/development/setup/ide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/setup/ide.rst -------------------------------------------------------------------------------- /docs/development/setup/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/setup/index.rst -------------------------------------------------------------------------------- /docs/development/setup/sourcecode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/setup/sourcecode.rst -------------------------------------------------------------------------------- /docs/development/testframework/api/.gitignore: -------------------------------------------------------------------------------- 1 | /submodules/ 2 | -------------------------------------------------------------------------------- /docs/development/testframework/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/testframework/api/index.rst -------------------------------------------------------------------------------- /docs/development/testframework/ci_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/testframework/ci_server.rst -------------------------------------------------------------------------------- /docs/development/testframework/design/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/testframework/design/index.rst -------------------------------------------------------------------------------- /docs/development/testframework/design/integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/testframework/design/integration.rst -------------------------------------------------------------------------------- /docs/development/testframework/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/development/testframework/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/user/features/armature/armature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/armature/armature.rst -------------------------------------------------------------------------------- /docs/user/features/armature/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/armature/index.rst -------------------------------------------------------------------------------- /docs/user/features/collisions/collision_objects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/collisions/collision_objects.rst -------------------------------------------------------------------------------- /docs/user/features/collisions/collision_settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/collisions/collision_settings.rst -------------------------------------------------------------------------------- /docs/user/features/collisions/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/collisions/index.rst -------------------------------------------------------------------------------- /docs/user/features/geometry/geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/geometry/geometry.rst -------------------------------------------------------------------------------- /docs/user/features/geometry/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/geometry/index.rst -------------------------------------------------------------------------------- /docs/user/features/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/index.rst -------------------------------------------------------------------------------- /docs/user/features/iosettings/export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/iosettings/export.rst -------------------------------------------------------------------------------- /docs/user/features/iosettings/import.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/iosettings/import.rst -------------------------------------------------------------------------------- /docs/user/features/iosettings/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/iosettings/index.rst -------------------------------------------------------------------------------- /docs/user/features/object/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/object/index.rst -------------------------------------------------------------------------------- /docs/user/features/properties/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/properties/index.rst -------------------------------------------------------------------------------- /docs/user/features/properties/material.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/properties/material.rst -------------------------------------------------------------------------------- /docs/user/features/properties/niproperty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/properties/niproperty.rst -------------------------------------------------------------------------------- /docs/user/features/properties/shader/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/properties/shader/index.rst -------------------------------------------------------------------------------- /docs/user/features/properties/textures/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/properties/textures/index.rst -------------------------------------------------------------------------------- /docs/user/features/properties/textures/texture_maps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/properties/textures/texture_maps.rst -------------------------------------------------------------------------------- /docs/user/features/scene/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/features/scene/index.rst -------------------------------------------------------------------------------- /docs/user/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/index.rst -------------------------------------------------------------------------------- /docs/user/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/install.rst -------------------------------------------------------------------------------- /docs/user/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/support.rst -------------------------------------------------------------------------------- /docs/user/ui/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/ui/index.rst -------------------------------------------------------------------------------- /docs/user/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/docs/user/workflow.rst -------------------------------------------------------------------------------- /install/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/install/.DS_Store -------------------------------------------------------------------------------- /install/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore any generated files 2 | temp/ -------------------------------------------------------------------------------- /install/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/install/install.bat -------------------------------------------------------------------------------- /install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/install/install.sh -------------------------------------------------------------------------------- /install/makezip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/install/makezip.bat -------------------------------------------------------------------------------- /install/makezip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/install/makezip.sh -------------------------------------------------------------------------------- /install/unzip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/install/unzip.ps1 -------------------------------------------------------------------------------- /install/zip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/install/zip.ps1 -------------------------------------------------------------------------------- /io_scene_niftools/VERSION.txt: -------------------------------------------------------------------------------- 1 | v0.1.1 2 | -------------------------------------------------------------------------------- /io_scene_niftools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/addon_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/addon_updater.py -------------------------------------------------------------------------------- /io_scene_niftools/addon_updater_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/addon_updater_ops.py -------------------------------------------------------------------------------- /io_scene_niftools/egm_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/egm_import.py -------------------------------------------------------------------------------- /io_scene_niftools/file_io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/file_io/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/file_io/egm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/file_io/egm.py -------------------------------------------------------------------------------- /io_scene_niftools/file_io/nif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/file_io/nif.py -------------------------------------------------------------------------------- /io_scene_niftools/kf_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/kf_export.py -------------------------------------------------------------------------------- /io_scene_niftools/kf_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/kf_import.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/animation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/animation/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/animation/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/animation/material.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/animation/morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/animation/morph.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/animation/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/animation/object.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/animation/shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/animation/shader.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/animation/texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/animation/texture.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/animation/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/animation/transform.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/armature/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/armature/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/block_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/block_registry.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/collision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/collision/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/collision/bound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/collision/bound.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/collision/havok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/collision/havok.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/constraint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/constraint/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/geometry/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/geometry/mesh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/geometry/mesh/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/geometry/mesh/skin_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/geometry/mesh/skin_partition.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/geometry/vertex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/geometry/vertex/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/object/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/object/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/property/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/property/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/property/material/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/property/material/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/property/object/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/property/object/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/property/shader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/property/shader/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/property/texture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/property/texture/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/property/texture/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/property/texture/types/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/property/texture/types/bsshadertexture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/property/texture/types/bsshadertexture.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/property/texture/types/nitextureprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/property/texture/types/nitextureprop.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/property/texture/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/property/texture/writer.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/scene/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_export/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_export/types.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/animation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/animation/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/animation/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/animation/material.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/animation/morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/animation/morph.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/animation/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/animation/object.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/animation/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/animation/transform.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/armature/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/armature/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/collision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/collision/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/collision/bound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/collision/bound.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/collision/havok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/collision/havok.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/constraint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/constraint/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/geometry/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/geometry/mesh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/geometry/mesh/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/geometry/vertex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/geometry/vertex/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/geometry/vertex/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/geometry/vertex/groups.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/object/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/object/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/object/block_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/object/block_registry.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/object/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/object/types.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/geometry/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/geometry/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/geometry/mesh.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/geometry/niproperty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/geometry/niproperty.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/material/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/material/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/nodes_wrapper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/nodes_wrapper/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/object/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/object/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/shader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/shader/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/shader/bsshaderlightingproperty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/shader/bsshaderlightingproperty.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/shader/bsshaderproperty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/shader/bsshaderproperty.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/texture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/texture/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/texture/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/texture/loader.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/texture/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/texture/types/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/texture/types/bsshadertexture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/texture/types/bsshadertexture.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/property/texture/types/nitextureprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/property/texture/types/nitextureprop.py -------------------------------------------------------------------------------- /io_scene_niftools/modules/nif_import/scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/modules/nif_import/scene/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/nif_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/nif_common.py -------------------------------------------------------------------------------- /io_scene_niftools/nif_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/nif_export.py -------------------------------------------------------------------------------- /io_scene_niftools/nif_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/nif_import.py -------------------------------------------------------------------------------- /io_scene_niftools/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/operators/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/operators/common_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/operators/common_op.py -------------------------------------------------------------------------------- /io_scene_niftools/operators/egm_import_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/operators/egm_import_op.py -------------------------------------------------------------------------------- /io_scene_niftools/operators/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/operators/geometry.py -------------------------------------------------------------------------------- /io_scene_niftools/operators/kf_export_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/operators/kf_export_op.py -------------------------------------------------------------------------------- /io_scene_niftools/operators/kf_import_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/operators/kf_import_op.py -------------------------------------------------------------------------------- /io_scene_niftools/operators/nif_export_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/operators/nif_export_op.py -------------------------------------------------------------------------------- /io_scene_niftools/operators/nif_import_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/operators/nif_import_op.py -------------------------------------------------------------------------------- /io_scene_niftools/operators/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/operators/object.py -------------------------------------------------------------------------------- /io_scene_niftools/prefs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /io_scene_niftools/properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/properties/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/properties/armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/properties/armature.py -------------------------------------------------------------------------------- /io_scene_niftools/properties/collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/properties/collision.py -------------------------------------------------------------------------------- /io_scene_niftools/properties/constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/properties/constraint.py -------------------------------------------------------------------------------- /io_scene_niftools/properties/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/properties/material.py -------------------------------------------------------------------------------- /io_scene_niftools/properties/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/properties/object.py -------------------------------------------------------------------------------- /io_scene_niftools/properties/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/properties/scene.py -------------------------------------------------------------------------------- /io_scene_niftools/properties/shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/properties/shader.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/armature.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/collision.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/material.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/object.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/operators/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/operators/nif_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/operators/nif_export.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/operators/nif_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/operators/nif_import.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/scene.py -------------------------------------------------------------------------------- /io_scene_niftools/ui/shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/ui/shader.py -------------------------------------------------------------------------------- /io_scene_niftools/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/update.py -------------------------------------------------------------------------------- /io_scene_niftools/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/utils/__init__.py -------------------------------------------------------------------------------- /io_scene_niftools/utils/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/utils/consts.py -------------------------------------------------------------------------------- /io_scene_niftools/utils/debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/utils/debugging.py -------------------------------------------------------------------------------- /io_scene_niftools/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/utils/decorators.py -------------------------------------------------------------------------------- /io_scene_niftools/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/utils/logging.py -------------------------------------------------------------------------------- /io_scene_niftools/utils/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/utils/math.py -------------------------------------------------------------------------------- /io_scene_niftools/utils/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/utils/nodes.py -------------------------------------------------------------------------------- /io_scene_niftools/utils/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/io_scene_niftools/utils/singleton.py -------------------------------------------------------------------------------- /io_scene_niftools/utils/updater/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/__init__.py -------------------------------------------------------------------------------- /testframework/blender-nosetests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/blender-nosetests.bat -------------------------------------------------------------------------------- /testframework/blender-nosetests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/blender-nosetests.py -------------------------------------------------------------------------------- /testframework/blender-nosetests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/blender-nosetests.sh -------------------------------------------------------------------------------- /testframework/install_deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/install_deps.bat -------------------------------------------------------------------------------- /testframework/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/install_deps.sh -------------------------------------------------------------------------------- /testframework/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/__init__.py -------------------------------------------------------------------------------- /testframework/integration/gen/autoblend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/gen/autoblend/.gitignore -------------------------------------------------------------------------------- /testframework/integration/gen/data/property/textures/bump/bump.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/gen/data/property/textures/bump/bump.dds -------------------------------------------------------------------------------- /testframework/integration/gen/data/property/textures/diffuse/diffuse.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/gen/data/property/textures/diffuse/diffuse.dds -------------------------------------------------------------------------------- /testframework/integration/gen/data/property/textures/glow/glow.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/gen/data/property/textures/glow/glow.dds -------------------------------------------------------------------------------- /testframework/integration/gen/data/property/textures/normal/normal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/gen/data/property/textures/normal/normal.dds -------------------------------------------------------------------------------- /testframework/integration/gen/nif/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/gen/nif/.gitignore -------------------------------------------------------------------------------- /testframework/integration/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/armature/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/armature/b_gen_armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/armature/b_gen_armature.py -------------------------------------------------------------------------------- /testframework/integration/modules/armature/n_gen_armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/armature/n_gen_armature.py -------------------------------------------------------------------------------- /testframework/integration/modules/armature/ninode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/armature/ninode/b_gen_bone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/armature/ninode/b_gen_bone.py -------------------------------------------------------------------------------- /testframework/integration/modules/armature/ninode/n_gen_bone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/armature/ninode/n_gen_bone.py -------------------------------------------------------------------------------- /testframework/integration/modules/armature/ninode/test_armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/armature/ninode/test_armature.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/__init__.py: -------------------------------------------------------------------------------- 1 | G_PATH = "collision/bhk" 2 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/b_gen_collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bhkshape/b_gen_collision.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhkboxshape/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhkboxshape/b_gen_bhkboxshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bhkshape/bhkboxshape/b_gen_bhkboxshape.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhkboxshape/n_gen_bhkboxshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bhkshape/bhkboxshape/n_gen_bhkboxshape.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhkboxshape/test_boxshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bhkshape/bhkboxshape/test_boxshape.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhkcapsuleshape/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhkconvexpolyshape/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhksphereshape/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhksphereshape/b_gen_bhksphereshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bhkshape/bhksphereshape/b_gen_bhksphereshape.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhksphereshape/n_gen_bhksphereshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bhkshape/bhksphereshape/n_gen_bhksphereshape.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhksphereshape/test_sphereshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bhkshape/bhksphereshape/test_sphereshape.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/bhktriangleshape/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/n_gen_collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bhkshape/n_gen_collision.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bhkshape/test_collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bhkshape/test_collision.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bounds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bounds/boundingbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bounds/bsbound/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bounds/n_gen_boundbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bounds/n_gen_boundbox.py -------------------------------------------------------------------------------- /testframework/integration/modules/collision/bounds/test_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/collision/bounds/test_bounds.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/trishape/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/trishape/b_gen_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/trishape/b_gen_geometry.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/trishape/n_gen_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/trishape/n_gen_geometry.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/trishape/test_trishape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/trishape/test_trishape.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/b_gen_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/vertex/b_gen_vertex.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/color/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/color/n_gen_vertexcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/vertex/color/n_gen_vertexcolor.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/color/test_vertexcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/vertex/color/test_vertexcolor.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/n_gen_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/vertex/n_gen_vertex.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/test_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/vertex/test_vertex.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/uv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/uv/b_gen_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/vertex/uv/b_gen_uv.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/uv/n_gen_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/vertex/uv/n_gen_uv.py -------------------------------------------------------------------------------- /testframework/integration/modules/geometry/vertex/uv/test_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/geometry/vertex/uv/test_uv.py -------------------------------------------------------------------------------- /testframework/integration/modules/object/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testframework/integration/modules/object/b_gen_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/object/b_gen_object.py -------------------------------------------------------------------------------- /testframework/integration/modules/object/n_gen_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/object/n_gen_object.py -------------------------------------------------------------------------------- /testframework/integration/modules/object/test_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/object/test_object.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/alpha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/alpha/b_gen_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/alpha/b_gen_alpha.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/alpha/n_gen_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/alpha/n_gen_alpha.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/alpha/test_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/alpha/test_alpha.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/material/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/material/b_gen_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/material/b_gen_material.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/material/n_gen_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/material/n_gen_material.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/material/test_emissive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/material/test_emissive.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/material/test_gloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/material/test_gloss.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/material/test_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/material/test_material.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/specular/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/specular/b_gen_specular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/specular/b_gen_specular.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/specular/n_gen_specular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/specular/n_gen_specular.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/specular/test_specular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/specular/test_specular.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/stencil/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/stencil/b_gen_stencil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/stencil/b_gen_stencil.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/stencil/n_gen_stencil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/stencil/n_gen_stencil.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/stencil/test_stencil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/stencil/test_stencil.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/__init__.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/b_gen_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/b_gen_texture.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/bump/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/bump/b_gen_bumpmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/bump/b_gen_bumpmap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/bump/n_gen_bumpmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/bump/n_gen_bumpmap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/bump/test_bump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/bump/test_bump.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/diffuse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/diffuse/b_gen_diffusemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/diffuse/b_gen_diffusemap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/diffuse/n_gen_diffusemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/diffuse/n_gen_diffusemap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/diffuse/test_diffuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/diffuse/test_diffuse.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/gloss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/gloss/b_gen_glossmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/gloss/b_gen_glossmap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/gloss/n_gen_glossmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/gloss/n_gen_glossmap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/gloss/test_gloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/gloss/test_gloss.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/glow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/glow/b_gen_glowmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/glow/b_gen_glowmap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/glow/n_gen_glowmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/glow/n_gen_glowmap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/glow/test_glow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/glow/test_glow.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/n_gen_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/n_gen_texture.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/normal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/normal/b_gen_normalmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/normal/b_gen_normalmap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/normal/n_gen_normalmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/normal/n_gen_normalmap.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/texture/normal/test_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/texture/normal/test_normal.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/wireframe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/property/wireframe/b_gen_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/wireframe/b_gen_wire.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/wireframe/n_gen_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/wireframe/n_gen_wire.py -------------------------------------------------------------------------------- /testframework/integration/modules/property/wireframe/test_wireframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/property/wireframe/test_wireframe.py -------------------------------------------------------------------------------- /testframework/integration/modules/scene/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/integration/modules/scene/b_gen_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/scene/b_gen_header.py -------------------------------------------------------------------------------- /testframework/integration/modules/scene/n_gen_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/modules/scene/n_gen_header.py -------------------------------------------------------------------------------- /testframework/integration/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/integration/template.py -------------------------------------------------------------------------------- /testframework/reports/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/reports/.gitignore -------------------------------------------------------------------------------- /testframework/smoke/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/smoke/__init__.py -------------------------------------------------------------------------------- /testframework/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/__init__.py -------------------------------------------------------------------------------- /testframework/unit/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/__init__.py -------------------------------------------------------------------------------- /testframework/unit/io/egm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/egm/__init__.py -------------------------------------------------------------------------------- /testframework/unit/io/egm/notegm.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/unit/io/egm/readable.egm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/egm/readable.egm -------------------------------------------------------------------------------- /testframework/unit/io/egm/test_egm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/egm/test_egm.py -------------------------------------------------------------------------------- /testframework/unit/io/egm/unreadable.egm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/egm/unreadable.egm -------------------------------------------------------------------------------- /testframework/unit/io/kf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/kf/__init__.py -------------------------------------------------------------------------------- /testframework/unit/io/kf/notkf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/unit/io/kf/readable.kf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/kf/readable.kf -------------------------------------------------------------------------------- /testframework/unit/io/kf/test_kf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/kf/test_kf.py -------------------------------------------------------------------------------- /testframework/unit/io/kf/unreadable.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/kf/unreadable.nif -------------------------------------------------------------------------------- /testframework/unit/io/nif/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/nif/__init__.py -------------------------------------------------------------------------------- /testframework/unit/io/nif/notnif.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/unit/io/nif/readable.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/nif/readable.nif -------------------------------------------------------------------------------- /testframework/unit/io/nif/test_nif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/nif/test_nif.py -------------------------------------------------------------------------------- /testframework/unit/io/nif/unreadable.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/io/nif/unreadable.nif -------------------------------------------------------------------------------- /testframework/unit/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/armature/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/armature/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/armature/test_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/armature/test_name.py -------------------------------------------------------------------------------- /testframework/unit/modules/collisions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/collisions/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/geometry/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/property/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/property/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/property/alpha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/property/alpha/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/property/material/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/property/material/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/property/specular/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/property/specular/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/property/stencil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/property/stencil/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/property/textures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/property/textures/__init__.py -------------------------------------------------------------------------------- /testframework/unit/modules/property/textures/bump/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/unit/modules/property/textures/diffuse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/unit/modules/property/textures/glow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/unit/modules/property/textures/normal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/unit/modules/property/wireframe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/modules/property/wireframe/__init__.py -------------------------------------------------------------------------------- /testframework/unit/utility/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/utility/__init__.py -------------------------------------------------------------------------------- /testframework/unit/utility/test.kf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/utility/test.kf -------------------------------------------------------------------------------- /testframework/unit/utility/test_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/utility/test_decorator.py -------------------------------------------------------------------------------- /testframework/unit/utility/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/unit/utility/test_utility.py -------------------------------------------------------------------------------- /testframework/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/utils/nif_inspector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testframework/utils/nif_inspector/input/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /testframework/utils/nif_inspector/nif_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/testframework/utils/nif_inspector/nif_inspector.py -------------------------------------------------------------------------------- /todo/blend/reflectionmap.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/blend/reflectionmap.blend -------------------------------------------------------------------------------- /todo/blend/suzanne_box.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/blend/suzanne_box.blend -------------------------------------------------------------------------------- /todo/blend/suzanne_capsule.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/blend/suzanne_capsule.blend -------------------------------------------------------------------------------- /todo/blend/suzanne_convex.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/blend/suzanne_convex.blend -------------------------------------------------------------------------------- /todo/blend/suzanne_listshape.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/blend/suzanne_listshape.blend -------------------------------------------------------------------------------- /todo/blend/suzanne_sphere.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/blend/suzanne_sphere.blend -------------------------------------------------------------------------------- /todo/depreciated_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/depreciated_code.py -------------------------------------------------------------------------------- /todo/old_nifs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/README.txt -------------------------------------------------------------------------------- /todo/old_nifs/alphatest.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/alphatest.nif -------------------------------------------------------------------------------- /todo/old_nifs/bb_skinf_br.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/bb_skinf_br.nif -------------------------------------------------------------------------------- /todo/old_nifs/ee2/lodtest-skinned.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/ee2/lodtest-skinned.nif -------------------------------------------------------------------------------- /todo/old_nifs/ee2/lodtest.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/ee2/lodtest.nif -------------------------------------------------------------------------------- /todo/old_nifs/fo3/test_emit.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/fo3/test_emit.nif -------------------------------------------------------------------------------- /todo/old_nifs/fo3/test_emit2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/fo3/test_emit2.nif -------------------------------------------------------------------------------- /todo/old_nifs/fo3_textureslots.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/fo3_textureslots.nif -------------------------------------------------------------------------------- /todo/old_nifs/mw/alphactrl.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/mw/alphactrl.nif -------------------------------------------------------------------------------- /todo/old_nifs/mw/dance.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/mw/dance.nif -------------------------------------------------------------------------------- /todo/old_nifs/mw/matcolorctrl.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/mw/matcolorctrl.nif -------------------------------------------------------------------------------- /todo/old_nifs/mw/test_uvcontroller.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/mw/test_uvcontroller.nif -------------------------------------------------------------------------------- /todo/old_nifs/mw/visctrl.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/mw/visctrl.nif -------------------------------------------------------------------------------- /todo/old_nifs/name_ends_with_null.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/name_ends_with_null.nif -------------------------------------------------------------------------------- /todo/old_nifs/ob/.gitignore: -------------------------------------------------------------------------------- 1 | _test*.nif 2 | -------------------------------------------------------------------------------- /todo/old_nifs/smrailroads1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/smrailroads1.nif -------------------------------------------------------------------------------- /todo/old_nifs/stenciltest.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/stenciltest.nif -------------------------------------------------------------------------------- /todo/old_nifs/stub.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/stub.tga -------------------------------------------------------------------------------- /todo/old_nifs/stub_g.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/stub_g.tga -------------------------------------------------------------------------------- /todo/old_nifs/stub_n.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/stub_n.tga -------------------------------------------------------------------------------- /todo/old_nifs/test.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/test.ini.example -------------------------------------------------------------------------------- /todo/old_nifs/unsupported_root.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_nifs/unsupported_root.nif -------------------------------------------------------------------------------- /todo/old_tests/runtest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest.bat -------------------------------------------------------------------------------- /todo/old_tests/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest.sh -------------------------------------------------------------------------------- /todo/old_tests/runtest_armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_armature.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_ee2_lodnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_ee2_lodnode.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_fo3_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_fo3_animation.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_fo3_bodypart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_fo3_bodypart.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_fo3_egm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_fo3_egm.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_fo3_fullbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_fo3_fullbody.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_fo3_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_fo3_skeleton.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_fo3_skinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_fo3_skinning.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_mw_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_mw_controller.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_nonaccum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_nonaccum.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_ob_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_ob_animation.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_ob_egm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_ob_egm.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_ob_havok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_ob_havok.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_ob_skinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_ob_skinning.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_skinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_skinning.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_smrailroads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_smrailroads.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_textkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_textkeys.py -------------------------------------------------------------------------------- /todo/old_tests/runtest_varia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/old_tests/runtest_varia.py -------------------------------------------------------------------------------- /todo/utilities/mesh_niftools_hull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/utilities/mesh_niftools_hull.py -------------------------------------------------------------------------------- /todo/utilities/mesh_niftools_morphcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/utilities/mesh_niftools_morphcopy.py -------------------------------------------------------------------------------- /todo/utilities/mesh_niftools_weightsquash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/utilities/mesh_niftools_weightsquash.py -------------------------------------------------------------------------------- /todo/utilities/nif_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/utilities/nif_test.py -------------------------------------------------------------------------------- /todo/utilities/object_niftools_load_bone_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/utilities/object_niftools_load_bone_pose.py -------------------------------------------------------------------------------- /todo/utilities/object_niftools_save_bone_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/utilities/object_niftools_save_bone_pose.py -------------------------------------------------------------------------------- /todo/utilities/object_niftools_set_bone_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/blender_niftools_addon/HEAD/todo/utilities/object_niftools_set_bone_priority.py --------------------------------------------------------------------------------