Skip to content

0.8.8

@jeremyckahn jeremyckahn tagged this 25 Aug 18:14
Old style:

  tweenable.tween({
    from: {x: 0},
    to: {x: 10},
    step: function () {
      console.log(this.x);
    }
  });

New style:

  tweenable.tween({
    from: {x: 0},
    to: {x: 10},
    step: function (state) {
      console.log(state.x);
    }
  });
Assets 2
Loading