1. //
  2.  
  3. //SpringCollider for unity-chan!
  4.  
  5. //
  6.  
  7. //Original Script is here:
  8.  
  9. //ricopin / SpringCollider.cs
  10.  
  11. //Rocket Jump : http://rocketjump.skr.jp/unity3d/109/
  12.  
  13. //https://twitter.com/ricopin416
  14.  
  15. //
  16.  
  17. using UnityEngine;
  18.  
  19. using System.Collections;
  20.  
  21. namespace UnityChan
  22.  
  23. {
  24.  
  25. public class SpringCollider : MonoBehaviour
  26.  
  27. {
  28.  
  29. //半径
  30.  
  31. public float radius = 0.5f;
  32.  
  33. private void OnDrawGizmosSelected ()
  34.  
  35. {
  36.  
  37. Gizmos.color = Color.green;
  38.  
  39. Gizmos.DrawWireSphere (transform.position, radius);
  40.  
  41. }
  42.  
  43. }
  44.  
  45. }

SpringCollider

  1. //
  2.  
  3. //SpringBone.cs for unity-chan!
  4.  
  5. //
  6.  
  7. //Original Script is here:
  8.  
  9. //ricopin / SpringBone.cs
  10.  
  11. //Rocket Jump : http://rocketjump.skr.jp/unity3d/109/
  12.  
  13. //https://twitter.com/ricopin416
  14.  
  15. //
  16.  
  17. //Revised by N.Kobayashi 2014/06/20
  18.  
  19. //
  20.  
  21. using UnityEngine;
  22.  
  23. using System.Collections;
  24.  
  25. namespace UnityChan
  26.  
  27. {
  28.  
  29. public class SpringBone : MonoBehaviour
  30.  
  31. {
  32.  
  33. //次のボーン
  34.  
  35. public Transform child;
  36.  
  37. //ボーンの向き
  38.  
  39. public Vector3 boneAxis = new Vector3 (-1.0f, 0.0f, 0.0f);
  40.  
  41. public float radius = 0.05f;
  42.  
  43. //各SpringBoneに設定されているstiffnessForceとdragForceを使用するか?
  44.  
  45. public bool isUseEachBoneForceSettings = false;
  46.  
  47. //バネが戻る力
  48.  
  49. public float stiffnessForce = 0.01f;
  50.  
  51. //力の減衰力
  52.  
  53. public float dragForce = 0.4f;
  54.  
  55. public Vector3 springForce = new Vector3 (0.0f, -0.0001f, 0.0f);
  56.  
  57. public SpringCollider[] colliders;
  58.  
  59. public bool debug = true;
  60.  
  61. //Kobayashi:Thredshold Starting to activate activeRatio
  62.  
  63. public float threshold = 0.01f;
  64.  
  65. private float springLength;
  66.  
  67. private Quaternion localRotation;
  68.  
  69. private Transform trs;
  70.  
  71. private Vector3 currTipPos;
  72.  
  73. private Vector3 prevTipPos;
  74.  
  75. //Kobayashi
  76.  
  77. private Transform org;
  78.  
  79. //Kobayashi:Reference for "SpringManager" component with unitychan
  80.  
  81. private SpringManager managerRef;
  82.  
  83. private void Awake ()
  84.  
  85. {
  86.  
  87. trs = transform;
  88.  
  89. localRotation = transform.localRotation;
  90.  
  91. //Kobayashi:Reference for "SpringManager" component with unitychan
  92.  
  93. // GameObject.Find("unitychan_dynamic").GetComponent<SpringManager>();
  94.  
  95. managerRef = GetParentSpringManager (transform);
  96.  
  97. }
  98.  
  99. private SpringManager GetParentSpringManager (Transform t)
  100.  
  101. {
  102.  
  103. var springManager = t.GetComponent<SpringManager> ();
  104.  
  105. if (springManager != null)
  106.  
  107. return springManager;
  108.  
  109. if (t.parent != null) {
  110.  
  111. return GetParentSpringManager (t.parent);
  112.  
  113. }
  114.  
  115. return null;
  116.  
  117. }
  118.  
  119. private void Start ()
  120.  
  121. {
  122.  
  123. springLength = Vector3.Distance (trs.position, child.position);
  124.  
  125. currTipPos = child.position;
  126.  
  127. prevTipPos = child.position;
  128.  
  129. }
  130.  
  131. public void UpdateSpring ()
  132.  
  133. {
  134.  
  135. //Kobayashi
  136.  
  137. org = trs;
  138.  
  139. //回転をリセット
  140.  
  141. trs.localRotation = Quaternion.identity * localRotation;
  142.  
  143. float sqrDt = Time.deltaTime * Time.deltaTime;
  144.  
  145. //stiffness
  146.  
  147. Vector3 force = trs.rotation * (boneAxis * stiffnessForce) / sqrDt;
  148.  
  149. //drag
  150.  
  151. force += (prevTipPos - currTipPos) * dragForce / sqrDt;
  152.  
  153. force += springForce / sqrDt;
  154.  
  155. //前フレームと値が同じにならないように
  156.  
  157. Vector3 temp = currTipPos;
  158.  
  159. //verlet
  160.  
  161. currTipPos = (currTipPos - prevTipPos) + currTipPos + (force * sqrDt);
  162.  
  163. //長さを元に戻す
  164.  
  165. currTipPos = ((currTipPos - trs.position).normalized * springLength) + trs.position;
  166.  
  167. //衝突判定
  168.  
  169. for (int i = ; i < colliders.Length; i++) {
  170.  
  171. if (Vector3.Distance (currTipPos, colliders [i].transform.position) <= (radius + colliders [i].radius)) {
  172.  
  173. Vector3 normal = (currTipPos - colliders [i].transform.position).normalized;
  174.  
  175. currTipPos = colliders [i].transform.position + (normal * (radius + colliders [i].radius));
  176.  
  177. currTipPos = ((currTipPos - trs.position).normalized * springLength) + trs.position;
  178.  
  179. }
  180.  
  181. }
  182.  
  183. prevTipPos = temp;
  184.  
  185. //回転を適用;
  186.  
  187. Vector3 aimVector = trs.TransformDirection (boneAxis);
  188.  
  189. Quaternion aimRotation = Quaternion.FromToRotation (aimVector, currTipPos - trs.position);
  190.  
  191. //original
  192.  
  193. //trs.rotation = aimRotation * trs.rotation;
  194.  
  195. //Kobayahsi:Lerp with mixWeight
  196.  
  197. Quaternion secondaryRotation = aimRotation * trs.rotation;
  198.  
  199. trs.rotation = Quaternion.Lerp (org.rotation, secondaryRotation, managerRef.dynamicRatio);
  200.  
  201. }
  202.  
  203. private void OnDrawGizmos ()
  204.  
  205. {
  206.  
  207. if (debug) {
  208.  
  209. Gizmos.color = Color.yellow;
  210.  
  211. Gizmos.DrawWireSphere (currTipPos, radius);
  212.  
  213. }
  214.  
  215. }
  216.  
  217. }
  218.  
  219. }

SpringBone.cs

  1. //
  2.  
  3. //SpingManager.cs for unity-chan!
  4.  
  5. //
  6.  
  7. //Original Script is here:
  8.  
  9. //ricopin / SpingManager.cs
  10.  
  11. //Rocket Jump : http://rocketjump.skr.jp/unity3d/109/
  12.  
  13. //https://twitter.com/ricopin416
  14.  
  15. //
  16.  
  17. //Revised by N.Kobayashi 2014/06/24
  18.  
  19. // Y.Ebata
  20.  
  21. //
  22.  
  23. using UnityEngine;
  24.  
  25. using System.Collections;
  26.  
  27. namespace UnityChan
  28.  
  29. {
  30.  
  31. public class SpringManager : MonoBehaviour
  32.  
  33. {
  34.  
  35. //Kobayashi
  36.  
  37. // DynamicRatio is paramater for activated level of dynamic animation
  38.  
  39. public float dynamicRatio = 1.0f;
  40.  
  41. //Ebata
  42.  
  43. public float stiffnessForce;
  44.  
  45. public AnimationCurve stiffnessCurve;
  46.  
  47. public float dragForce;
  48.  
  49. public AnimationCurve dragCurve;
  50.  
  51. public SpringBone[] springBones;
  52.  
  53. void Start ()
  54.  
  55. {
  56.  
  57. UpdateParameters ();
  58.  
  59. }
  60.  
  61. void Update ()
  62.  
  63. {
  64.  
  65. #if UNITY_EDITOR
  66.  
  67. //Kobayashi
  68.  
  69. if(dynamicRatio >= 1.0f)
  70.  
  71. dynamicRatio = 1.0f;
  72.  
  73. else if(dynamicRatio <= 0.0f)
  74.  
  75. dynamicRatio = 0.0f;
  76.  
  77. //Ebata
  78.  
  79. UpdateParameters();
  80.  
  81. #endif
  82.  
  83. }
  84.  
  85. private void LateUpdate ()
  86.  
  87. {
  88.  
  89. //Kobayashi
  90.  
  91. if (dynamicRatio != 0.0f) {
  92.  
  93. for (int i = ; i < springBones.Length; i++) {
  94.  
  95. if (dynamicRatio > springBones [i].threshold) {
  96.  
  97. springBones [i].UpdateSpring ();
  98.  
  99. }
  100.  
  101. }
  102.  
  103. }
  104.  
  105. }
  106.  
  107. private void UpdateParameters ()
  108.  
  109. {
  110.  
  111. UpdateParameter ("stiffnessForce", stiffnessForce, stiffnessCurve);
  112.  
  113. UpdateParameter ("dragForce", dragForce, dragCurve);
  114.  
  115. }
  116.  
  117. private void UpdateParameter (string fieldName, float baseValue, AnimationCurve curve)
  118.  
  119. {
  120.  
  121. var start = curve.keys [].time;
  122.  
  123. var end = curve.keys [curve.length - ].time;
  124.  
  125. //var step = (end - start) / (springBones.Length - 1);
  126.  
  127. var prop = springBones [].GetType ().GetField (fieldName, System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.Public);
  128.  
  129. for (int i = ; i < springBones.Length; i++) {
  130.  
  131. //Kobayashi
  132.  
  133. if (!springBones [i].isUseEachBoneForceSettings) {
  134.  
  135. var scale = curve.Evaluate (start + (end - start) * i / (springBones.Length - ));
  136.  
  137. prop.SetValue (springBones [i], baseValue * scale);
  138.  
  139. }
  140.  
  141. }
  142.  
  143. }
  144.  
  145. }
  146.  
  147. }

SpingManager.cs

unitychan-crs 头发随动脚本的更多相关文章

  1. Unity 头发随动效果

    目标 实现角色的衣袖.头发.裙摆.披风.尾巴等,在角色运动时,可以产生随动的效果.类似王者荣耀角色展示界面. 准备 源码出出处:https://github.com/unity3d-jp/unityc ...

  2. linux-启动脚本-souce与sh

    source:        在当前shell程序中执行,  因此当前shell程序中的变量和环境变量,均可见.   执行的脚本,能更新到当前shell程序. sh:            开启一个新 ...

  3. Seaweedfs-启动脚本

    #!/bin/bash if [ ! -e /sunlight/shell/main.sh ];then echo " [ Error ] file /sunlight/shell/main ...

  4. Tomcat8-启动脚本分析

    1. Tomcat也是一个java程序 最终的入口启动文件:org.apache.catalina.startup.Bootstrap 最后一条命令: start "Tomcat" ...

  5. NGUI学习笔记(五):缓动

    在Unity3D中可以使用自带的Animation制作任意形式的动画,不过我们这篇笔记主要是学习和使用NGUI提供的Tween动画.NGUI提供的Tween库功能较为简单,主要是用来实现NGUI自身需 ...

  6. Linux 设备模型浅析之 uevent 篇(2)

    Linux 设备模型浅析之 uevent 篇 本文属本人原创,欢迎转载,转载请注明出处.由于个人的见识和能力有限,不可能面 面俱到,也可能存在谬误,敬请网友指出,本人的邮箱是 yzq.seen@gma ...

  7. 关于Redis的知识汇总[转]

    1. Overview 1.1 资料 <The Little Redis Book> ,最好的入门小册子,可以先于一切文档之前看,免费. 作者Antirez的博客,Antirez维护的Re ...

  8. android udev

    http://www.freesoftwaremagazine.com/articles/drivers_linux http://blog.csdn.net/jianchi88/article/de ...

  9. mysql报错排查总结

    mysql报错: [root@zabbix ~]# mysql ERROR 2002 (HY000): Can't connect to local MySQL server through sock ...

随机推荐

  1. js怎么将光标移动特定的位置:

    第一种方法: a 标签的锚: 将a标签的herf='#element_id_name'  即可 <a href="#comment_content" class=" ...

  2. ubuntu下make无法安装的问题

    发布时间:2015-10-30 10:51:30来源:linux网站作者:_莫欺少年穷 在帮同学服务器安装环境过程中,发现,make 命令不能使用,提示: The program 'make' is ...

  3. poj 3617输出格式问题

    注意是说的80个字母一行....

  4. html div + css 下划线

    这里通过边框属性的虚线边框border控制虚线.以下设置的css 高度(css height)和css 宽度(css width)为350像素是为了便于观看演示 其它意思.一.四边为虚线边框borde ...

  5. Linux嵌入式 -- 内核 - proc文件系统

    1. 什么是proc文件系统? 实例:通过 /proc/meminfo,查询当前内存使用情况. 结论:proc文件系统是一种在用户态检查内核状态的机制. 2.Proc文件分类 特点  每个文件都规定了 ...

  6. 虚拟机CentOS6.5网络配置

    不得不说  6.5比7.0麻烦了许多.. 编辑ifcfg配置文件 vi /etc/sysconfig/network-script/ifcfg-eth0 内容如下 DEVICE=eth0 HWADDR ...

  7. 国内的Git比GitHub快

    GitHub的速度简直受不了! 被微软收购之后就堕落了! 用Gitee也挺好的,学习用吧!

  8. hibernate学习(2)

    1 实体类编写规则 2 hibernate主键生成策略 3实体类操作 (1)crud操作 (2)实体对象状态 4 hibernate的一级缓存 5 hibernate事务操作 (1)事务代码规则写法 ...

  9. wpf 界面平级之间设置上下顺序关系(ZIndex)

    只能用于平级之间设置上下顺序 this.grid1.SetValue(Grid.ZIndexProperty, 9999);                    Panel.SetZIndex(th ...

  10. iTunes 12恢复.ipsw固件

    恢复.ipsw步骤: 1. 下载好与移动设备对应的.ipsw固件(zip文件可以解压出来). 2. 将移动设备连接到安装有iTunes的电脑,解锁并信任这台电脑 3. 启动iTunes,选择这个移动设 ...