The home of KAPLAY assets.
npm install @kaplayjs/crew
yarn add @kaplayjs/crew
pnpm add @kaplayjs/crew
bun add @kaplayjs/crew
Crew package comes with a plugin for load all KAPLAY crew sprites!
import { crew } from "@kaplayjs/crew";
import kaplay from "kaplay";
const k = kaplay({
plugins: [crew],
font: "happy",
});
k.loadCrew("sprite", "apple");
k.loadCrew("sprite", "grape", "purplefruit");
k.loadCrew("font", "happy");
k.add([
k.sprite("purplefruit"),
]);
k.add([
k.pos(40, 40),
k.text("ohhi"),
]);