EdenAutoMorpherScript 추출 코드 정제

This commit is contained in:
2026-02-01 19:14:39 +09:00
parent 53a70d3c6e
commit 349976b787
42 changed files with 12616 additions and 12604 deletions

View File

@@ -1,4 +1,4 @@
// Warning: Some assembly references could not be resolved automatically. This might lead to incorrect decompilation of some parts,
// 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
@@ -6,27 +6,27 @@ using UnityEngine;
public class BakedBodyMesh
{
public SkinnedMeshRenderer smr;
public SkinnedMeshRenderer smr;
public Mesh bakedMesh;
public Mesh bakedMesh;
public BakedBodyMesh(SkinnedMeshRenderer _smr)
{
//IL_000e: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Expected O, but got Unknown
smr = _smr;
bakedMesh = new Mesh();
smr.BakeMesh(bakedMesh);
}
public BakedBodyMesh(SkinnedMeshRenderer _smr)
{
//IL_000e: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Expected O, but got Unknown
this.smr = _smr;
this.bakedMesh = new Mesh();
this.smr.BakeMesh(this.bakedMesh);
}
public void ReBakeMesh()
{
smr.BakeMesh(bakedMesh);
}
public void ReBakeMesh()
{
this.smr.BakeMesh(this.bakedMesh);
}
~BakedBodyMesh()
{
smr = null;
bakedMesh = null;
}
~BakedBodyMesh()
{
this.smr = null;
this.bakedMesh = null;
}
}