mirror of
https://github.com/Steffo99/gravity-fusion.git
synced 2024-11-22 08:24:17 +00:00
15 lines
305 B
C#
15 lines
305 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class TempUpgradesToggler : MonoBehaviour
|
|
{
|
|
public GameObject upgrades;
|
|
|
|
void Update()
|
|
{
|
|
if(Input.GetKeyDown(KeyCode.P)) {
|
|
upgrades.SetActive(!upgrades.activeSelf);
|
|
}
|
|
}
|
|
}
|