forked from przemyslawzaworski/Unity3D-CG-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutline.cs
35 lines (33 loc) · 820 Bytes
/
outline.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class outline : MonoBehaviour
{
public GameObject[] game_object;
void Update ()
{
RaycastHit hit;
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
if ( Physics.Raycast (ray,out hit,100.0f))
{
for (int i=0;i<game_object.Length;i++)
{
if (hit.transform.gameObject.name==game_object[i].name)
{
game_object[i].GetComponent<Renderer>().material.SetFloat("_enable",1.0f);
}
else
{
game_object[i].GetComponent<Renderer>().material.SetFloat("_enable",0.0f);
}
}
}
else
{
for (int i=0;i<game_object.Length;i++)
{
game_object[i].GetComponent<Renderer>().material.SetFloat("_enable",0.0f);
}
}
}
}