포매팅

This commit is contained in:
2026-02-01 19:30:24 +09:00
parent 34507ca208
commit 6c2bb74df3
42 changed files with 8571 additions and 6960 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,25 +6,25 @@ using UnityEngine;
public class BakedBodyMesh
{
public SkinnedMeshRenderer smr;
public SkinnedMeshRenderer smr;
public Mesh bakedMesh;
public Mesh bakedMesh;
public BakedBodyMesh(SkinnedMeshRenderer _smr)
{
smr = _smr;
bakedMesh = new Mesh();
smr.BakeMesh(bakedMesh);
}
public BakedBodyMesh(SkinnedMeshRenderer _smr)
{
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;
}
}