gitextract_zwm6wzm0/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ └── workflows/ │ ├── build.yml │ ├── pr-test.yml │ ├── publish-gh.yml │ ├── publish-itch.yml │ ├── release-nightly.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── build-aux/ │ ├── linux/ │ │ ├── inochi-session.appdata.xml │ │ └── inochi-session.desktop │ ├── osx/ │ │ ├── BuildUniversal.sh │ │ ├── Info.plist │ │ ├── gendmg.sh │ │ └── osxbundle.sh │ └── windows/ │ ├── inochi-session.rc │ └── version.h ├── dub.sdl ├── genpot.sh ├── gentl.sh ├── imgui.ini ├── res/ │ ├── licenses/ │ │ ├── LICENSE-FreeType │ │ ├── LICENSE-Lua │ │ ├── LICENSE-Spout2 │ │ └── LICENSE-imgui │ ├── shaders/ │ │ ├── batch.frag │ │ └── batch.vert │ ├── style.css │ └── version.txt ├── source/ │ ├── app.d │ ├── inochi2d/ │ │ └── nio/ │ │ ├── puppet.d │ │ ├── scene.d │ │ └── staging.d │ └── session/ │ ├── package.d │ └── widgets/ │ ├── package.d │ └── scene.d ├── tl/ │ ├── placeholder.txt │ └── template.pot └── vcvars.ps1