上传者: 38623366
|
上传时间: 2022-07-31 14:01:23
|
文件大小: 48KB
|
文件类型: PDF
本文实例为大家分享了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