Movetowards,Addforce,翻译没有工作原因?

时间:2017-11-24 06:52:34

标签: c# unity3d transform

我只想移动子弹(但它不起作用)并在立方体上测试(但代码也没有移动立方体)。

评论代码也没有移动游戏对象。

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

public class movetest : MonoBehaviour 
{
    //public GameObject cube;

    // Use this for initialization
    public GameObject testmovecube;
    public Rigidbody rb;
    void Start () {
        //testmovecube = this.GetComponent<GameObject>();
        //rb = testmovecube.GetComponent<Rigidbody>();
        move();
       // 
    }

    // Update is called once per frame
    void Update () {

    }

    private void move()
    {
        testmovecube.transform.position = 
    Vector3.MoveTowards(transform.position, new Vector3(226, 1, 226) , 2);
        //transform.Translate(Vector3.forward);
        //rb.AddForce(Vector3.forward);

    }
}

请感谢任何帮助。

0 个答案:

没有答案