本文实例为大家分享了Unity3d如何通过射线使物体移动的具体代码,供大家参考,具体内容如下
实现:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class RayTest : MonoBehaviour {
//设置射线在Plane上的目标点target
private Vector3 target;
// Use this for initialization
void Start () {
//初始化目标点与自身的点重合
targ
1