gpt4 book ai didi

c# - 无法将类型 int' 隐式转换为 unityengine.vector3'

转载 作者:太空宇宙 更新时间:2023-11-03 21:09:10 25 4
gpt4 key购买 nike

嗨,我是 unity 的新手,所以这是我的代码:

using UnityEngine;
using System.Collections;

public class NewBehaviourScript : MonoBehaviour {

// Use this for initialization
void Start () {

}

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

var pos = transform.position;
pos.x += 1;
transform.position = pos;
string ss = "hellow";

if(pos>100){
print (ss);
}
}
}

但在 if 条件行中给我这个错误:无法将类型 int 隐式转换为 unityengine.vector3'

最佳答案

transform.position 是 Vector3 类型。你应该在 if 条件下执行 pos.x > 100 而不是 pos > 100。

关于c# - 无法将类型 int' 隐式转换为 unityengine.vector3',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38866826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com