This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
project-undercover/Project Undercover/Assets/Plugins/Photon Unity Networking/UtilityScripts/PointedAtGameObjectInfo.cs

20 lines
612 B
C#
Raw Normal View History

using UnityEngine;
using System.Collections;
[RequireComponent(typeof(InputToEvent))]
public class PointedAtGameObjectInfo : MonoBehaviour
{
void OnGUI()
{
if (InputToEvent.goPointedAt != null)
{
PhotonView pv = InputToEvent.goPointedAt.GetPhotonView();
if (pv != null)
{
GUI.Label(new Rect(Input.mousePosition.x + 5, Screen.height - Input.mousePosition.y - 15, 300, 30), string.Format("ViewID {0} {1}{2}", pv.viewID, (pv.isSceneView) ? "scene " : "", (pv.isMine) ? "mine" : "owner: " + pv.ownerId));
}
}
}
}