mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-11 04:05:11 +00:00
29 lines
542 B
C#
29 lines
542 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class RvlCharacter : MonoBehaviour
|
||
|
{
|
||
|
[Header("Objects")]
|
||
|
public GameObject BaseModel;
|
||
|
public Animator BaseAnim;
|
||
|
|
||
|
public int row;
|
||
|
public int col;
|
||
|
|
||
|
private bool firstCue = true;
|
||
|
private bool bookFront = false;
|
||
|
|
||
|
// Start is called before the first frame update
|
||
|
void Awake()
|
||
|
{
|
||
|
BaseAnim = BaseModel.GetComponent<Animator>();
|
||
|
}
|
||
|
|
||
|
// Update is called once per frame
|
||
|
void Update()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|