Firstborn/Assets/Testing Cells/LipSync/Scripts/DeleteMe.cs

24 lines
496 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RPGCreationKit
{
public class DeleteMe : MonoBehaviour
{
[SerializeField] private AudioClip AC;
[SerializeField] private BodyData BD;
// Start is called before the first frame update
void Start()
{
BD.Voice.Talk(AC);
}
// Update is called once per frame
void Update()
{
}
}
}