EdenAutoMorpherScript 디컴파일 소스 추가

This commit is contained in:
2026-02-01 19:26:39 +09:00
parent 15efd5b720
commit 34507ca208
85 changed files with 9461 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
// Warning: Some assembly references could not be resolved automatically. This might lead to incorrect decompilation of some parts,
// for ex. property getter/setter access. To get optimal decompilation results, please manually add the missing references to the list of loaded assemblies.
// EdenAutoMorpherScript, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
// Eden.AutoMorpher.BakedBodyMesh
using UnityEngine;
public class BakedBodyMesh
{
public SkinnedMeshRenderer smr;
public Mesh bakedMesh;
public BakedBodyMesh(SkinnedMeshRenderer _smr)
{
smr = _smr;
bakedMesh = new Mesh();
smr.BakeMesh(bakedMesh);
}
public void ReBakeMesh()
{
smr.BakeMesh(bakedMesh);
}
~BakedBodyMesh()
{
smr = null;
bakedMesh = null;
}
}