Example #1
0
    public void InsertTape(VHSTape tape)
    {
        tape.rewound = true;
        _currentTape = tape;

        _rewinding  = true;
        _tapeInside = true;

        _bubble.SetActive(false);
        Util.PlayAudio(_audioSource, _insertTape);
        _animator.Play("Rewinding");
    }
Example #2
0
 // Start is called before the first frame update
 void Start()
 {
     tape = FindObjectOfType <VHSTape>();
     //dialogueManager = FindObjectOfType<DialogueManager>();
 }
Example #3
0
 public void SetTape(VHSTape tape)
 {
     this.tape        = tape;
     tapeCover.sprite = tape.graphics;
 }