码迷,mamicode.com
首页 > 其他好文 > 详细

2D-关卡游戏2-动画录制

时间:2018-03-03 16:51:10      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:parent   game   null   tag   tran   oid   collision   nbsp   move   

1.动画录制

2

private void OnCollisionEnter2D(Collision2D other) {
        if(other.gameObject.tag=="MovePlatform"){
            transform.parent=other.transform;
        }
    }

        private void OnCollisionExit2D(Collision2D other) {
        if(other.gameObject.tag=="MovePlatform"){
            transform.parent=null;
        }
    }
3.选中起始点右键改变线性。

2D-关卡游戏2-动画录制

标签:parent   game   null   tag   tran   oid   collision   nbsp   move   

原文地址:https://www.cnblogs.com/xiaomao21/p/8496700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!