New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

use-spritesheet

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

use-spritesheet

Bringing spritesheets and aseprite intergration to react-three-fiber

latest
Source
npmnpm
Version
0.1.2
Version published
Weekly downloads
5
25%
Maintainers
1
Weekly downloads
 
Created
Source


Version Twitter ETH Language License Bundle Size Build

use-spritesheet is a set of hooks to use pixel art, spritesheets and Aseprite with react-three-fiber in just a few lines of code.

👁  Live Demo (source in example)

Installation

npm i use-spritesheet
yarn add use-spritesheet

API

usePixelTexture

A small time-saver if you want crisp pixels on a texture, sets the texture filter to nearest-neighbour and (optionally) enables wrapping.

import frogSrc from './resources/frog.png';

const PixelTexture = () => {
  const tex = usePixelTexture(frogSrc);

  return (
    <sprite>
      <spriteMaterial transparent map={tex} />
    </sprite>
  );
};

useSpritesheet

Perfect for when you have a spritesheet and want to slice out a single frame to display statically (such as an icon from a icon set).

import smileySrc from './resources/smiley_idle.png';

const SpritesheetSingleFrame = () => {
  // 1 row
  // 8 columns
  // display frame index 2
  const tex = useSpritesheet(smileySrc, 1, 8, 2);

  return (
    <sprite>
      <spriteMaterial transparent map={tex} />
    </sprite>
  );
};

useSpritesheetAnimation

Play a series of frames that are baked into a single texture, ideal for particle effects.

import impSrc from './resources/impo.png';

const SpritesheetAnimation = ({ paused }: { paused: boolean }) => {
  // 100ms per frame
  // 2 rows
  // 4 columns
  const [tex] = useSpritesheetAnimation(impSrc, 100, 2, 4, paused);

  return (
    <sprite>
      <spriteMaterial transparent map={tex} />
    </sprite>
  );
};

useAsepriteAnimation

Import a texture + json file exported from Aseprite, select which animation to play and control playback speed.

import gremlin from "./resources/bomber.png";
import gremlinJson from "./resources/bomber.json";

export const AsepriteAnimation = ({
  animation = "idle",
  paused,
}: any) => {
  const [texture] = useAseprite(
    gremlin,
    gremlinJson as AsepriteJson,
    animation, // Changing this parameter automatically switches animations
    paused
  );

  return (
    <sprite>
      <spriteMaterial transparent map={texture} />
    </sprite>
  );
};

Running this repo

We make use of yarn workspaces to develop the example alongside the library itself.

Bootstrap

yarn

Running the examples

cd use-spritesheet
yarn build
cd ../example
yarn start

Keywords

spritesheet

FAQs

Package last updated on 06 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts