Select Git revision
Forked from
KWARC / kwarc.info / www
Source project has a limited visibility.
-
Michael Kohlhase authoredMichael Kohlhase authored
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);
}
}