5557c03691
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.
24 lines
496 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |