当前位置:网站首页>Unity Animator动画与状态机
Unity Animator动画与状态机
2022-07-25 05:46:00 【饿掉鱼】
首先创建一个Animator并拖拽赋给object

双击后会有这个界面.这里就是k动画的
右上角为目标帧数.上方为录制和播放
调整好帧数后开始录制
然后可以对物体进行移动缩放旋转了.unity会自动记录

然后进入状态机界面对animator逻辑进行调整
比如放了技能进入技能动画.死亡时进入死亡动画
Entry指定的是默认动画

制造关联.当动画结束,或者满足条件时,进入下个动画
比如这里,我设置了一个Back布尔值.B的speed是-1(倒放)
这样,当Back值为true时,就执行倒放动画(菜单栏的收缩)

点击关系线进行条件判断设置 直观地看到,当back值为true时动画流从a到b
如果要更改布尔值,在脚本中get animator并setbool(string BoolName,bool Bool)就OK了
边栏推荐
- 聊聊 Redis 是如何进行请求处理
- ABC 261.D - Flipping and Bonus ( DP )
- leetcode/ 前 n 个数字二进制中 1 的个数
- Arm PWN basic tutorial
- Flexible layout summary
- Programming hodgepodge (II)
- R language data The table package performs aggregation transforms of data packets and calculates the grouping interquartile range (IQR) of dataframe data
- (14)[驱动开发]配置环境 VS2019 + WDK10 写 xp驱动
- Analyzing the principle of DNS resolution in kubernetes cluster
- Big talk · book sharing | Haas Internet of things device cloud integrated development framework
猜你喜欢
随机推荐
Base64 (conversion between string and Base64 string)
(2022牛客多校)D-Link with Game Glitch(spfa)
Introduction summary of using unirx in unity
HTB-Beep
(15)[驱动开发]过写拷贝
ABC 261.D - Flipping and Bonus ( DP )
Amazoncaptcha 95%成功率绕过亚马逊IP验证码
50: Chapter 5: develop admin management service: 3: develop [query whether the admin user name already exists, interface]; (this interface can only be called when logging in; so we have written an int
(牛客多校二)G-Link with Monotonic Subsequence(构造题)
(14)[驱动开发]配置环境 VS2019 + WDK10 写 xp驱动
Microservice configuration center Nacos
剑指 Offer 54. 二叉搜索树的第k大节点
Equal proportion of R language test group: use the prop.test function to test whether the success proportion of the two groups is equal
C100: smallest hevc visual IOT MCU
ECS is exclusive to old users, and the new purchase of the remaining 10 instances is as low as 3.6% off
New discovery of ROS callback function
After Oracle user a deletes a table under user B's name, can user B recover the deleted table through the recycle bin?
出于数据安全考虑,荷兰教育部要求学校暂停使用 Chrome 浏览器
线性代数(三)
50 places are limited to open | with the news of oceanbase's annual press conference coming!









