A PROPER Initialization of Cheer Readers (#184)

* a PROPER initialization

* a PROPER initialization

* this again
This commit is contained in:
Jellirby
2022-12-13 19:38:59 -05:00
committed by GitHub
parent b68e9cd967
commit ab492fb8dd
22 changed files with 8230 additions and 18495 deletions

View File

@ -0,0 +1,28 @@
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()
{
}
}