Skip to content

haydenjameslee/aframe-lerp-component

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aframe-lerp-component

A linear interpolation component for A-Frame.

Changes the position, rotation, or scale when you call el.setAttribute('position', ...) from the current value to the new value.

The time taken to interpolate to the new value is the time between the previous change and the most recent change.

GIF Example

Try on Glitch: https://aframe-lerp-component.glitch.me/

API

Property Description Default Value
properties Array of properties to lerp. Eg. to only lerp position and rotation set to position, rotation position, rotation, scale

Installation

Browser

Install and use by directly including the browser files:

<head>
  <title>My A-Frame Scene</title>
  <script src="https://aframe.io/releases/0.4.0/aframe.min.js"></script>
  <script src="https://unpkg.com/aframe-lerp-component/dist/aframe-lerp-component.min.js"></script>
</head>

<body>
  <a-scene>
    <a-entity lerp="properties: position, rotation, scale"></a-entity>
  </a-scene>
</body>

npm

Install via npm:

npm install aframe-lerp-component

Then require and use.

require('aframe');
require('aframe-lerp-component');

About

A linear interpolation component for A-Frame.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published