FaceDirectionOfVelocityComponent.re.ts 235 B

123456789101112131415161718
  1. import * as RE from 'rogue-engine';
  2. export default class FaceDirectionOfVelocityComponent extends RE.Component {
  3. awake() {
  4. }
  5. start() {
  6. }
  7. update() {
  8. }
  9. }
  10. RE.registerComponent(FaceDirectionOfVelocityComponent);