Unity - A计划(一年有效期) 扫二维码继续学习 二维码时效为半小时

(61评价)
价格: 2170.00元
零基础Unity5.2入门课程—进入Unity开发的奇幻世界:Roll A Ball通过代码控制移动
Romeo_lo39发起了问答2019-01-22
11
回复
282
浏览

我按照了视频敲代码的,但是小球却一直无法移动,不知道哪里出错了

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

public class Player : MonoBehaviour{

    private Rigidbody rd;

    public int force = 5;

	// Use this for initialization
	void Start (){
      rd = GetComponent<Rigidbody>();
    }
	
	// Update is called once per frame
	void Update (){
      float h = Input.GetAxis("Horizontal");
      float v = Input.GetAxis("Vertical");
      rd.AddForce( new Vector3(h,0,v) * force );
	}
}

 

所有回复
发表回复
你还没有登录,请先 登录或 注册!