Horje
unity rotate towards Code Example
how to change rotate with script unity
var rotationVector = transform.rotation.eulerAngles;
rotationVector.z = 0;  //this number is the degree of rotation around Z Axis
transform.rotation = Quaternion.Euler(rotationVector);
//if you put this in a coroutine and yielding for some amount of time 
//you can have something like a rotating loading icon
unity rotate towards
Quaternion.RotateTowards(Quaternion from, Quaternion to, float maxDegreesDelta);
unity rotate towards

public Transform target; 
public float rotSpeed;  

void Update()
{  
    // erase any position difference in the Z axis
    // direction will be a flat vector in the global XY plane without depth information
    Vector2 targetDirection = target.position - transform.position;

    // Now use Lerp as you did
    transform.right = Vector3.Lerp(transform.right, targetDirection, rotationSpeed * Time.deltaTime);
}





Csharp

Related
c# return two variables of different types Code Example c# return two variables of different types Code Example
get length of enum values Code Example get length of enum values Code Example
Get Index position of an element in a list in c# Code Example Get Index position of an element in a list in c# Code Example
mvc 5 dropdownlist Code Example mvc 5 dropdownlist Code Example
how to type to console in unity Code Example how to type to console in unity Code Example

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