UNPKG

playcanvas

Version:

PlayCanvas WebGL game engine

10 lines (9 loc) 265 B
/** * An AnimBlendTree that calculates normalized weight values based on the total weight. * * @category Animation */ export class AnimBlendTreeDirect extends AnimBlendTree { calculateWeights(): void; } import { AnimBlendTree } from './anim-blend-tree.js';