Change GameObject Position
- 在游戏里面新建一个游戏对象,比如一个正方形
- 然后新建一个脚本文件 C# Script,拖拽到这个游戏对象的 Inspector 窗口,成为该游戏对象的组件
- 打开该脚本
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
public Vector3 startPosition;
// 我们在 inspector 中可以直接修改 public 变量
// 这里我们设置一个初始位置变量
// Start is called before the first frame update