Unity C#实例化"位置+ x,y,z"?

时间:2017-09-15 09:10:44

标签: c# unity5 unity2d

所以我有一个使用武器的角色,我现在将它设置为在我角色的位置上产生。我希望那个位置成为我的角色加上一点点(x轴)。我不知道如何做到这一点,并且无法在谷歌上找到答案。我是初学者所以请具体。这是我的代码:

public float speed = 2f;
Animator anim;
private Rigidbody2D rb2d;
public float jumpHeight = 20f;
public GameObject weapon;
private Vector2 playerPos;
public GameObject player;

private void Start()
{
    anim = GetComponent<Animator>();
    rb2d = GetComponent<Rigidbody2D>();
}
// Update is called once per frame
void Update () {

    playerPos = player.transform.position;

    if (Input.GetKey(KeyCode.D))
    {
        anim.SetInteger("State", 1);
        transform.Translate(new Vector2(1f * speed * Time.deltaTime, 0f));
    }

    if (Input.GetKeyUp(KeyCode.D))
    {
        anim.SetInteger("State", 3);
    }

    if (Input.GetKey(KeyCode.A))
    {
        anim.SetInteger("State", 2);
        transform.Translate(new Vector2(-1f * speed * Time.deltaTime, 0f));
    }

    if (Input.GetKeyUp(KeyCode.A))
    {
        anim.SetInteger("State", 4);
    }

    if (Input.GetKey(KeyCode.P))
    {
        rb2d.AddForce(Vector2.up * jumpHeight);
    }

    if (Input.GetKeyDown(KeyCode.O))
    {
        Instantiate(weapon, playerPos, Quaternion.Euler(0, 0, -40));
    }
}

1 个答案:

答案 0 :(得分:2)

在Unity中,Transform.positionVector3。您可以与Vector3运算符一起添加两个+

Vector3 result = myVectorA + myVectorB
// or
Vector3 result = new Vector3(5,6,7) + new Vector3(10,0,0) // result is (15,6,7)

要添加到playerPos的x值,您需要添加一个完整的Vector3,它具有必要的翻译,因为它的x值。

playerPos + new Vector3(100, 0, 0)

有关Unity矢量算术的详细信息,请访问:https://docs.unity3d.com/Manual/UnderstandingVectorArithmetic.html

这个关于Unity的答案解释了为什么你不能直接分配到playerPos.xhttp://answers.unity3d.com/questions/600421/how-to-change-xyz-values-in-a-vector3-properly-in.html