EngediKimHyeYoung / Unity

0 stars 0 forks source link

공복제하기 - Launcher.cs #5

Open EngediKimHyeYoung opened 2 years ago

EngediKimHyeYoung commented 2 years ago

using System.Collections; using System.Collections.Generic; using UnityEngine;

public class Launcher : MonoBehaviour { public GameObject ballPrefab; // Start is called before the first frame update void Start() {

}

// Update is called once per frame
void Update()
{
    if (Input.GetMouseButtonDown(1))
    {
        Instantiate(this.ballPrefab);
    }
}

}