get gameobject in heirgraphy fgrom prefavb unity code example
Example 1: how to find gameobjects in unity
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour
{
public GameObject hand;
void Example()
{
hand = GameObject.Find("Hand");
hand = GameObject.Find("/Hand");
hand = GameObject.Find("/Monster/Arm/Hand");
hand = GameObject.Find("Monster/Arm/Hand");
}
}
Example 2: how to make an object move in unity
Vector3 input = new Vector3 (Input.GetAxis("Horizontal"), 0 , Input.GetAxis("Vertical");
Vector3 dir = input.normalized;
Vecotr3 vel = dir * speed * Time.deltaTime;
transform.Translate(vel);