Horje
unity get object position on screen Code Example
unity get object position on screen
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class FreeLaser : MonoBehaviour {
	
    public Transform myObject; //The transform of the object you want
    
    void Start();
    {
    	Debug.Log(myObject.position);
    }
}




Csharp

Related
google script get font color Code Example google script get font color Code Example
how to reset disk permission Code Example how to reset disk permission Code Example
c# float min value Code Example c# float min value Code Example
c# properties making string required Code Example c# properties making string required Code Example
c# class responsible for creating instances Code Example c# class responsible for creating instances Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8