Python 官方文档:入门教程 => 点击学习
1、如图模型1是已经做好的文件,模型2是还没动画效果的模型2、添加角色动画属性组件3、代码控制动画播using UnityEngine; using System.Collections; public class NewBehaviour
1、如图模型1是已经做好的文件,模型2是还没动画效果的模型
2、添加角色动画属性组件
3、代码控制动画播
using UnityEngine;
using System.Collections;
public class NewBehaviourScript : MonoBehaviour {
private Animation animation;//动画
// Use this for initialization
void Start () {
//取得游戏对象动画组件
animation = GetComponent<Animation>();
}
// Update is called once per frame
void Update () {
//播放行走动画
animation.Play ("Run");
//站立 play播放分别对应Animations中Element0和Element1中的动画名
//animation.Play ("Idle");
}
}
以上就是Unity 3D控制角色动画的基本操作教程,附上demo
下载地址:Http://www.kuaipan.cn/file/id_141868194330584496.htm?source=1
--结束END--
本文标题: Unity 3D Animation角色
本文链接: https://lsjlt.com/news/188092.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0