using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Test : MonoBehaviour
{
private bool isLightOn = true;
void Start()
{
}
void Update()
{
if (Input.GetKeyDown(KeyCode.E))
{
isLightOn = !isLightOn;
GetComponent().enabled = isLightOn;
}
}
не могу понять как сделать скрипт
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Test : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
if (Input.GetKeyDown(KeyCode.E))
{
GetComponent<Light>().enabled = false;
}
}
}
скрипт на выключение света на кнопку а как сделать так чтго бы на эту кнопку один раз нажал выключился свет второй раз нажал включился
только срочноооо