第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

camera類型不是gameobject.Camera嗎

//SceneScript

using?UnityEngine;
using?System.Collections;

public?class?SceneScript?:?MonoBehaviour?{
	public?GameObject?Player;
	public?GameObject?camera;
	//?Use?this?for?initialization
	void?Start?()?{
		camera?=?this.gameObject;
	}
	
	//?Update?is?called?once?per?frame
	void?Update?()?{
	
	}
	void?LateUpdate()
	{
		if?(Player?!=?null)?{
			camera.transform.LookAt(Player.transform.position);
		}
	}
}

//test
using?UnityEngine;
using?System.Collections;

public?class?test?:?MonoBehaviour?{
	public?int?walkspeed;
	//?Use?this?for?initialization
	void?Start?()?{
		GameObject.Find("Main?Camera").GetComponent<SceneScript>?().Player?=?this.gameObject;
	}

	
	//?Update?is?called?once?per?frame
	void?Update?()?{
		forward?();
	}

	void?forward?()
	{
		transform.position?=?transform.position?+?walkspeed?*?transform.forward*Time.deltaTime;
		return;
		throw?new?System.NotImplementedException?();
	}
}

正在回答

2 回答

Camrea是GameObject上的一個(gè)組件,就是Component,不是一個(gè)GameObject

0 回復(fù) 有任何疑惑可以回復(fù)我~

是的。Camera是GameObject.Camera

0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消
Unity3D快速入門(mén)
  • 參與學(xué)習(xí)       146067    人
  • 解答問(wèn)題       379    個(gè)

本課程為Unity 3D入門(mén)教程,快速學(xué)會(huì)用Unity開(kāi)發(fā)游戲

進(jìn)入課程

camera類型不是gameobject.Camera嗎

我要回答 關(guān)注問(wèn)題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)