错误CS0619&;错误CS1061
本文关键字:错误 CS1061 CS0619 amp | 更新日期: 2023-09-27 18:20:56
我正在看一个教程,它似乎有效,但在我的情况下,我得到了以下错误:
错误CS0619:
UnityEngine.Component.renderer' is obsolete:
属性渲染器已被弃用。请改用GetComponent()。(UnityUpgradeable)'
和:
错误CS1061:键入
UnityEngine.Component' does not contain a definition for
material",但找不到扩展方法material' of type
UnityEngine.Component"(是否缺少using指令还是程序集引用?)。
这是脚本:
using UnityEngine;
using System.Collections;
public class ScrollScript : MonoBehaviour {
public float speed = 0;
void Update () {
renderer.material.mainTextureOffset = new Vector2 (Time.time * speed, 0f);
}
}
公共渲染器渲染;
void Start(){
render=这个。GetComponent"<"Renderer">"();
}
不要使用引号