Code Monkey home page Code Monkey logo

instanced-skinned-mesh's Introduction

Instanced skinned mesh

This repository contains a few classes that allow you to animate a large number of skinned meshes efficiently.

Demo

Demo

InstancedAnimation

This is an abstraction around the InstancedSkinnedMesh class created by CodyJasonBennett, which is a user-land implementation of this PR. One of the main differences is that this class takes a GLTF object and extracts all the animations and skinned meshes from it, which creates a more convenient API for the user. This is more similar to the default animation system in three.js. Additionally, this class is more high-level and does all the boilerplate for you, so you don't have to update the skinned meshes and bones manually.

Usage

import { InstancedAnimation } from "./InstancedAnimation.ts";

const instancedAnimation = new InstancedAnimation({
  gltf: gltf,
  count: 100,
});

const instance = {
  position: new THREE.Vector3(0, 0, 0),
  rotation: new THREE.Quaternion(),
  scale: new THREE.Vector3(1, 1, 1),
  animationIndex: 0,
  currentTime: 0,
};

instancedAnimation.addInstance(instance);

function update(deltaTime) {
  instancedAnimation.update(deltaTime); // Updates the currentTime of each instance

  // You can modify the instance properties directly, for example:
  instance.position.x += 1;
}

If you want to manage the animation update rate of each instance yourself, you can use the updateInstance method instead of update. And remember to call updateSkinnedMeshes after updating all the instances.

import { InstancedAnimation } from "./InstancedAnimation.ts";

const instancedAnimation = new InstancedAnimation({
  gltf: gltf,
  count: 100,
});

const instance = {
  position: new THREE.Vector3(0, 0, 0),
  rotation: new THREE.Quaternion(),
  scale: new THREE.Vector3(1, 1, 1),
  animationIndex: 0,
  currentTime: 0,
};

instancedAnimation.addInstance(instance);

function update(deltaTime) {
  instance.currentTime =
    (instance.currentTime + deltaTime) %
    gltf.animations[instance.animationIndex].duration;

  this.updateInstance(i);
  this.updateSkinnedMeshes();
}

ViewSensitiveInstancedAnimator

This is an abstraction around the InstancedAnimation class, which allows you to control the animation update rate based on the distance from the camera and ignore the instances outside the camera's frustum. This is useful for large scenes with many animated objects.

Usage

import { ViewSensitiveInstancedAnimator } from "./ViewSensitiveInstancedAnimator.ts";

const viewSensitiveInstancedAnimator = new ViewSensitiveInstancedAnimator({
  gltf: gltf,
  count: 100,
  camera: camera,
  maxAnimationDuration: 100, // This is the update rate when the instance is at `maxDistance`
  minAnimationDuration: 1000 / 60, // This is the update rate when the instance in front of the camera
  maxDistance: 80, // This is the distance at which the instance will be updated at `maxAnimationDuration`
});

const instance = {
  position: new THREE.Vector3(0, 0, 0),
  rotation: new THREE.Quaternion(),
  scale: new THREE.Vector3(1, 1, 1),
  animationIndex: 0,
  currentTime: 0,
};

viewSensitiveInstancedAnimator.addInstance(instance);

function update(deltaTime) {
  viewSensitiveInstancedAnimator.update(deltaTime);
}

instanced-skinned-mesh's People

Contributors

luis-herasme avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.