Esempio n. 1
0
    protected override void applyTrembling(float offset)
    {
        txUIObject uiObj = mComponentOwner as txUIObject;

        if (uiObj == null)
        {
            UnityUtility.logError("ComponentOwner is not a window! name : " + mComponentOwner.getName());
            return;
        }
        if (uiObj.getUIType() == UI_OBJECT_TYPE.UBT_STATIC_TEXTURE)
        {
            txUIStaticTextureHSLOffset window = (mComponentOwner) as txUIStaticTextureHSLOffset;
            if (window != null)
            {
                Vector3 hsl = mStartHSL + (mTargetHSL - mStartHSL) * offset;
                window.setHSLOffset(hsl);
            }
            else
            {
                UnityUtility.logError("window is not a hsl window! name : " + mComponentOwner.getName() + ", layout : " + uiObj.mLayout.getName());
            }
        }
        else if (uiObj.getUIType() == UI_OBJECT_TYPE.UBT_TEXTURE_ANIM)
        {
            txUITextureAnimHSLOffset window = (mComponentOwner) as txUITextureAnimHSLOffset;
            if (window != null)
            {
                Vector3 hsl = mStartHSL + (mTargetHSL - mStartHSL) * offset;
                window.setHSLOffset(hsl);
            }
            else
            {
                UnityUtility.logError("window is not a hsl window! name : " + mComponentOwner.getName() + ", layout : " + uiObj.mLayout.getName());
            }
        }
        else
        {
            UnityUtility.logError("window is not a texture window! name : " + mComponentOwner.getName() + ", layout : " + uiObj.mLayout.getName());
        }
    }
Esempio n. 2
0
    protected override void applyTrembling(float offset)
    {
        txUIStaticTextureHSLOffset window = (mComponentOwner) as txUIStaticTextureHSLOffset;

        if (window != null)
        {
            Vector3 hsl = mStartHSL + (mTargetHSL - mStartHSL) * offset;
            window.setHSLOffset(hsl);
        }
        else if (mComponentOwner != null)
        {
            txUIObject obj = mComponentOwner as txUIObject;
            if (obj != null)
            {
                UnityUtility.logError("window is not a hsl window! name : " + mComponentOwner.getName() + ", layout : " + obj.mLayout.getName());
            }
            else
            {
                UnityUtility.logError("ComponentOwner is not a window! name : " + mComponentOwner.getName());
            }
        }
    }