Firstborn/Assets/Testing Cells/LipSync/Scripts/DeleteMe.cs
Schaken-Mods 5557c03691 Made lockpicking for doors
Finished making lockpicking for doors. Next I will make one for chests with a different type of lock, also increase skill points when successfully picked a lock.
2023-04-29 23:04:18 -05:00

24 lines
496 B
C#

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()
{
}
}
}