C# Unity Bird Script: Fix Missing Closing Brace Error (CS1513)
There seems to be an error in the code at line 28. The error message "error CS1513: } expected" suggests that a closing brace is missing at that line. To fix this error, you need to add a closing brace "}" at the end of the code block. Here's the corrected code:
using UnityEngine;
public class Bird : MonoBehaviour
{
public float jumpForce = 5f;
private Rigidbody2D rb;
void Start()
{
rb = GetComponent<Rigidbody2D>();
}
void Update()
{
if (Input.GetKeyDown(KeyCode.Space))
{
Jump();
}
}
void Jump()
{
rb.velocity = Vector2.up * jumpForce;
}
}
原文地址: https://www.cveoy.top/t/topic/pPkh 著作权归作者所有。请勿转载和采集!