小编Dav*_*her的帖子

我收到错误代码 CS0411

下面的错误信息是什么意思?

错误 CS0411
无法从用法推断方法“Component.GetComponent()”的类型参数。尝试显式指定类型参数

这是我的代码:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Mover : MonoBehaviour
{
    private Rigidbody rb;
    private float speed;

    void Start()
    {
        rb = GetComponent();
        rb.velocity = transform.forward * speed;
    }
}
Run Code Online (Sandbox Code Playgroud)

c# unity-game-engine

1
推荐指数
1
解决办法
3053
查看次数

标签 统计

c# ×1

unity-game-engine ×1