Example #1
0
    public override void Create()
    {
        StreamInputs  = SetInputs;
        StreamOutputs = SetOutputs;

        myModifier = new StreamModifier(multiplier);
    }
Example #2
0
    public override void ManageStream()
    {
        if (this.Stream.GetState != this.StreamprocessingType)
        {
            StreamPool.returnStream(this.Stream);
            this.ChangeState = runningState.incorrectInput;
            return;
        }

        StreamModifier myMod = new StreamModifier(myMultiplier);

        this.Stream.AddModifier = myMod;


        //  myAnimator.setAnimState(this);
        this.PassStream();
    }