mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-22 17:34:18 +00:00
15 lines
360 B
C#
15 lines
360 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class ToggleActiveWithKey : MonoBehaviour
|
|
{
|
|
public KeyCode toggleKey = KeyCode.F2;
|
|
public GameObject target;
|
|
|
|
void Update() {
|
|
if(Input.GetKeyDown(toggleKey)) {
|
|
target.gameObject.SetActive(!target.gameObject.activeSelf);
|
|
}
|
|
}
|
|
}
|