- ### This extension will be removed and replaced by https://extensions.blender.org/approval-queue/vrm/ once it is approved. - I upload an all-black image as a featured image or icon. Because currently I can only upload such images. I've reported a bug: https://projects.blender.org/infrastructure/extensions-website/issues/124 ## VRM format VRM format is an extension to add VRM-related functions into Blender. ## Tutorials | [Create Simple VRM](https://vrm-addon-for-blender.info/en/create-simple-vrm-from-scratch?locale_redirection) | [Create Humanoid VRM](https://vrm-addon-for-blender.info/en/create-humanoid-vrm-from-scratch?locale_redirection) | **[Physics Based Material](https://vrm-addon-for-blender.info/en/material-pbr?locale_redirection)** | | :---: | :---: | :---: | | [![](https://vrm-addon-for-blender.info/images/simple.gif)](https://vrm-addon-for-blender.info/en/create-simple-vrm-from-scratch?locale_redirection) | [![](https://vrm-addon-for-blender.info/images/humanoid.gif)](https://vrm-addon-for-blender.info/en/create-humanoid-vrm-from-scratch?locale_redirection) | [![](https://vrm-addon-for-blender.info/images/material_pbr.gif)](https://vrm-addon-for-blender.info/en/material-pbr?locale_redirection) | | [Anime Style Material](https://vrm-addon-for-blender.info/en/material-mtoon?locale_redirection) | [Automation](https://vrm-addon-for-blender.info/en/scripting-api?locale_redirection) | [VRM Animation](https://vrm-addon-for-blender.info/en/animation?locale_redirection) | | :---: | :---: | :---: | | [![](https://vrm-addon-for-blender.info/images/material_mtoon.gif)](https://vrm-addon-for-blender.info/en/material-mtoon?locale_redirection) | [![](https://vrm-addon-for-blender.info/images/scripting_api.gif)](https://vrm-addon-for-blender.info/en/scripting-api?locale_redirection) | [![](https://vrm-addon-for-blender.info/images/animation.gif)](https://vrm-addon-for-blender.info/en/animation?locale_redirection) | ## Overview This add-on adds VRM-related functions to Blender, such as importing and exporting VRM, adding VRM Humanoid and setting MToon shaders. Bug reports, feature requests, pull requests, etc. are welcome. I have taken over the development after [Version 0.79](https://github.com/iCyP/VRM_IMPORTER_for_Blender2_8/releases/tag/0.79) from the author, [@iCyP](https://github.com/iCyP). ## Development The source code for development is in the [main](https://github.com/saturday06/VRM-Addon-for-Blender/tree/main) branch. Its [src/io_scene_vrm](https://github.com/saturday06/VRM-Addon-for-Blender/tree/main/src/io_scene_vrm) folder is a main body of the add-on. For more advanced development, such as running tests, please use [Poetry](https://python-poetry.org/). ```shell git clone https://github.com/saturday06/VRM-Addon-for-Blender.git cd VRM-Addon-for-Blender git checkout main git submodule update --init ``` For efficient development, you can create a link to that folder in the Blender `addons` folder. ### Linux ```shell ln -s "$PWD/src/io_scene_vrm" "$HOME/.config/blender/BLENDER_VERSION/scripts/addons/io_scene_vrm" ``` ### macOS ```shell ln -s "$PWD/src/io_scene_vrm" "$HOME/Library/Application Support/Blender/BLENDER_VERSION/scripts/addons/io_scene_vrm" ``` ### Windows PowerShell ``` New-Item -ItemType Junction -Path "$Env:APPDATA\Blender Foundation\Blender\BLENDER_VERSION\scripts\addons\io_scene_vrm" -Value "$(Get-Location)\src\io_scene_vrm" ``` ### Windows Command Prompt ``` mklink /j "%APPDATA%\Blender Foundation\Blender\BLENDER_VERSION\scripts\addons\io_scene_vrm" src\io_scene_vrm ```