UNPKG

@phaserjs/phaser

Version:
7 lines (6 loc) 222 B
import { CreateCanvas } from "../CreateCanvas"; import { Texture } from "../Texture"; export function CanvasTexture(width = 32, height = 32) { const ctx = CreateCanvas(width, height); return new Texture(ctx.canvas); }