コード例 #1
0
        public void Play(TweenElement element, int count, Action endAction)
        {
            if (isPlaying)
            {
                return;
            }
            if (count <= 0)
            {
                return;
            }
            if (element.duration <= 0f)
            {
                return;
            }

            playCount   = 0;
            targetCount = count;
            preData     = new PreviousData(GetAlpha(element), transform.localScale, transform.position, transform.rotation);
            StartCoroutine(CoPlayTween(element, endAction));
        }
コード例 #2
0
        /// <summary>
        /// TweenPlayer 컴포넌트를 가져와 횟수만큼 재생합니다.
        /// 컴포넌트가 없었다면 생성하여 재생 후 제거합니다.
        /// </summary>
        public static TweenPlayer SetTween(GameObject obj, TweenElement tweenElement, int count, System.Action endAction = null)
        {
            var tweenPlayer = obj.GetComponent <TweenPlayer>();

            if (tweenPlayer != null)
            {
                tweenPlayer.Play(tweenElement, count, endAction);
            }
            else
            {
                tweenPlayer = obj.AddComponent <TweenPlayer>();
                tweenPlayer.Play(tweenElement, count, () => {
                    if (tweenPlayer != null)
                    {
                        endAction?.Invoke();
                        GameObject.Destroy(tweenPlayer);
                    }
                });
            }
            return(tweenPlayer);
        }
コード例 #3
0
        private float GetAlpha(TweenElement element)
        {
            var cg = GetComponent <CanvasGroup>();

            if (cg != null)
            {
                return(cg.alpha);
            }
            var render = GetComponent <SpriteRenderer>();

            if (render != null)
            {
                return(render.color.a);
            }
            var image = GetComponent <Image>();

            if (image != null)
            {
                return(image.color.a);
            }
            return(0f);
        }
コード例 #4
0
        IEnumerator CoPlayTween(TweenElement element, Action endAction)
        {
            isPlaying = true;

            float duration = element.duration;

            float t = 0f;

            while (true)
            {
                if (element.isAlpha)
                {
                    AnimationCurve alphaCurve = element.alphaTween.curve;
                    float          alphaValue = Mathf.Clamp01(alphaCurve.Evaluate(t / duration));
                    ApplyAlpha(alphaValue);
                }
                if (element.isScale)
                {
                    AnimationCurve scaleCurve = element.scaleTween.curve;
                    float          scaleValue = scaleCurve.Evaluate(t / duration);
                    transform.localScale = element.scaleTween.unitScale * scaleValue;

                    if (element.scaleTween.freezeX)
                    {
                        transform.localScale = transform.localScale.SetX(preData.scale.x);
                    }
                    if (element.scaleTween.freezeY)
                    {
                        transform.localScale = transform.localScale.SetY(preData.scale.y);
                    }
                    if (element.scaleTween.freezeZ)
                    {
                        transform.localScale = transform.localScale.SetZ(preData.scale.z);
                    }
                }
                if (element.isPosition)
                {
                    AnimationCurve posCurve = element.positionTween.curve;
                    float          posValue = posCurve.Evaluate(t / duration);
                    transform.position = preData.position + (element.positionTween.uniPosition * posValue);

                    if (element.positionTween.freezeX)
                    {
                        transform.position = transform.position.SetX(preData.position.x);
                    }
                    if (element.positionTween.freezeY)
                    {
                        transform.position = transform.position.SetY(preData.position.y);
                    }
                    if (element.positionTween.freezeZ)
                    {
                        transform.position = transform.position.SetZ(preData.position.z);
                    }
                }
                if (element.isRotation)
                {
                    AnimationCurve rotCurve     = element.rotationTween.curve;
                    float          rotValue     = rotCurve.Evaluate(t / duration);
                    Vector3        sourceVector = element.rotationTween.unitRotation * rotValue;

                    if (element.rotationTween.freezeX)
                    {
                        sourceVector = sourceVector.SetX(preData.rotation.eulerAngles.x);
                    }
                    if (element.rotationTween.freezeY)
                    {
                        sourceVector = sourceVector.SetY(preData.rotation.eulerAngles.y);
                    }
                    if (element.rotationTween.freezeZ)
                    {
                        sourceVector = sourceVector.SetZ(preData.rotation.eulerAngles.z);
                    }
                    transform.rotation = Quaternion.Euler(sourceVector);
                }


                t += Time.deltaTime;
                if (t > element.duration)
                {
                    break;
                }
                yield return(null);
            }

            if (element.isAlpha && element.alphaTween.isReset)
            {
                ApplyAlpha(preData.alpha);
            }
            if (element.isScale && element.scaleTween.isReset)
            {
                transform.localScale = preData.scale;
            }
            if (element.isPosition && element.positionTween.isReset)
            {
                transform.position = preData.position;
            }
            if (element.isRotation && element.rotationTween.isReset)
            {
                transform.rotation = preData.rotation;
            }
            playCount += 1;

            if (isLoop || playCount < targetCount)
            {
                StartCoroutine(CoPlayTween(element, endAction));
                yield break;
            }

            isPlaying = false;
            preData   = null;
            endAction?.Invoke();
        }
コード例 #5
0
 public void Play(TweenElement element, int count)
 {
     Play(element, count, null);
 }
コード例 #6
0
 public void Play(TweenElement element, Action endAction)
 {
     Play(element, 1, endAction);
 }
コード例 #7
0
 public void Play(TweenElement element)
 {
     Play(element, 1, null);
 }