2026-04-22 모듈러 에셋 포함
This commit is contained in:
23
Assets/BoZo_ModularAnimeCharacters/Scripts/OutfitBase.cs
Normal file
23
Assets/BoZo_ModularAnimeCharacters/Scripts/OutfitBase.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
|
||||
namespace Bozo.AnimeCharacters
|
||||
{
|
||||
public abstract class OutfitBase : MonoBehaviour
|
||||
{
|
||||
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
//material = GetComponentInChildren<Renderer>().material;
|
||||
}
|
||||
|
||||
public virtual void SetSwatch(int swatchIndex, bool linkedChange = false)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user