@matematrolii/sketchbook
Version:
3D matematrolii playground built on three.js and cannon.js
12 lines (11 loc) • 341 B
text/typescript
import {StartWalkBase} from './_stateLibrary';
import { Character } from '../Character';
export class StartWalkForward extends StartWalkBase
{
constructor(character: Character)
{
super(character);
//this.animationLength = character.setAnimation('start_forward', 0.1);
this.animationLength = character.setAnimation('walk', 0.1);
}
}