public override void execute() { txUIObject obj = mReceiver as txUIObject; WindowComponentSlider component = obj.getComponent(out component); component.setTremblingCallback(mTremblingCallBack); component.setTrembleDoneCallback(mTrembleDoneCallBack); component.setActive(true); component.setStartValue(mStartValue); component.setTargetValue(mTargetValue); component.play(mTremblingName, mLoop, mOnceLength, mOffset, mFullOnce, mAmplitude); if (component.getState() == PLAY_STATE.PS_PLAY) { // 需要启用组件更新时,则开启组件拥有者的更新,后续也不会再关闭 obj.setEnable(true); } }
public override void execute() { txUIObject obj = mReceiver as txUIObject; WindowComponentAlpha component = obj.getComponent(out component); // 停止其他相关组件 obj.breakComponent <IComponentModifyAlpha>(component.GetType()); component.setTremblingCallback(mTremblingCallBack); component.setTrembleDoneCallback(mTrembleDoneCallBack); component.setActive(true); component.setStartAlpha(mStartAlpha); component.setTargetAlpha(mTargetAlpha); component.play(mName, mLoop, mOnceLength, mOffset, mFullOnce, mAmplitude); if (component.getState() == PLAY_STATE.PS_PLAY) { // 需要启用组件更新时,则开启组件拥有者的更新,后续也不会再关闭 obj.setEnable(true); } }
public override void execute() { txUIObject obj = mReceiver as txUIObject; WindowComponentAlphaPath component = obj.getComponent(out component); // 停止其他相关组件 obj.breakComponent <IComponentModifyAlpha>(component.GetType()); component.setTremblingCallback(mDoingCallBack); component.setTrembleDoneCallback(mDoneCallBack); component.setActive(true); component.setValueKeyFrame(mValueKeyFrame); component.setSpeed(mSpeed); component.setValueOffset(mValueOffset); component.play(mLoop, mOffset, mFullOnce); if (component.getState() == PLAY_STATE.PS_PLAY) { // 需要启用组件更新时,则开启组件拥有者的更新,后续也不会再关闭 obj.setEnable(true); } }