0.1.20 • Published 3 years ago
animation-texture v0.1.20
animation-texture
A library supports image animation using react-three-fiber. The target files are APNG and GIF files.
If there is only one frame, a still image is displayed.
The animate, pause, and reset methods can be called from the texture.
Install
npm i -D animation-textureDemo
Usage
import React, { useRef, useEffect } from "react";
import * as THREE from "three";
import { useAnimationTexture } from "animation-texture";
interface Props {
url: string;
}
export function Model({ url }: Props) {
const { animationTexture } = useAnimationTexture({ url });
const meshRef = useRef();
useEffect(() => {
if (meshRef.current && animationTexture) {
meshRef.current.material.map = animationTexture;
meshRef.current.material.needsUpdate = true;
}
}, [animationTexture]);
return (
<mesh ref={meshRef} position={new THREE.Vector3(0, 0, 0)}>
<planeGeometry args={[1, 1]} />
<meshBasicMaterial transparent side={THREE.FrontSide} />
</mesh>
);
}Pre-load if necessary.
import React from "react";
import * as THREE from "three";
import { preLoad } from "animation-texture";
export default function App() {
preLoad('/sample.png');
return ...
}Principles of conduct
Please see the principles of conduct when building a site.
License
This library is licensed under the MIT license.
0.1.20
3 years ago
0.1.19
3 years ago
0.1.17
3 years ago
0.1.18
3 years ago
0.1.16
3 years ago
0.1.10
3 years ago
0.1.11
3 years ago
0.1.12
3 years ago
0.1.13
3 years ago
0.1.14
3 years ago
0.1.15
3 years ago
0.1.8
3 years ago
0.1.7
3 years ago
0.1.9
3 years ago
0.1.4
3 years ago
0.1.3
3 years ago
0.1.6
3 years ago
0.1.5
3 years ago
0.1.2
3 years ago
0.1.0
3 years ago