Sprite Animator is a Unity package that provides a custom animator designed specifically for 2D sprites. It leverages a global frame duration, allowing for full synchrony between animated objects.
前回のあらすじ。2Dスクロールアクションの基礎部分を作った。 しかし、単なる画像のスライド移動だけでは寂しい。せめて移動時には走ってほしい。 というわけで今回の実装では、プレイヤーの移動時に、走りアニメーションを再生する。 Unityの ...
前回3Dオブジェクトに2D画像のテクスチャを貼り付けそれを変化させていく方法でアニメーションを作ることができました。 結構荒業なような感じでしたが、ChatGPT君に聞いたところ案として出るくらいなので使い方次第では普通に使って問題ないという ...
The SpriteAnimator class allows simple animations to be played in Unity without the need for a complete Animation Controller or having to fallback to the Unity Legacy Animator. Its worth noting that ...
In the previous two posts in this series (part 1 and part 2), we’ve seen how to create a basic 2D platformer using Unity. So far we have a character who responds to keyboard input and touch controls, ...