25 lines
537 B
C#
25 lines
537 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
|
||
|
|
public class VNSpriteController : MonoBehaviour {
|
||
|
|
[SerializeField] public Image hairBack;
|
||
|
|
[SerializeField] public Image body;
|
||
|
|
[SerializeField] public Image expression;
|
||
|
|
[SerializeField] public Image hair;
|
||
|
|
[SerializeField] public Image effect;
|
||
|
|
|
||
|
|
// Start is called before the first frame update
|
||
|
|
void Start()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
// Update is called once per frame
|
||
|
|
void Update()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|