当前位置:   article > 正文

Unity热更新_Lua中使用DOTween插件_dg.tweening.ease

dg.tweening.ease

 

要想在Lua中使用DOTween插件,必须把在 Lua中会使用到的DOTween类型经过下面处理,其实就是增加这么一个类型就行,如果不这样做,则在lua中调用到DOTween Api的时候会出错:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection;
  5. using UnityEngine;
  6. using UnityEngine.Events;
  7. using UnityEngine.UI;
  8. using XLua;
  9. /// <summary>
  10. /// xlua自定义导出
  11. /// </summary>
  12. public static class XLuaCustomExport
  13. {
  14. /// <summary>
  15. /// dotween的扩展方法在lua中调用
  16. /// </summary>
  17. [LuaCallCSharp]
  18. [ReflectionUse]
  19. public static List<Type> dotween_lua_call_cs_list = new List<Type>()
  20. {
  21. typeof(DG.Tweening.AutoPlay),
  22. typeof(DG.Tweening.AxisConstraint),
  23. typeof(DG.Tweening.Ease),
  24. typeof(DG.Tweening.LogBehaviour),
  25. typeof(DG.Tweening.LoopType),
  26. typeof(DG.Tweening.PathMode),
  27. typeof(DG.Tweening.PathType),
  28. typeof(DG.Tweening.RotateMode),
  29. typeof(DG.Tweening.ScrambleMode),
  30. typeof(DG.Tweening.TweenType),
  31. typeof(DG.Tweening.UpdateType),
  32. typeof(DG.Tweening.DOTween),
  33. typeof(DG.Tweening.DOVirtual),
  34. typeof(DG.Tweening.EaseFactory),
  35. typeof(DG.Tweening.Tweener),
  36. typeof(DG.Tweening.Tween),
  37. typeof(DG.Tweening.Sequence),
  38. typeof(DG.Tweening.TweenParams),
  39. typeof(DG.Tweening.Core.ABSSequentiable),
  40. typeof(DG.Tweening.Core.TweenerCore<Vector3, Vector3, DG.Tweening.Plugins.Options.VectorOptions>),
  41. typeof(DG.Tweening.TweenCallback),
  42. typeof(DG.Tweening.TweenExtensions),
  43. typeof(DG.Tweening.TweenSettingsExtensions),
  44. typeof(DG.Tweening.ShortcutExtensions),
  45. typeof(DG.Tweening.ShortcutExtensions43),
  46. typeof(DG.Tweening.ShortcutExtensions46),
  47. typeof(DG.Tweening.ShortcutExtensions50),
  48. //dotween pro 的功能
  49. typeof(DG.Tweening.DOTweenPath),
  50. typeof(DG.Tweening.DOTweenVisualManager),
  51. };
  52. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/125929
推荐阅读
相关标签
  

闽ICP备14008679号