UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines (8 loc) 203 B
import { makeOnePixelTexture } from "./makeOnePixelTexture.js"; /** * * @returns {DataTexture} */ export function whitePixelTexture() { return makeOnePixelTexture([255, 255, 255, 255]); }