hc27080401 / buffered-interpolation

A class for interpolation of position, rotation, and scale for networked THREE.js objects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

buffered-interpolation

This package aims to provide a solution for interpolation of position, rotation, and scale for networked THREE.js objects.

It specifically aims to work well both in situations with continuous and sparse network updates.

Inspired by: godot-snapshot-interpolation-demo

For position and scale, uses either linear interpolation (default) or hermite function (which takes into account velocity).

For rotation (quaternions), uses spherical interpolation.

Usage

var InterpolationBuffer = require('buffered-interpolation');
let interpolationBuffer = new InterpolationBuffer();

on receipt of networked data:

interpolationBuffer.setPosition(new THREE.Vector3(data.x, data.y, data.z));

in some update/tick method:

object3d.position.copy(interpolationBuffer.getPosition());

About

A class for interpolation of position, rotation, and scale for networked THREE.js objects.

License:Mozilla Public License 2.0


Languages

Language:JavaScript 100.0%