Skip to content
Snippets Groups Projects
Select Git revision
  • e4a6fdd6e337636d586773562f1616f3b5a121ed
  • master default
  • patch-1
3 results

once-cs.md

Blame
  • Forked from KWARC / kwarc.info / www
    Source project has a limited visibility.
    ScrollClickedScript.cs NaN GiB
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    
    public class ScrollClickedScript: MonoBehaviour
    {
        public Scroll scroll;
        public GameObject DetailScreen;
    
        public void onClick() {
            this.DetailScreen.GetComponent<ScrollDetails>().setScroll(this.scroll);
        }
    }