├── .gitignore ├── COPYING ├── README.md ├── TODO ├── __init__.py ├── animprop.py ├── bones.py ├── cfgnode ├── __init__.py ├── cfgnode.py ├── parser.py └── script.py ├── cleanmesh.py ├── collider ├── __init__.py ├── box.py ├── capsule.py ├── collider.py ├── menus.py ├── operators.py ├── panels.py ├── points.py ├── seb.py ├── sphere.py └── wheel.py ├── cvtquickhull.py ├── dump.py ├── export_mu ├── __init__.py ├── animation.py ├── armature.py ├── attachnode.py ├── camera.py ├── cfgfile.py ├── collider.py ├── empty.py ├── export.py ├── export_modules.py ├── export_util.py ├── light.py ├── material.py ├── mesh.py ├── operators.py ├── panels.py └── volume.py ├── extractverts.py ├── fixcentrifuge.py ├── hierarchy.py ├── hull.py ├── import_craft ├── __init__.py ├── gamedata.py ├── import_craft.py └── part.py ├── import_mu ├── __init__.py ├── animation.py ├── armature.py ├── camera.py ├── collider.py ├── exception.py ├── import_modules.py ├── import_mu.py ├── light.py ├── mesh.py ├── operators.py └── textures.py ├── lightfix.py ├── mass-export.py ├── model ├── __init__.py └── model.py ├── module ├── __init__.py ├── module.py ├── operators.py ├── panels.py └── properties.py ├── mu.py ├── mucfg.py ├── preferences ├── __init__.py ├── cfgtemplates │ └── part.cfg.in ├── colorpalettes.py ├── preferences.py ├── shaders │ ├── ksp_alpha_cutoff.py │ ├── ksp_alpha_cutoff_bumped.py │ ├── ksp_alpha_translucent.py │ ├── ksp_alpha_translucent_additive.py │ ├── ksp_alpha_translucent_specular.py │ ├── ksp_alpha_unlit_transparent.py │ ├── ksp_bumped.py │ ├── ksp_bumped_specular.py │ ├── ksp_bumped_specular__mapped_.py │ ├── ksp_diffuse.py │ ├── ksp_emissive_bumped_specular.py │ ├── ksp_emissive_bumped_specular__mapped_.py │ ├── ksp_emissive_diffuse.py │ ├── ksp_emissive_specular.py │ ├── ksp_internalspace.py │ ├── ksp_particles_additive.py │ ├── ksp_particles_alpha_blended.py │ ├── ksp_specular.py │ ├── ksp_specular__transparent_.py │ ├── ksp_unlit.py │ └── ksp_unlitcolor.py └── templates.py ├── prop ├── __init__.py ├── menus.py ├── operators.py ├── panels.py └── prop.py ├── properties ├── __init__.py ├── cameraprops.py ├── lightprops.py └── properties.py ├── quickhull ├── .gitignore ├── __init__.py ├── binary.py ├── connectivity.py ├── convex_hull.py ├── edge.py ├── faceset.py ├── operators.py ├── quickhull.py ├── rawmesh.py ├── testharness.py └── triangle.py ├── shader ├── __init__.py ├── alpha_cutoff.cfg ├── alpha_translucent.cfg ├── alpha_translucent_additive.cfg ├── alpha_translucent_specular.cfg ├── bumped.cfg ├── bumped_specular.cfg ├── bumped_specular_mapped.cfg ├── colorprops.py ├── diffuse.cfg ├── emissive_bumped_specular.cfg ├── emissive_bumped_specular_mapped.cfg ├── emissive_diffuse.cfg ├── emissive_specular.cfg ├── float2props.py ├── float3props.py ├── imageprops.py ├── internal_space.cfg ├── materialprops.py ├── menus.py ├── operators.py ├── panels.py ├── shader.py ├── shader_config.py ├── shader_extract.py ├── specular.cfg ├── specular_transparent.cfg ├── textureprops.py ├── unlit.cfg ├── unlit_color.cfg └── vectorprops.py ├── test-export.py ├── test-import.py ├── tools ├── __init__.py ├── applyscale.py ├── clearinverse.py ├── panels.py └── wingtool.py ├── utils ├── __init__.py ├── collection.py ├── object.py ├── scene.py ├── solver.py ├── transform.py ├── utils.py └── vect.py └── wheel.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/TODO -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/__init__.py -------------------------------------------------------------------------------- /animprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/animprop.py -------------------------------------------------------------------------------- /bones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/bones.py -------------------------------------------------------------------------------- /cfgnode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/cfgnode/__init__.py -------------------------------------------------------------------------------- /cfgnode/cfgnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/cfgnode/cfgnode.py -------------------------------------------------------------------------------- /cfgnode/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/cfgnode/parser.py -------------------------------------------------------------------------------- /cfgnode/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/cfgnode/script.py -------------------------------------------------------------------------------- /cleanmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/cleanmesh.py -------------------------------------------------------------------------------- /collider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/__init__.py -------------------------------------------------------------------------------- /collider/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/box.py -------------------------------------------------------------------------------- /collider/capsule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/capsule.py -------------------------------------------------------------------------------- /collider/collider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/collider.py -------------------------------------------------------------------------------- /collider/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/menus.py -------------------------------------------------------------------------------- /collider/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/operators.py -------------------------------------------------------------------------------- /collider/panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/panels.py -------------------------------------------------------------------------------- /collider/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/points.py -------------------------------------------------------------------------------- /collider/seb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/seb.py -------------------------------------------------------------------------------- /collider/sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/sphere.py -------------------------------------------------------------------------------- /collider/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/collider/wheel.py -------------------------------------------------------------------------------- /cvtquickhull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/cvtquickhull.py -------------------------------------------------------------------------------- /dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/dump.py -------------------------------------------------------------------------------- /export_mu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/__init__.py -------------------------------------------------------------------------------- /export_mu/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/animation.py -------------------------------------------------------------------------------- /export_mu/armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/armature.py -------------------------------------------------------------------------------- /export_mu/attachnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/attachnode.py -------------------------------------------------------------------------------- /export_mu/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/camera.py -------------------------------------------------------------------------------- /export_mu/cfgfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/cfgfile.py -------------------------------------------------------------------------------- /export_mu/collider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/collider.py -------------------------------------------------------------------------------- /export_mu/empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/empty.py -------------------------------------------------------------------------------- /export_mu/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/export.py -------------------------------------------------------------------------------- /export_mu/export_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/export_modules.py -------------------------------------------------------------------------------- /export_mu/export_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/export_util.py -------------------------------------------------------------------------------- /export_mu/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/light.py -------------------------------------------------------------------------------- /export_mu/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/material.py -------------------------------------------------------------------------------- /export_mu/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/mesh.py -------------------------------------------------------------------------------- /export_mu/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/operators.py -------------------------------------------------------------------------------- /export_mu/panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/panels.py -------------------------------------------------------------------------------- /export_mu/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/export_mu/volume.py -------------------------------------------------------------------------------- /extractverts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/extractverts.py -------------------------------------------------------------------------------- /fixcentrifuge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/fixcentrifuge.py -------------------------------------------------------------------------------- /hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/hierarchy.py -------------------------------------------------------------------------------- /hull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/hull.py -------------------------------------------------------------------------------- /import_craft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_craft/__init__.py -------------------------------------------------------------------------------- /import_craft/gamedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_craft/gamedata.py -------------------------------------------------------------------------------- /import_craft/import_craft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_craft/import_craft.py -------------------------------------------------------------------------------- /import_craft/part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_craft/part.py -------------------------------------------------------------------------------- /import_mu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/__init__.py -------------------------------------------------------------------------------- /import_mu/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/animation.py -------------------------------------------------------------------------------- /import_mu/armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/armature.py -------------------------------------------------------------------------------- /import_mu/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/camera.py -------------------------------------------------------------------------------- /import_mu/collider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/collider.py -------------------------------------------------------------------------------- /import_mu/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/exception.py -------------------------------------------------------------------------------- /import_mu/import_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/import_modules.py -------------------------------------------------------------------------------- /import_mu/import_mu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/import_mu.py -------------------------------------------------------------------------------- /import_mu/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/light.py -------------------------------------------------------------------------------- /import_mu/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/mesh.py -------------------------------------------------------------------------------- /import_mu/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/operators.py -------------------------------------------------------------------------------- /import_mu/textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/import_mu/textures.py -------------------------------------------------------------------------------- /lightfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/lightfix.py -------------------------------------------------------------------------------- /mass-export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/mass-export.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/model/model.py -------------------------------------------------------------------------------- /module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/module/__init__.py -------------------------------------------------------------------------------- /module/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/module/module.py -------------------------------------------------------------------------------- /module/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/module/operators.py -------------------------------------------------------------------------------- /module/panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/module/panels.py -------------------------------------------------------------------------------- /module/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/module/properties.py -------------------------------------------------------------------------------- /mu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/mu.py -------------------------------------------------------------------------------- /mucfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/mucfg.py -------------------------------------------------------------------------------- /preferences/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/__init__.py -------------------------------------------------------------------------------- /preferences/cfgtemplates/part.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/cfgtemplates/part.cfg.in -------------------------------------------------------------------------------- /preferences/colorpalettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/colorpalettes.py -------------------------------------------------------------------------------- /preferences/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/preferences.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_alpha_cutoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_alpha_cutoff.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_alpha_cutoff_bumped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_alpha_cutoff_bumped.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_alpha_translucent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_alpha_translucent.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_alpha_translucent_additive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_alpha_translucent_additive.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_alpha_translucent_specular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_alpha_translucent_specular.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_alpha_unlit_transparent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_alpha_unlit_transparent.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_bumped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_bumped.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_bumped_specular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_bumped_specular.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_bumped_specular__mapped_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_bumped_specular__mapped_.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_diffuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_diffuse.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_emissive_bumped_specular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_emissive_bumped_specular.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_emissive_bumped_specular__mapped_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_emissive_bumped_specular__mapped_.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_emissive_diffuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_emissive_diffuse.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_emissive_specular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_emissive_specular.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_internalspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_internalspace.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_particles_additive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_particles_additive.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_particles_alpha_blended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_particles_alpha_blended.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_specular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_specular.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_specular__transparent_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_specular__transparent_.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_unlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_unlit.py -------------------------------------------------------------------------------- /preferences/shaders/ksp_unlitcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/shaders/ksp_unlitcolor.py -------------------------------------------------------------------------------- /preferences/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/preferences/templates.py -------------------------------------------------------------------------------- /prop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/prop/__init__.py -------------------------------------------------------------------------------- /prop/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/prop/menus.py -------------------------------------------------------------------------------- /prop/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/prop/operators.py -------------------------------------------------------------------------------- /prop/panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/prop/panels.py -------------------------------------------------------------------------------- /prop/prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/prop/prop.py -------------------------------------------------------------------------------- /properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/properties/__init__.py -------------------------------------------------------------------------------- /properties/cameraprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/properties/cameraprops.py -------------------------------------------------------------------------------- /properties/lightprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/properties/lightprops.py -------------------------------------------------------------------------------- /properties/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/properties/properties.py -------------------------------------------------------------------------------- /quickhull/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.gz 3 | -------------------------------------------------------------------------------- /quickhull/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/__init__.py -------------------------------------------------------------------------------- /quickhull/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/binary.py -------------------------------------------------------------------------------- /quickhull/connectivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/connectivity.py -------------------------------------------------------------------------------- /quickhull/convex_hull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/convex_hull.py -------------------------------------------------------------------------------- /quickhull/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/edge.py -------------------------------------------------------------------------------- /quickhull/faceset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/faceset.py -------------------------------------------------------------------------------- /quickhull/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/operators.py -------------------------------------------------------------------------------- /quickhull/quickhull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/quickhull.py -------------------------------------------------------------------------------- /quickhull/rawmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/rawmesh.py -------------------------------------------------------------------------------- /quickhull/testharness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/testharness.py -------------------------------------------------------------------------------- /quickhull/triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/quickhull/triangle.py -------------------------------------------------------------------------------- /shader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/__init__.py -------------------------------------------------------------------------------- /shader/alpha_cutoff.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/alpha_cutoff.cfg -------------------------------------------------------------------------------- /shader/alpha_translucent.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/alpha_translucent.cfg -------------------------------------------------------------------------------- /shader/alpha_translucent_additive.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/alpha_translucent_additive.cfg -------------------------------------------------------------------------------- /shader/alpha_translucent_specular.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/alpha_translucent_specular.cfg -------------------------------------------------------------------------------- /shader/bumped.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/bumped.cfg -------------------------------------------------------------------------------- /shader/bumped_specular.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/bumped_specular.cfg -------------------------------------------------------------------------------- /shader/bumped_specular_mapped.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/bumped_specular_mapped.cfg -------------------------------------------------------------------------------- /shader/colorprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/colorprops.py -------------------------------------------------------------------------------- /shader/diffuse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/diffuse.cfg -------------------------------------------------------------------------------- /shader/emissive_bumped_specular.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/emissive_bumped_specular.cfg -------------------------------------------------------------------------------- /shader/emissive_bumped_specular_mapped.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/emissive_bumped_specular_mapped.cfg -------------------------------------------------------------------------------- /shader/emissive_diffuse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/emissive_diffuse.cfg -------------------------------------------------------------------------------- /shader/emissive_specular.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/emissive_specular.cfg -------------------------------------------------------------------------------- /shader/float2props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/float2props.py -------------------------------------------------------------------------------- /shader/float3props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/float3props.py -------------------------------------------------------------------------------- /shader/imageprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/imageprops.py -------------------------------------------------------------------------------- /shader/internal_space.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/internal_space.cfg -------------------------------------------------------------------------------- /shader/materialprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/materialprops.py -------------------------------------------------------------------------------- /shader/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/menus.py -------------------------------------------------------------------------------- /shader/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/operators.py -------------------------------------------------------------------------------- /shader/panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/panels.py -------------------------------------------------------------------------------- /shader/shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/shader.py -------------------------------------------------------------------------------- /shader/shader_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/shader_config.py -------------------------------------------------------------------------------- /shader/shader_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/shader_extract.py -------------------------------------------------------------------------------- /shader/specular.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/specular.cfg -------------------------------------------------------------------------------- /shader/specular_transparent.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/specular_transparent.cfg -------------------------------------------------------------------------------- /shader/textureprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/textureprops.py -------------------------------------------------------------------------------- /shader/unlit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/unlit.cfg -------------------------------------------------------------------------------- /shader/unlit_color.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/unlit_color.cfg -------------------------------------------------------------------------------- /shader/vectorprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/shader/vectorprops.py -------------------------------------------------------------------------------- /test-export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/test-export.py -------------------------------------------------------------------------------- /test-import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/test-import.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/applyscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/tools/applyscale.py -------------------------------------------------------------------------------- /tools/clearinverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/tools/clearinverse.py -------------------------------------------------------------------------------- /tools/panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/tools/panels.py -------------------------------------------------------------------------------- /tools/wingtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/tools/wingtool.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/utils/collection.py -------------------------------------------------------------------------------- /utils/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/utils/object.py -------------------------------------------------------------------------------- /utils/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/utils/scene.py -------------------------------------------------------------------------------- /utils/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/utils/solver.py -------------------------------------------------------------------------------- /utils/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/utils/transform.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/vect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/utils/vect.py -------------------------------------------------------------------------------- /wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taniwha/io_object_mu/HEAD/wheel.py --------------------------------------------------------------------------------