├── OpusCLI ├── OpusToolZ.csproj ├── OpusToolZ.sln ├── OpusTools.cs └── Program.cs ├── README.md ├── WolvenKit └── test │ ├── Animation │ ├── AnimSIMD.cs │ ├── AnimSpline.cs │ └── AnimationFunctions.cs │ ├── CatelLoggerService.cs │ ├── CyberpunkToolz.csproj │ ├── CyberpunkToolz.sln │ ├── Experimental │ └── WriterBot.cs │ ├── Functions │ ├── MaterialFunctions.cs │ ├── MeshFunctions.cs │ ├── MeshImportFunctions.cs │ ├── OpusFunctions.cs │ ├── RigFunctions.cs │ └── TargetFunctions.cs │ ├── MaterialTypes │ ├── MaterialEnum.cs │ ├── MaterialInit.cs │ ├── MaterialSet.cs │ └── MaterialTypes.cs │ ├── Program.cs │ └── common │ ├── CompiledBuffer.cs │ ├── MaterialSetup.cs │ ├── StructFunctions.cs │ └── Structs.cs ├── docs ├── README.md ├── formats │ ├── anims.md │ ├── hp.md │ ├── mesh.md │ ├── mi.md │ ├── mlmask.md │ ├── mlsetup.md │ ├── mltemplate.md │ ├── morphtarget.md │ ├── mt.md │ ├── opus.md │ └── rig.md └── images │ └── coord.png └── i_scene_cp77_gltf ├── __init__.py ├── main ├── common.py └── setup.py └── material_types ├── eye.py ├── eyeshadow.py ├── glass.py ├── hair.py ├── meshdecal.py ├── meshdecalemissive.py ├── meshdecalgradientmaprecolor.py ├── metalbase.py ├── multilayered.py ├── skin.py └── vehiclemeshdecal.py /OpusCLI/OpusToolZ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/OpusCLI/OpusToolZ.csproj -------------------------------------------------------------------------------- /OpusCLI/OpusToolZ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/OpusCLI/OpusToolZ.sln -------------------------------------------------------------------------------- /OpusCLI/OpusTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/OpusCLI/OpusTools.cs -------------------------------------------------------------------------------- /OpusCLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/OpusCLI/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/README.md -------------------------------------------------------------------------------- /WolvenKit/test/Animation/AnimSIMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Animation/AnimSIMD.cs -------------------------------------------------------------------------------- /WolvenKit/test/Animation/AnimSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Animation/AnimSpline.cs -------------------------------------------------------------------------------- /WolvenKit/test/Animation/AnimationFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Animation/AnimationFunctions.cs -------------------------------------------------------------------------------- /WolvenKit/test/CatelLoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/CatelLoggerService.cs -------------------------------------------------------------------------------- /WolvenKit/test/CyberpunkToolz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/CyberpunkToolz.csproj -------------------------------------------------------------------------------- /WolvenKit/test/CyberpunkToolz.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/CyberpunkToolz.sln -------------------------------------------------------------------------------- /WolvenKit/test/Experimental/WriterBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Experimental/WriterBot.cs -------------------------------------------------------------------------------- /WolvenKit/test/Functions/MaterialFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Functions/MaterialFunctions.cs -------------------------------------------------------------------------------- /WolvenKit/test/Functions/MeshFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Functions/MeshFunctions.cs -------------------------------------------------------------------------------- /WolvenKit/test/Functions/MeshImportFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Functions/MeshImportFunctions.cs -------------------------------------------------------------------------------- /WolvenKit/test/Functions/OpusFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Functions/OpusFunctions.cs -------------------------------------------------------------------------------- /WolvenKit/test/Functions/RigFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Functions/RigFunctions.cs -------------------------------------------------------------------------------- /WolvenKit/test/Functions/TargetFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Functions/TargetFunctions.cs -------------------------------------------------------------------------------- /WolvenKit/test/MaterialTypes/MaterialEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/MaterialTypes/MaterialEnum.cs -------------------------------------------------------------------------------- /WolvenKit/test/MaterialTypes/MaterialInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/MaterialTypes/MaterialInit.cs -------------------------------------------------------------------------------- /WolvenKit/test/MaterialTypes/MaterialSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/MaterialTypes/MaterialSet.cs -------------------------------------------------------------------------------- /WolvenKit/test/MaterialTypes/MaterialTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/MaterialTypes/MaterialTypes.cs -------------------------------------------------------------------------------- /WolvenKit/test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/Program.cs -------------------------------------------------------------------------------- /WolvenKit/test/common/CompiledBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/common/CompiledBuffer.cs -------------------------------------------------------------------------------- /WolvenKit/test/common/MaterialSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/common/MaterialSetup.cs -------------------------------------------------------------------------------- /WolvenKit/test/common/StructFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/common/StructFunctions.cs -------------------------------------------------------------------------------- /WolvenKit/test/common/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/WolvenKit/test/common/Structs.cs -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/formats/anims.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/hp.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/mesh.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/mi.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/mlmask.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/mlsetup.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/mltemplate.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/morphtarget.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/mt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/opus.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/formats/rig.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/images/coord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/docs/images/coord.png -------------------------------------------------------------------------------- /i_scene_cp77_gltf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/__init__.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/main/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/main/common.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/main/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/main/setup.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/eye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/eye.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/eyeshadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/eyeshadow.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/glass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/glass.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/hair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/hair.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/meshdecal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/meshdecal.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/meshdecalemissive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/meshdecalemissive.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/meshdecalgradientmaprecolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/meshdecalgradientmaprecolor.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/metalbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/metalbase.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/multilayered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/multilayered.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/skin.py -------------------------------------------------------------------------------- /i_scene_cp77_gltf/material_types/vehiclemeshdecal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kainotoa/cp77research/HEAD/i_scene_cp77_gltf/material_types/vehiclemeshdecal.py --------------------------------------------------------------------------------