示例#1
0
 private IFormAnimationComponent GetAnimComponent()
 {
     if (_anim == null)
     {
         _anim = CreateAnimComponent();
         _anim.Initialize();
     }
     return(_anim);
 }
示例#2
0
 protected override void Awake()
 {
     base.Awake();
     _animationComponent = new FadeAnimationComponent(new TweenAnimParameters(_inputFieldPanel.gameObject));
     _animationComponent.Initialize();
 }