Yandere Simulator Fanon Wikia
Advertisement

Here, you can learn other modding methods. Most of these methods does NOT work in Unity 9 builds and after, which count the Demo Builds.

If you need info on general modding, you can also check this page that list general modding methods such as Pose Mod, DLL Files, and such.

Level Files (Unity Scenes)[]

All the informations about the level files can be found on this page : http://yandere-simulator-fanon.wikia.com/wiki/Level_files_internal_structure_documentation.

New Other Modding Methods[]

Here are the other modding methods that does work in builds such as the Demo Builds.

It seems that there is nothing here for the moment...

Old Other Modding Methods/Unity 5 Builds[]

Those are the modding methods that doesn't works in the newer builds of Yandere Simulator. You would have to use the builds before Unity 9 to use them.

Modding methods that work after the July 2017 version and before Unity 9 versions.

Yandere Mod Loader[]

Note : This tutorial is written by a french. Grammatical fixes are welcome !

Yandere Mod Loader is a beta tool for loading mods into Yandere Simulator. It gives you the possibility to load multiple mods at once. Firstly, you need to know programming in .NET language like C# or VB.NET.

Download :

Creating the base of the mod[]

Open your IDE and create new project "Library". Its name will be the ID of the mod. Create a class named "[ID]_installer" (Example: GuyMod_installer).

In the class add a static method "Install". Extract Yandere Simulator and Yandere Loader into the generation folder of your project (by default: "%UserProfile%\source\repos\projectName\bin\Debug\").

Add in project references all of dll of YandereSimulator_Data\Managed (except mscorlib.dll and all library which starts by System).

Back on Visual Studio, in Install() method, you'll put instructions for install mod.

Example :

new GameObject("GuyMod").AddComponent<GuyMod_installer>();

DontDestroyOnLoad();

If you write this code, the compiler throws an error. You need to add " : MonoBehaviour" just after the "class GuyMod_installer".

The base of the mod is almost finished. Create a new JSON file named modpkg.json. Put :

{

"id":"GuyMod",

"name":"Guy Mod",

"version":"1.0"

}

In properties, set Copy to output directory to true or Always Copy (depending the version).

In project properties, set the Generation folder to /bin/Debug/mods/GuyMod

Generate and the mod will appears on the list in-game !

Folder

Change student routine[]

You need the base of your mod.

Create update method :

void Update() {

}

Into the function, add a foreach iterator and a if statement for selecting the student. Example:

The student is Budo Masuta. His student id is #21. I want to move his position at 3 PM. (15 hours in 24h format (+ 12))

void Update() {

foreach (var student in FindObjectsOfType<StudentScript>()) {

if ((student.ID == 21) && (FindObjectOfType<ClockScript>().HourTime == 15f)) {

student.CurrentDestination.position = new Vector3(0, 0, 0);

student.CurrentDestination.rotation = new Quaternion(0, 0, 0, 0);

}

}

}

TIP: For getting position and rotation, you can use the pose mod and enable the label in advanced options.

To add code in each update and in start of game, simply check the methods of MonoBehaviour (Unity).

Replacing Complete Characters 3D models[]

You can replace character models using this PME tutorial, all the links are in the description.

PME_TUTORIAL_3_-_Character_Model_Replacing_(Yandere_Simulator_Modding)

PME TUTORIAL 3 - Character Model Replacing (Yandere Simulator Modding)

Texture Modding[]

Texture modding allows you to edit the textures of the uniforms, school environment, stockings, hairstyles and so on.

You will need :[]

Tutorial :[]

  1. Open Unity Studio.
  2. Go to "File/Load older".
  3. Load your "YandereSimulator_Data" folder and wait for it to index.
  4. Go to the "Asset List" tab.
  5. Search for the texture you want. Click on it once to select it.
  6. Right click and hit "Show original file". It will open File Explorer and automatically select the file where that texture is located. You'll need that later!
  7. Go to "Export/Selected Assets". Select a folder.
  8. Go to that folder and to its generated subfolder (It will be called Texture2D).
  9. Open UABE
  10. Go to File/Open. Select your .asset file from 'YandereSimulator_Data' folder. (If you used Unity Studio, open the one from step 6!)
  11. Go to View/Search by name
  12. Find the texture you need.
  13. Check the type and make sure it's 'Texture2D'.
  14. Click on it once to select it.
  15. Go to "Plugins/Export to png". Choose a folder and export it.
  16. Once you're done editing it, go back to UABE and make sure your texture is still selected.
  17. Go to "Plugins/Edit/Load". Switch 'TGA' to 'PNG' at the bottom. Select your edited texture and press OK.
  18. Go to "File/Save" and choose the 'YandereSimulator_Data' folder. Name the file something like 'EDITsharedassets8.assets', NOT 'sharedassets8.assets' or it WILL NOT WORK.
  19. Go to the 'YandereSimulator_Data' folder and move the original asset somewhere else. Rename your file to something like 'sharedassets8.assets' but with your asset number.
  20. Test the game to make sure it worked!

Meshes (3D models) Editing[]

You will need :[]

Tutorial[]

If you're using Unity Studio as well :

  1. Open Unity Studio.
  2. Go to "File/Load Folder".
  3. Load your "YandereSimulator_Data" folder and wait for it to index.
  4. Go to the "Asset List" tab.
  5. Search for the mesh you want. Click on it once to select it.
  6. Right click and hit "Show original file".
  7. It will open File Explorer and automatically select the file where that mesh is located.

You'll need that later !

  1. Go to "Export/Selected Assets". Select a folder.
  2. Go to that folder and to its generated subfolder (It will be called Mesh).
  3. Go to the next section below!

If you're using both/just UABE :

(If you're using both, skip steps 6 and 7.)

  1. Open UABE.
  2. Go to "File/Open". Select your .asset file from 'YandereSimulator_Data' folder. (If you used Unity Studio, open the one from step 6!)
  3. Go to View/Search by name
  4. Find the mesh you need.
  5. Check the type and make sure it's 'Mesh'.
  6. Click on it once to select it.
  7. Go to "Plugins/Export to obj". Choose a folder and export it.
  8. Once you're done editing it, open up Unity 5.6.5.
  9. Create a new project and let it load. Go to "Assets/Import New Asset...". Select your mesh and import it.
  10. Down at the bottom, under assets, your model should show up.
  11. Click it once and drag it to the empty world in the middle of the screen.
  1. Go to "File/Build Settings...". Make sure the Platform is 'PC,
  2. Mac & Linux Standalone'. Check the box that says 'Development Build'. Click the button that says 'Add Open Scenes'.
  1. Click the build button, choose a folder to export it to, and wait for it to build.
  2. Open another window of UABE. Go to "File/Open". Go to the folder
  3. you exported your project to and then into the folder editing in '_Data. Select sharedassets0.asset and open it.
  1. Find your model. Depending on what you named it, it could be
  2. anything, or it could be called Default. Go to "Export Raw" and choose a folder to export to. Close that window of UABE.
  1. Go back to your window of UABE and find the mesh you want to
  2. replace. Go to "Import Raw" and choose that raw data you just exported. Make sure to change the texture to your model's texture as well!
  1. Go to "File/Save" and choose the 'YandereSimulator_Data' folder.
  2. Name the file something like 'EDITsharedassets8.assets', NOT 'sharedassets8.assets' or it WILL NOT WORK.
  1. Go to the 'YandereSimulator_Data' folder and move the original
  2. asset somewhere else. Rename your file to something like 'sharedassets8.assets' but with your asset number.
  1. Test the game to make sure it worked !

Audio Modding[]

You will need :[]

  • .wav files of the music you want to add. You can ONLY use .wav, otherwise it WILL NOT WORK.
  • Unity 5.6.5 (DL Link)
  • Unity Asset Bundle Extractor (DL Link)

For a video tutorial, use this video. It's for 7 Days to Die, but it can also be used with Yandere Simulator.

Tutorial[]

  1. First, rename your .wav files so that they're the same as the files you're replacing (For example, if you're changing the Main Menu music, rename it to MainMenuCute.wav).
  2. Launch Unity and create a new project. Name it whatever you want.
  3. Delete the directional light and main camera.
  4. Drag your .wav files into the assets folder on the bottom half of the screen, and then drag them into the scene.
  5. Go to File > Build Settings, select "Development Build", and click "Build." Name the file whatever you like. Wait for it to build.
  6. Open the folder you just created. There should be a subfolder titled "yourfilename_Data." There will be two files: sharedassets0.assets and sharedassets0.resource. You will need these later to make a dump file for the music.
  7. Open Unity Asset Bundle Extractor, and open sharedassets0.assets using the program.
  8. Once it's loaded, you should see your music files as AudioClips. Click on the AudioClip files and select "Export Dump" on the right side of the screen. Export them to whatever folder you like
  9. Open the folder where you just exported the dump files and rename them the same name as your .wav file. (Ex. MainMenuCute.txt)
  10. Go back to yourfilename_Data. Rename sharedassets0.resource whatever you'd like (I typically keep it the same name as the .wav file, such as MainMenuCute.resource).
  11. Open each dump file in notepad. Where it says "sharedassets0.resource", change it to whatever you just renamed it as. Save each file.
  12. Copy your .resource file and paste it into YandereSimulator_Data.
  13. Open Unity Asset Bundle Extractor again. Open the sharedassets.assets folder that contains the sound you want to change. Find the AudioClip, then select "Import Dump" on the right side of the screen and select the dump file you want to use.
  14. Go to File > Save, and save the sharedassets.assets file to YandereSimulator_Data. Name it something like EDITsharedassets8.assets but with your asset number. Do NOT name it sharedassets8.assets, or else it will not work.
  15. Go to YandereSimulator_Data and move the original sharedassets.assets file somewhere else. Rename your edited file to something like "sharedassets8.assets", but with your asset number.
  16. Run the game. Your custom sound should play!

Animation Modding[]

You will need :[]

For a video, you can see this video tutorial : Video Link.

Tutorial[]

  1. Open UABE.
  2. Click on File>Open
  3. Select the recources.assets file.
  4. Choose the animation you who add (For example: idle_01)
  5. Click on "Export Dump".
  6. Save the Dump file.
  7. Close UABE.
  8. Open the dump file.
  9. Replace the the name of the animation on "1 string m_Name: (Name of the animation)" by animation you who replace with this. (For example: "idle_01" to "f02_idleShort_00".)
  10. Save the dump file.
  11. Open UABE again.
  12. Click on File>Open
  13. Select the recources.assets file.
  14. Select the animation you who replace (For example: f02_idleShort_00)
  15. Click on "Export Dump".
  16. Save the Dump file.
  17. Now go back to the animation you who replace.
  18. Click on "Import dump".
  19. Import the dump file that you replaced the name.
  20. Click on File>Save. (Dont save it in YandereSimulator_data!!!)
  21. Wait it to save.
  22. Drag the recources.assets to YandereSimulator_data.
  23. Open the game to make sure it worked.

Old Modding Methods/Unity4 builds[]

Modding methods that work before the July 2017 version.

Texts Modding[]

You can modify all the game texts with Pikachuk's "Yandere Text Editor".

Here is the link : Download Link.

File Contents[]

File Name Text Content
Level0
  • 'Press any button to continue'
  • Random warning
Level1
  • Text from beginning credits
Level2
  • Main menu text
Level3
  • Senpai creation screens
Level4
  • Yandere-chan cutscene (when you press 'New Game')
Level5
  • Info-chan cutscene
  • Musume's father cutscene
  • Grateful Kokona cutscene
Level6
  • Challenges Menu
Level7
  • Senpai shrine
  • Phone/pause menu
  • Stats menu
  • Info-chan menu
  • Website (where you gossip)
  • Conditions from Mission Mode
  • Misc. Mission Mode text
  • Torturing (menu, conversations, etc.)
  • Descriptions of panties and their buffs
  • Manga things (name, description, etc.)
  • Tasks
Level8
  • Actions (grab, pour, etc.)
  • Drops menu
  • Kokona's Wednesday events
  • Some Mission Mode ending screen text
  • Megami (laptop girl)'s monologue
  • Kidnapping checklist
  • Debug menu
  • Easter egg menu
  • Student reactions (murder, holding weapon, bloodiness, etc.)
  • Teacher reactions
  • Senpai reactions
  • Matchmaking (talking to students, menu, and responses)
  • More tasks stuff
  • Clubs
  • Demon world
  • Info-chan menu
  • School subject menu
  • All Mission Mode failure messages
  • Mind-broken slave speech
  • Fail screen
  • Guidance counselor stuff
  • Notes
  • Tapes
  • 'Offer Help' cutscene
  • Topics
  • Confession cutscene
  • Saki and Kokona lunchtime event
  • Osana phone call and Kokona phone call
  • Osana and Senpai Monday interactions
Level9
  • Kokona 'Befriend' cutscene
Level10
  • More main menu stuff
Level11
  • Yanvania
Level12
  • Phone menu
Level13
  • Fun girl defense
Level14
  • No text
Level15
  • Mission mode side text
Level16
  • Loading
mainData
  • Welcome screen

Texture Modding[]

This kind of modding is used by those who want to make custom hair colors, uniforms or such. In order to mod the game's assets using this method, you will need the Unity Asset Editor program.

  1. Open Unity Asset Editor. (If you do not have UAE yet, the download link is here.)
  2. Select the sharedassets files of the Data folder desired.(Look to list of sharedassets for the desired texture location).
  3. Choose the file you want and export it. If it is a texture that you want to edit, this is what the file MUST look like when you export it. To export, Right-Click the name of the texture file and hit 'Export':
    Example

    Look for files with the type "Texture" as shown

    If you do NOT see any files that are type 'Texture', reopen UAE and the sharedassets file and try again.
  4. Edit the texture(s) as you want (You need an image editing program that has DDS support. Paint.NET supports DDS, but be sure to set Mipmapping to auto while saving your image or it will not upload correctly.)
    What you need to set when saving a DDS file on Paint

    This needs to be checked when saving a DDS file for a Texture on Paint.NET.

  5. After editing them, save them and import them in the UAE to replace the old texture. Make sure that you saved the texture to the same name as the old texture before uploading.
  6. Save all the changes and play the game.The textures you edited will appear in-game.
  7. IF YOUR TEXTURE DOES NOT UPLOAD PROPERLY AFTER BEING EDITED MAKE SURE THAT IT IS BOTH MIPMAPPED FROM THE EDITING PROGRAM /AND/ THAT THE OPTIONS CHOSEN FOR THE TEXTURE MATCH THE REQUIRED PROGRAMMING FOR THE GAME. Most opaque textures use a format called "DXT1" while most transparent and translucent textures use a format called "DXT5." You can change the format while saving your edit. Make sure it matches up to the format that the game requires.
    PAY CLOSE ATTENTION

WARNING: If UAE keeps crashing when you try to load a texture, do this: Go into the Texture Plugins folder in the UAE files, and then go into the NODX file, it'll contain Texture.dll. Copy the file and go into the Plugins folder. Enter the Default folder and paste it.

Assets file button

The 'Open Assets-file' button in Unity Assets Explorer

Tutorial (Separate Program)[]

  1. Open Unity Asset Explorer (download it here.)
  2. Click the 'Open Assets-file' button
  3. Open the .assets file that contains the textures you want to edit.
  4. Use the search bar located below the list of files to find the texture you want.
    Folder

    The sharedassets folder.

  5. Right click on the file you want to edit.
  6. Select 'Extract This File'.
  7. Find the place where it exported your files. (Trust me. I had to find mine.)
  8. Edit the texture(s) as you want (You need an image editing program that has DDS support. Paint.NET supports DDS, but be sure to set Mipmapping to auto while saving your image or it will not upload correctly.)
  9. Save the file in the folder where the original was exported, making sure the name is the same. Replace the old one.
  10. Go back to UAE and right click on the file you just edited.
  11. Select 'Import This File From DDS'.
  12. Click the button that says 'Save As Assets-file' and save over the old file.

Texture List[]

This is a list of what is contained in each of the sharedassets files texture wise.

Shared assets 8

Me importing a DDS file in sharedassets8.assets

sharedassets.assets files Textures
sharedassets0.assets - Pink gradient texture- GUI textures

- VignetteMask texture

sharedassets1.assets - N/A
sharedassets2.assets - All sponsor logo textures
sharedassets3.assets - Hair colour textures:* - HairGreen (Used in older builds of the game)
  • - HairCyan (Used in older builds of the game)
  • - HairPurple (Used in older builds of the game)
  • - HairRed (Used in older builds of the game)
  • - HairYandere (Used by Yandere-chan's default hairstyle)
  • - DrillHair (Used by Yandere-chan's drill hairstyle)

- Misc. character textures:

  • - Blush
  • - YandereEyes
  • - YandereFace
  • - YandereHair
  • - GreenStockings (Used by Midori Gurin)
  • - Eyepatch
  • - SkirtShadow

- Skybox textures

- Misc. school textures

- Some Yandere-chan uniform textures:

  • - DarkZTR (Uniform 1)
  • - DarkZTRBlazer (Uniform 5)
sharedassets4.assets - Male hairstyle textures- Male skin and face textures.

- Female skin and face textures.

- Some Yandere-chan uniform textures:

  • - LongSleeveZTR (Uniform 2)
  • - SweaterZTR (Uniform 3)
  • - BlazerZTR (Uniform 4)
  • - OriginalUniformZTR (Uniform 6)

- Male uniform textures:

  • - m01_schoolwear_000_h (Uniform 1)
  • - m01_schoolwear_200_h (Uniform 2)
  • - m01_schoolwear_400_h (Uniform 3)
  • - MaleBlazer (Uniform 4)
  • - MaleDarkBlazer (Uniform 5)
  • - MaleOriginalUniform (Uniform 6)

- Misc. textures

sharedassets5.assets - Dark logo (Red and black Yandere Simulator logo) texture
sharedassets6.assets - Yandere-chan's phone texture.- Video thumbnail texture
sharedassets7.assets - Challenge icon silhouette textures- Misc. textures
sharedassets8.assets - All universal female uniforms- All universal male uniform textures (casual shoes and socks)

- Teacher uniform textures

- Gym teacher uniform textures

- Ronshaku skin, uniform and panty textures

- Oka uniform/stockings and panty textures

- Inkyu And Sakyu Basu's textures (under succubus 'a' and 'b' variables)

- All female hairstyle textures

- Special collectible books textures (ex:LifeNote)

- Yandere-Chan's Pajama Texture (f02_pajamas_00_h)

- Martial Arts uniform textures

- Yandere-chan's panty textures

- Accessory Textures

- Titan/Skeleton easter egg textures

- Original student ID photos.

- Basement Textures (Includes Basement Camera)

- Yandere-Chan's Room Textures (includes Senpai's Butsudan object textures)

- Counselor's office textures

- "Kao" Book (Fake Facebook page)

- Info-Chan Drop Textures

- Secret Kokona suicide rope texture

- All Rainbow Six stockings (also used by Midori), Osana stockings, and Musume's loose stockings

sharedassets9.assets - Buraza Town textures- Easter egg uniform textures- Cooking Club room textures

- Bench, floor, and interior wall textures

- Generic Club props Textures

- Occult Club Room Textures

- Club accessories for Yandere-chan

- Light Music Club textures

- Club Poster textures

-Pippi and Ryuto's "OSU!" background and Gaming Club stats boosting games textures

- Demon hand textures

- Classroom textures

- Rival-chan default outfits (f05 files)

- Placeholder club leader textures

- Yandere-chan's alternative hairstyle and accessory textures

- Nurse textures

- Counselor textures (hair, face, clothes)

- Osana Najimi textures

- Megami Saikou (Student Council President) textures

- Weapon textures

- Infirmary textures

- Drama Club mask textures

- School sign textures

- Bathroom textures

- Info-chan textures

- Police officer textures

- Turtle textures

- Octodog texture

- Hedge textures

- Saki's bra texture

- Demon Realm textures

- Magical Girl Wand texture

- Faculty room textures

- Art Club apron texture

- K-ON Uniform texture

- Drama Club gloves texture

- Counselor's laptop screen texture

- Misc. textures

sharedassets10.assets - N/A.
sharedassets11.assets -N/A.
sharedassets12.assets - Yanvania textures
sharedassets13.assets - Yanvania textures
sharedassets14.assets - N/A.
sharedassets15.assets - "Fun" easter egg texture
sharedassets16.assets - N/A.
sharedassets17.assets - Some of Nemesis-chan's mission mode screen textures and her portrait.
sharedassets18.assets - Loading screen textures.
sharedassets19.assets -Magical Girl Pretty Miyuki textures (Game at Yandere Chan's house).

-Student Council Blazer texture.

-Occult Hair textures.

-Phantom Girl Uniform texture.

-Phantom Girl Face texture.

-Osana Charm texture.

-Oka's Blazer.

-Police textures (Uniform and Armband).

-Prison Bars textures (Student after being arrested).

-Photos in Photography club.

-Watering Cans textures.

-Yandere Chan's panties textures.

-Senpai's Shrine textures.

-LifeNote texture(Poster at Yandere Chan's house).

-Teacher's Hair textures.

-Bullies' Phone textures.

-Bullies' bags textures.

-Security Camera texture.

-Handerchief texture.

-Bullie's Hoodies textures.

-Teacher Uniform texture.

-Midori's phone texture.

-Miyuji Eyebrows texture.

-Nurse stockings texture.

-LockPick's texture. (also in sharedassets20.assets)

-Rat poison texture. (also in sharedassets20.assets)

-Tutorial Photos. (also in sharedassets20.assets)

-Teacher Hair/Face Textures.

sharedassets20.assets -Bullie's face textures.

-Miyuji's guitar texture.

-Osana's hair texture.

-Black hole's face texture.

-Gym male uniform texture.

-Yamiko's textures.

-Vending machine's texture.

-Rat poison texture.

-Lockpick's texture.

-Drakeslayer's texture.

-Miyuki's hair texture.

-Raincoat's texture.

-Strawberry Thieves poster texture.

-Yandere Chan's guitar texture.

-Tutorial Photos.

-Stokr (Cyber Stalking) icon texture.

sharedassets21.assets -Bullies' hoodie textures.

-Music Club Minigame textures. -Sketchbook texture.

-Bullies' Swimwear textures.

-Kokona's phone texture.

sharedassets22.assets -N/A.
sharedassets23.assets Yancord Textures (Selene's profile picture and Yandere Chan's profile picture)
sharedassets24.assets -N/A.
sharedassets25.assets -New earning money Minigame textures.
sharedassets26.assets -New earning money Minigame textures.

-Nozama (Online Shopping) icon texture.

sharedassets27.assets -New earning money Minigame textures. (yes, again, not even joking, many textures repeat themselves, I don't know why...).

-Osana's textures. (the new ones too).

-"Saikou suit".

-Police textures.

-Ganguro Sailor/Bullies' textures.

-Kuudere's hair.

-Deliquent Uniform.

-Kencho's textures.

-Keytar texture.

-"KON" uniform.

-Pink Pajamas.

-Pippi's hair texture.

sharedassets28.assets -Town textures (yes, even Amai's mom textures are there, not sure about rainbow girls and Oka, I didn't see their textures, so they're probably not there anymore).
sharedassets29.assets -Kencho's textures. (again).

-Textures of challenges.

sharedassets30.assets -"OlderAdultMale" textures... (?).

-Short sleeve socks textures.

-Nemesis Uniform.

-"PinkSeifuku" (I'm sorry, I don't know what is that).

-StudentCouncilSCPStockings (Megami's stockings, I think...).

-Yanvania textures.

-Some cooking club textures.

-Yandere kun's hair.

-Hair textures (the ones that Yandere Chan has).

-Textures of some weapons.

-Photography room textures.

-OSORO hair textures.

-Chip texture.

-Counselor textures.

-Some textures of the school.

-Vaporwave easter egg textures.

-Hallway posters.

-Yamiko textures.

-OSANA'S bag texture.

-Sake bottle texture.

-Sanity smudges.

-FEMALE deliquent hair textures.

-"Original yandere hair" texture.

-Occult room textures.

-Info club textures.

-Textures of GIFTS for OSANA.

-"Kizana" (It's the UV for Ayumi's hair).

-Bandana texture.

-Textures of Diplomas in Counselors room.

-"NemesisHairFinal".

Texture Modding Examples[]

Here are some examples of custom-made textures:

Meshes (3D models) Editing[]

Note: The reference for this tutorial was by Pikachuk on YouTube (specifically this video), but it's in French. I did my best to translate it ; edits from more experienced modelers and modders are welcome !

Hello ! I'm Flower-kun. I saw that a lot of people were requesting something like this, so I decided to provide !

THIS DOES NOT WORK WITH .pmx FILES, ONLY .pmd FILES !

You will need :

Alright ! Let's get started !

Hairinport-0

the hair I'm using

For this tutorial, I'm going to replace the Miku hair with this custom model (It is indeed an MMD hair model !) So let's get started !

Tutorial[]

  1. Open the character model skeleton in 3DS Max.
  2. Run the PMD import script by selecting 'Run Script' in the Scripts menu (in the top bar).
    3dsmax1

    deleting the base model

  3. Import your hair, making sure to uncheck every box except for 'Model' and 'Physics'.
  4. Resize and move your hair until it's on the model the way you want.
  5. Delete the character skeleton and save the hair as a .obj file.
    Exportt

    exporting the model as a .obj

  6. Open up Unity and create a new project.
  7. Select the 'Assets' button at the top and choose 'Import New Asset'.
    Importasset

    importing your model

  8. Choose your .obj that you just made. It should show up as an asset.
    Buildassets

    the buttons are highlighted

  9. Drag the bottom picture of the model to the grid to import it to a scene.
  10. Go into file and select 'Build Settings'.
  11. Select 'Add Current' and save your scene.
  12. Click 'Build'.
  13. Wait for it to build.
  14. Go to where you saved your game. You should see a YourBuildName_assets folder that contains sharedassets0.assets.
  15. Open up sharedassets0.assets with Unity Assets Bundle Extractor.
  16. Find your mesh (Mine was named default, because I forgot to name the model - oops!).
  17. Right click and select 'Export'. Save the .data file.
  18. Open up the sharedassets in Yandere Simulator that contains the hair you want to replace (mine is in sharedassets9).
  19. Press Export Raw. Export to wherever you want and give any name. Then press Import Raw, select your mesh, and press OK.
  20. Find the texture of the mesh you replaced (there's a search function).
  21. Press Plugins/Edit/Load and select your texture, then press OK.
  22. Follow the texture replacing tutorial above.
  23. Go to File/Save, add the extension ".assets" and rename the file to something like "EDITsharedassets8.assets". You MUST save the file as something else; the game will not work right if you don't.
  24. Go to your "YandereSimulator_Data" folder where your modded file is located. Move the original .assets file so you have a backup in case something goes wrong. Rename your modded .assets file to the original file's name.
  25. Open up the game and scroll through Yan-chan's hairstyles - you should find your hair! (My game crashed because I have a bad computer, so sorry there's no pictures...)
  26. Alternatively, you could use the Pose Mod to put you models in the game like the fake Kizana hair - a tutorial for this is coming soon, probably on the Pose Mod commands page.

You can use this to replace virtually any object, I was just showing how to replace a hair model.

Animation Modding[]

Hello ! I'm An Kawaii Potato. I noticed that a lot of people were asking for a tutorial for changing animation so here we go !

You will need :

Animations-01

some of the sharedassets9/10 animations

Tutorial[]

  1. Open UAE and go to your yan sim folder
  2. Open sharedassets 8 or 10 for older version or 8 and 9 for newer version
  3. Scroll down through the files till you find the files with f02 in the start
  1. Choose one and save it on a place you can easily find it
  2. Choose another animation save it and replace it with the one you choose before

Note: To make Yandere-Chan Play Students Animation, please use pose mod ! Thank you.

Advertisement