unitychan-crs 头发随动脚本
- //
- //SpringCollider for unity-chan!
- //
- //Original Script is here:
- //ricopin / SpringCollider.cs
- //Rocket Jump : http://rocketjump.skr.jp/unity3d/109/
- //https://twitter.com/ricopin416
- //
- using UnityEngine;
- using System.Collections;
- namespace UnityChan
- {
- public class SpringCollider : MonoBehaviour
- {
- //半径
- public float radius = 0.5f;
- private void OnDrawGizmosSelected ()
- {
- Gizmos.color = Color.green;
- Gizmos.DrawWireSphere (transform.position, radius);
- }
- }
- }
SpringCollider
- //
- //SpringBone.cs for unity-chan!
- //
- //Original Script is here:
- //ricopin / SpringBone.cs
- //Rocket Jump : http://rocketjump.skr.jp/unity3d/109/
- //https://twitter.com/ricopin416
- //
- //Revised by N.Kobayashi 2014/06/20
- //
- using UnityEngine;
- using System.Collections;
- namespace UnityChan
- {
- public class SpringBone : MonoBehaviour
- {
- //次のボーン
- public Transform child;
- //ボーンの向き
- public Vector3 boneAxis = new Vector3 (-1.0f, 0.0f, 0.0f);
- public float radius = 0.05f;
- //各SpringBoneに設定されているstiffnessForceとdragForceを使用するか?
- public bool isUseEachBoneForceSettings = false;
- //バネが戻る力
- public float stiffnessForce = 0.01f;
- //力の減衰力
- public float dragForce = 0.4f;
- public Vector3 springForce = new Vector3 (0.0f, -0.0001f, 0.0f);
- public SpringCollider[] colliders;
- public bool debug = true;
- //Kobayashi:Thredshold Starting to activate activeRatio
- public float threshold = 0.01f;
- private float springLength;
- private Quaternion localRotation;
- private Transform trs;
- private Vector3 currTipPos;
- private Vector3 prevTipPos;
- //Kobayashi
- private Transform org;
- //Kobayashi:Reference for "SpringManager" component with unitychan
- private SpringManager managerRef;
- private void Awake ()
- {
- trs = transform;
- localRotation = transform.localRotation;
- //Kobayashi:Reference for "SpringManager" component with unitychan
- // GameObject.Find("unitychan_dynamic").GetComponent<SpringManager>();
- managerRef = GetParentSpringManager (transform);
- }
- private SpringManager GetParentSpringManager (Transform t)
- {
- var springManager = t.GetComponent<SpringManager> ();
- if (springManager != null)
- return springManager;
- if (t.parent != null) {
- return GetParentSpringManager (t.parent);
- }
- return null;
- }
- private void Start ()
- {
- springLength = Vector3.Distance (trs.position, child.position);
- currTipPos = child.position;
- prevTipPos = child.position;
- }
- public void UpdateSpring ()
- {
- //Kobayashi
- org = trs;
- //回転をリセット
- trs.localRotation = Quaternion.identity * localRotation;
- float sqrDt = Time.deltaTime * Time.deltaTime;
- //stiffness
- Vector3 force = trs.rotation * (boneAxis * stiffnessForce) / sqrDt;
- //drag
- force += (prevTipPos - currTipPos) * dragForce / sqrDt;
- force += springForce / sqrDt;
- //前フレームと値が同じにならないように
- Vector3 temp = currTipPos;
- //verlet
- currTipPos = (currTipPos - prevTipPos) + currTipPos + (force * sqrDt);
- //長さを元に戻す
- currTipPos = ((currTipPos - trs.position).normalized * springLength) + trs.position;
- //衝突判定
- for (int i = ; i < colliders.Length; i++) {
- if (Vector3.Distance (currTipPos, colliders [i].transform.position) <= (radius + colliders [i].radius)) {
- Vector3 normal = (currTipPos - colliders [i].transform.position).normalized;
- currTipPos = colliders [i].transform.position + (normal * (radius + colliders [i].radius));
- currTipPos = ((currTipPos - trs.position).normalized * springLength) + trs.position;
- }
- }
- prevTipPos = temp;
- //回転を適用;
- Vector3 aimVector = trs.TransformDirection (boneAxis);
- Quaternion aimRotation = Quaternion.FromToRotation (aimVector, currTipPos - trs.position);
- //original
- //trs.rotation = aimRotation * trs.rotation;
- //Kobayahsi:Lerp with mixWeight
- Quaternion secondaryRotation = aimRotation * trs.rotation;
- trs.rotation = Quaternion.Lerp (org.rotation, secondaryRotation, managerRef.dynamicRatio);
- }
- private void OnDrawGizmos ()
- {
- if (debug) {
- Gizmos.color = Color.yellow;
- Gizmos.DrawWireSphere (currTipPos, radius);
- }
- }
- }
- }
SpringBone.cs
- //
- //SpingManager.cs for unity-chan!
- //
- //Original Script is here:
- //ricopin / SpingManager.cs
- //Rocket Jump : http://rocketjump.skr.jp/unity3d/109/
- //https://twitter.com/ricopin416
- //
- //Revised by N.Kobayashi 2014/06/24
- // Y.Ebata
- //
- using UnityEngine;
- using System.Collections;
- namespace UnityChan
- {
- public class SpringManager : MonoBehaviour
- {
- //Kobayashi
- // DynamicRatio is paramater for activated level of dynamic animation
- public float dynamicRatio = 1.0f;
- //Ebata
- public float stiffnessForce;
- public AnimationCurve stiffnessCurve;
- public float dragForce;
- public AnimationCurve dragCurve;
- public SpringBone[] springBones;
- void Start ()
- {
- UpdateParameters ();
- }
- void Update ()
- {
- #if UNITY_EDITOR
- //Kobayashi
- if(dynamicRatio >= 1.0f)
- dynamicRatio = 1.0f;
- else if(dynamicRatio <= 0.0f)
- dynamicRatio = 0.0f;
- //Ebata
- UpdateParameters();
- #endif
- }
- private void LateUpdate ()
- {
- //Kobayashi
- if (dynamicRatio != 0.0f) {
- for (int i = ; i < springBones.Length; i++) {
- if (dynamicRatio > springBones [i].threshold) {
- springBones [i].UpdateSpring ();
- }
- }
- }
- }
- private void UpdateParameters ()
- {
- UpdateParameter ("stiffnessForce", stiffnessForce, stiffnessCurve);
- UpdateParameter ("dragForce", dragForce, dragCurve);
- }
- private void UpdateParameter (string fieldName, float baseValue, AnimationCurve curve)
- {
- var start = curve.keys [].time;
- var end = curve.keys [curve.length - ].time;
- //var step = (end - start) / (springBones.Length - 1);
- var prop = springBones [].GetType ().GetField (fieldName, System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.Public);
- for (int i = ; i < springBones.Length; i++) {
- //Kobayashi
- if (!springBones [i].isUseEachBoneForceSettings) {
- var scale = curve.Evaluate (start + (end - start) * i / (springBones.Length - ));
- prop.SetValue (springBones [i], baseValue * scale);
- }
- }
- }
- }
- }
SpingManager.cs
unitychan-crs 头发随动脚本的更多相关文章
- Unity 头发随动效果
目标 实现角色的衣袖.头发.裙摆.披风.尾巴等,在角色运动时,可以产生随动的效果.类似王者荣耀角色展示界面. 准备 源码出出处:https://github.com/unity3d-jp/unityc ...
- linux-启动脚本-souce与sh
source: 在当前shell程序中执行, 因此当前shell程序中的变量和环境变量,均可见. 执行的脚本,能更新到当前shell程序. sh: 开启一个新 ...
- Seaweedfs-启动脚本
#!/bin/bash if [ ! -e /sunlight/shell/main.sh ];then echo " [ Error ] file /sunlight/shell/main ...
- Tomcat8-启动脚本分析
1. Tomcat也是一个java程序 最终的入口启动文件:org.apache.catalina.startup.Bootstrap 最后一条命令: start "Tomcat" ...
- NGUI学习笔记(五):缓动
在Unity3D中可以使用自带的Animation制作任意形式的动画,不过我们这篇笔记主要是学习和使用NGUI提供的Tween动画.NGUI提供的Tween库功能较为简单,主要是用来实现NGUI自身需 ...
- Linux 设备模型浅析之 uevent 篇(2)
Linux 设备模型浅析之 uevent 篇 本文属本人原创,欢迎转载,转载请注明出处.由于个人的见识和能力有限,不可能面 面俱到,也可能存在谬误,敬请网友指出,本人的邮箱是 yzq.seen@gma ...
- 关于Redis的知识汇总[转]
1. Overview 1.1 资料 <The Little Redis Book> ,最好的入门小册子,可以先于一切文档之前看,免费. 作者Antirez的博客,Antirez维护的Re ...
- android udev
http://www.freesoftwaremagazine.com/articles/drivers_linux http://blog.csdn.net/jianchi88/article/de ...
- mysql报错排查总结
mysql报错: [root@zabbix ~]# mysql ERROR 2002 (HY000): Can't connect to local MySQL server through sock ...
随机推荐
- js怎么将光标移动特定的位置:
第一种方法: a 标签的锚: 将a标签的herf='#element_id_name' 即可 <a href="#comment_content" class=" ...
- ubuntu下make无法安装的问题
发布时间:2015-10-30 10:51:30来源:linux网站作者:_莫欺少年穷 在帮同学服务器安装环境过程中,发现,make 命令不能使用,提示: The program 'make' is ...
- poj 3617输出格式问题
注意是说的80个字母一行....
- html div + css 下划线
这里通过边框属性的虚线边框border控制虚线.以下设置的css 高度(css height)和css 宽度(css width)为350像素是为了便于观看演示 其它意思.一.四边为虚线边框borde ...
- Linux嵌入式 -- 内核 - proc文件系统
1. 什么是proc文件系统? 实例:通过 /proc/meminfo,查询当前内存使用情况. 结论:proc文件系统是一种在用户态检查内核状态的机制. 2.Proc文件分类 特点 每个文件都规定了 ...
- 虚拟机CentOS6.5网络配置
不得不说 6.5比7.0麻烦了许多.. 编辑ifcfg配置文件 vi /etc/sysconfig/network-script/ifcfg-eth0 内容如下 DEVICE=eth0 HWADDR ...
- 国内的Git比GitHub快
GitHub的速度简直受不了! 被微软收购之后就堕落了! 用Gitee也挺好的,学习用吧!
- hibernate学习(2)
1 实体类编写规则 2 hibernate主键生成策略 3实体类操作 (1)crud操作 (2)实体对象状态 4 hibernate的一级缓存 5 hibernate事务操作 (1)事务代码规则写法 ...
- wpf 界面平级之间设置上下顺序关系(ZIndex)
只能用于平级之间设置上下顺序 this.grid1.SetValue(Grid.ZIndexProperty, 9999); Panel.SetZIndex(th ...
- iTunes 12恢复.ipsw固件
恢复.ipsw步骤: 1. 下载好与移动设备对应的.ipsw固件(zip文件可以解压出来). 2. 将移动设备连接到安装有iTunes的电脑,解锁并信任这台电脑 3. 启动iTunes,选择这个移动设 ...