├── .gitignore ├── LICENSE ├── animation_format.txt ├── bin └── PVRTexToolCLI.exe ├── bone_name.py ├── camera.py ├── converter.py ├── extractor.py ├── image ├── 20240330031553.png ├── snapshot.png └── snapshot_0.png ├── key.py ├── main.py ├── onmyoji_converter.py ├── onmyoji_extractor.py ├── readme.md ├── scene.py ├── shader ├── basic.frag ├── basic.vert ├── basic_w_norm.frag ├── basic_w_norm.vert ├── point.frag └── point.vert ├── split_rgba.py ├── util.py ├── viewer.py └── zeno_animation.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | res 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /animation_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/animation_format.txt -------------------------------------------------------------------------------- /bin/PVRTexToolCLI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/bin/PVRTexToolCLI.exe -------------------------------------------------------------------------------- /bone_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/bone_name.py -------------------------------------------------------------------------------- /camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/camera.py -------------------------------------------------------------------------------- /converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/converter.py -------------------------------------------------------------------------------- /extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/extractor.py -------------------------------------------------------------------------------- /image/20240330031553.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/image/20240330031553.png -------------------------------------------------------------------------------- /image/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/image/snapshot.png -------------------------------------------------------------------------------- /image/snapshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/image/snapshot_0.png -------------------------------------------------------------------------------- /key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/key.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/main.py -------------------------------------------------------------------------------- /onmyoji_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/onmyoji_converter.py -------------------------------------------------------------------------------- /onmyoji_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/onmyoji_extractor.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/readme.md -------------------------------------------------------------------------------- /scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/scene.py -------------------------------------------------------------------------------- /shader/basic.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/shader/basic.frag -------------------------------------------------------------------------------- /shader/basic.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/shader/basic.vert -------------------------------------------------------------------------------- /shader/basic_w_norm.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/shader/basic_w_norm.frag -------------------------------------------------------------------------------- /shader/basic_w_norm.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/shader/basic_w_norm.vert -------------------------------------------------------------------------------- /shader/point.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/shader/point.frag -------------------------------------------------------------------------------- /shader/point.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/shader/point.vert -------------------------------------------------------------------------------- /split_rgba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/split_rgba.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/util.py -------------------------------------------------------------------------------- /viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/viewer.py -------------------------------------------------------------------------------- /zeno_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhang95/neox_tools/HEAD/zeno_animation.cpp --------------------------------------------------------------------------------