using System.Collections; using System.Collections.Generic; using UnityEngine; public class kera1skript : MonoBehaviour { /* Pange naabriga pead kokku * Koostage pallide kukkumise mäng * Kasutaja peab alumist palli kukkuvate pallide eest ära liigutama * Loendage, mitu palli on pihta, mitu mööda läinud * * */ private void OnCollisionEnter(Collision collision) { this.GetComponent().material.color = Color.blue; } void Update () { if (Input.GetKeyDown(KeyCode.P)) { this.GetComponent().material.color = Color.red; } if (Input.GetKeyDown(KeyCode.R)) { this.GetComponent().material.color = Color.green; } } }