Mail.ruПочтаМой МирОдноклассникиВКонтактеИгрыЗнакомстваНовостиКалендарьОблакоЗаметкиВсе проекты

Как исправить ошибки в юнити?

makssem Ученик (162), на голосовании 9 месяцев назад
Не знаем как решить эту ошибку вот код:using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;

public class Damag : MonoBehaviour
{
public float health = 100;
public float times;
public float trigger;

void Update()
{


times * Time.deltaTime;


if (health <= 0){

SceneManager.LoadScene(SceneManager.GetActiveScene().level1);
}
}


void OnTriggerEnter(Collider other)
{
if (other.gameObject.CompareTag("player")) {

trigger = 1;
}
}

void OnTriggerEnter(Collider other)
{

trigger = 0;

}

void damage()
{
if (trigger == 1){

if (times > 2) {

health -= 15;
times = 0;
}
}
}
}
Голосование за лучший ответ
Rivvender Профи (737) 10 месяцев назад
times * Time.deltaTime;
Что ты здесь делаешь?
creakdowndeadly Мастер (1091) 10 месяцев назад
У тебя обычные ошибки.
Нужно поставить ";" там где это нужно.
Похожие вопросы