[Unity][AssetBundle][Animator]打包AnimationController并读取AnimationController

这篇博客介绍了如何将Unity的AnimationController打包到AssetBundle中,并在新项目中通过AssetBundlesBrowser进行加载。内容包括选择并设置AnimationController的AB包名称,创建新项目并添加Sprite及Animator组件,以及在运行时动态替换AnimatorController。
摘要由CSDN通过智能技术生成

对已有的AnimationController进行AB打包。

在Project视图选中要打包的AnimationController,选中后在Inspector视图最下方设置其所属AB包的名称。

用AssetBundlesBrowser进行打包。

 

新建新项目,空场景,

Hierarchy视图,鼠标右键 2D Object-Sprite

对这个新建的 Sprite添加一个默认的组件Animator。

挂载该脚本到一个物体上,运行后可以看到 AnimatorController已经被替换。

如果这个AnimatorController正常,可以看到从AB包中替换掉的图片动画。

using UnityEngine;
public class testABAnima : MonoBehaviour
{
    public AssetBundle ab;
    public RuntimeAnimatorController animator;
    public SpriteRenderer sp;
    public Animator sp_animator;
    // Start is called before the first frame update
    void Start()
    {
        ab = AssetBundle.LoadFromFile("E:/AB/Android/testanim");
        animator = ab.LoadAsset<RuntimeAnimatorController>("
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值