Files
ihob/Assets/Scripts/VisualNovel/VNSpriteController.cs

24 lines
493 B
C#
Raw Normal View History

2026-02-21 17:04:05 -08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class VNSpriteController : MonoBehaviour {
[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()
{
}
}