Horje
how to rotate object in unity only on one axis Code Example
how to rotate object in unity only on one axis
// If you want the obj to rotate on only one axis do this

// Create vector3
Vector3 target_position = new Vector3(transform.position.x,
                                                target.position.y,
                                                transform.position.z);
// give the target_position to transform.LookAt

transform.LookAt(target_position);
unity rotate around axis
transform.Rotate(axis, degrees);




Csharp

Related
how convert the string time stamp to date in laravel Code Example how convert the string time stamp to date in laravel Code Example
c# round number up Code Example c# round number up Code Example
linq where Code Example linq where Code Example
blazor onchange event not firing with inputselect Code Example blazor onchange event not firing with inputselect Code Example
if number negative c sharp Code Example if number negative c sharp Code Example

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