Horje
rigidbody velocity c# unity Code Example
unity how to set rigidbody velocity
Vector3 velocity = new Vector3(10f/*x*/, 10f/*y*/, 10f/*z*/);
GetComponent<Rigidbody>().velocity = velocity;
rigidbody velocity c# unity
//for rigidbody2D
GetComponent<Rigidbody2D>().velocity =new Vector2(40,0);




Csharp

Related
C# function return datareader Code Example C# function return datareader Code Example
c# see if list contains any duplicates Code Example c# see if list contains any duplicates Code Example
c# find duplicate Code Example c# find duplicate Code Example
test how catch exception c# Code Example test how catch exception c# Code Example
unity input get axis Code Example unity input get axis Code Example

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