LaserPointer base

This commit is contained in:
ViktorLjung
2016-05-23 22:49:40 +02:00
parent 3ed120f4a3
commit 96acdc206b
2 changed files with 32 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using UnityEngine;
using System.Collections;
public class LaserPointer : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
Vector3 GetIntersection(){
Vector3 position = new Vector3(0, 0, 0);
return position;
}
}