public static bool GetButtonUp(string buttonName);
if (Input.GetButtonUp(0))
Аргумент 1: не удается преобразовать из "int" в "string".
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Gunscript : MonoBehaviour
{
public GameObject bullet;
public GameObject button;
public Transform shotPoint;
public void Update()
{
if (Input.GetButtonUp("Fire1")) // Исправлено!
{
Instantiate(bullet, shotPoint.position, transform.rotation);
}
}
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Gunscript : MonoBehaviour
{
public GameObject bullet;
public GameObject button;
public Transform shotPoint;
public void Update()
{
if (Input.GetButtonUp(0))
{
Instantiate(bullet, shotPoint.position, transform.rotation);
}
}
}
Ошибки:
Серьезность Код Описание Проект Файл Строка Состояние подавления
Ошибка (активно) CS1503 Аргумент 1: не удается преобразовать из "int" в "string". Assembly-CSharp C:\Users\user\Downloads\My project\Assets\Scripts\Gun scripts\Gun script.cs 12