Hey everyone!
I'm just experimenting with the framework and have implemented a simple example which moves an object to a random point on the screen.
onInit(options) {
// set state
// ...
this.useTimeline();
this.setSimulationInterval(() => this.tick(), 1000/30);
}
My question is how i can use the Timeline class in client to interpolate the object movement?
In other words how can i use the timeline snapshots from server in the client?
cheers!