Horje
how to pause your game unity Code Example
how to pause your game unity
using UnityEngine;

void Pause()
{
	Time.timeScale = 0;
}

void Unpause()
{
    Time.timeScale = 1;
}
how to make a pause feautre in unity
if(Pause){
	Time.timeScale = 0;
}
else{
	Time.timeScale = 1;
}
how to pause physics in unity c#
    Physics.autoSimulation = false;




Csharp

Related
hello world program in c# Code Example hello world program in c# Code Example
hello world in c# Code Example hello world in c# Code Example
how to make a hello world program in c# Code Example how to make a hello world program in c# Code Example
unity get number of child objects Code Example unity get number of child objects Code Example
c# delete file if exists Code Example c# delete file if exists Code Example

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