资源大湿 发表于 2012-11-25 14:25

TouchAnimation触摸动画源码

var hit : RaycastHit;

function Update () {

// Use Raycast to pick objects that have mesh colliders attached.
var ray = Camera.main.ScreenPointToRay (Input.mousePosition);

if (Input.GetMouseButtonDown (0))//Returns true during the frame the user touches the object
{
    if (Physics.Raycast (ray, hit, 100))
    {
      animation.Play("forward");
    }
}

if (Input.GetMouseButtonUp (0))//Returns true during the frame the user deselects the object
{
    if (Physics.Raycast (ray, hit, 100))
    {
      animation.Play("backward");
    }
}

else {
}

}


utk 发表于 2013-2-4 13:37

wwoww ! willy try it !

天道无亲 发表于 2013-2-5 21:30

好东西 看看

国人原创动画 发表于 2013-5-23 10:46

{:5_404:}{:5_404:}{:5_404:}{:5_404:}{:5_404:}

blaze99yan 发表于 2013-6-10 15:06


不错 不错 不错{:soso__3922851084632044791_6:}

fhk20032003 发表于 2013-6-10 16:33

大家顶起啊 新手感谢了

baobaoxiaoxuan 发表于 2013-6-17 16:56

感谢分享啊

output 发表于 2014-4-1 08:49

thank you{:5_408:}{:5_376:}{:5_430:}

嵐淵瑟 发表于 2014-10-7 10:07


感谢楼主的无私分享!{:soso__11402694654016840197_7:}

lizheng6108 发表于 2016-12-2 09:40

感谢分享                     谢谢
页: [1] 2 3 4
查看完整版本: TouchAnimation触摸动画源码