Added FinalIK

This commit is contained in:
2026-08-12 16:46:38 +03:00
parent 487e0d72ff
commit 1dc80339d4
1124 changed files with 768831 additions and 139 deletions
@@ -0,0 +1,30 @@
using UnityEngine;
using System.Collections;
namespace RootMotion.Demos {
/// <summary>
/// Going slow motion on user input
/// </summary>
public class SlowMo : MonoBehaviour {
public KeyCode[] keyCodes;
public bool mouse0;
public bool mouse1;
public float slowMoTimeScale = 0.3f;
void Update () {
Time.timeScale = IsSlowMotion()? slowMoTimeScale: 1f;
}
private bool IsSlowMotion() {
if (mouse0 && Input.GetMouseButton(0)) return true;
if (mouse1 && Input.GetMouseButton(1)) return true;
for (int i = 0; i < keyCodes.Length; i++) {
if (Input.GetKey(keyCodes[i])) return true;
}
return false;
}
}
}