Closed5

riveを触ってみる

yukyuyukyu

カーソルトラッキングするやつを一から作る

https://rive.app/community/3901-8168-simple-eye/embed

よしなに作る。説明が大変なのでどっかにまとめたい

今回作ったサンプルのrivは以下
https://rive.app/community/3901-8168-simple-eye/

yukyuyukyu

rivファイルをダウンロードしてき、srcstateMachinesを適宜変える。

import { useRive } from "@rive-app/react-canvas"

export const Eye = () => {
    const { rive, RiveComponent } = useRive({
        src: "/eye.riv",
        autoplay: true,
        stateMachines: "State Machine 1" /* ステートマシンの名前が必須っぽい */
    });
    return (
        <RiveComponent />
    );
}`
このスクラップは2023/02/08にクローズされました