sparkletown/sparkle

View on GitHub
src/components/templates/AnimateMap/game/map/nodes/MotionTeleportNode.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { defineNode } from "@ash.ts/ash";

import { MotionTeleportComponent } from "../components/MotionTeleportComponent";
import { PositionComponent } from "../components/PositionComponent";

export class MotionTeleportNode extends defineNode({
  tween: MotionTeleportComponent,
  position: PositionComponent,
}) {}