how to do 3d graphics design for unity 3d code example
Example: slomotion in unity 3d
using UnityEngine;
using System.Collections;
public class SlowMotion : MonoBehaviour {
float currentAmount = 0f;
float maxAmount = 5f;
void Start () {
}
void Update () {
if(Input.GetKeyDown ("insert any key here")){
if(Time.timeScale == 1.0f)
Time.timeScale = 0.3f;
else
Time.timeScale = 1.0f;
Time.fixedDeltaTime = 0.02f * Time.timeScale;
}
if(Time.timeScale == 0.03f){
currentAmount += Time.deltaTime;
}
if(currentAmount > maxAmount){
currentAmount = 0f;
Time.timeScale = 1.0f;
}
}
}