Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Ticker | 4,176 | 47 | 1 | 2 years ago | 12 | November 11, 2021 | 15 | apache-2.0 | Java | |
An Android text view with scrolling text change animation | ||||||||||
Hanzi Writer | 2,339 | 5 | 5 | 4 months ago | 60 | October 02, 2021 | 96 | mit | TypeScript | |
Chinese character stroke order animations and practice quizzes | ||||||||||
Splitting | 1,471 | 13 | 5 | 6 months ago | 23 | October 15, 2018 | 41 | mit | JavaScript | |
JavaScript microlibrary to split an element by words, characters, children and more, populated with CSS variables! | ||||||||||
Termynal | 1,096 | 2 years ago | 16 | mit | JavaScript | |||||
⬛️ Lightweight and modern terminal animations using async/await | ||||||||||
Animation Instancing | 1,060 | a year ago | 53 | other | C# | |||||
This technique is designed to instance Characters(SkinnedMeshRender). | ||||||||||
Render Crowd Of Animated Characters | 1,017 | 3 months ago | 5 | mit | C# | |||||
Animation Baker and Instancing for Animated Characters: Using GPU to implement large-amount animation characters rendering. The animation map for vertex shader to modify the vertex position of the mesh at runtime. Using GPU instancing to reduce draw calls. | ||||||||||
Voca | 933 | 2 months ago | 29 | Python | ||||||
This codebase demonstrates how to synthesize realistic 3D character animations given an arbitrary speech signal and a static character mesh. | ||||||||||
Rollingtext | 623 | a year ago | 1 | December 17, 2021 | 8 | apache-2.0 | Kotlin | |||
Android TextView with rolling animation | ||||||||||
Tweeny | 597 | a month ago | 10 | mit | C++ | |||||
A modern C++ tweening library | ||||||||||
Godot 3d Mannequin | 513 | 2 years ago | 10 | other | C# | |||||
An Open Source 3d character and character controller for the Godot game engine |
Unity 2019.2
This repository will hold several implementations of design patterns that I have used in the past or that I'd like to explore.
The implementation will try to be really simple to serve as educational for my university students.
Finite State Machine:
Character FSM Sample:
The State Machine initialize on Idle State.
Use 'Space' bar to switch to Walk State, 'W' to switch to Run State and 'S' to return to Idle State.
Finite State Machine With Animations:
Character FSM:
Based on Sample 1, it integrate Animation control trought FSM states.
The State Machine initialize on Idle State.
Use 'A' to switch to Color State, 'S' to switch to Scale State and 'D' to return to Idle State.
Finite State Machine With Movement and Animations:
Character FSM:
Based on Sample 2, it integrate Class structure to handle movement with FSM states in a decoupled way.
The State Machine initialize on Idle State.
Use 'WASD' to switch to Move State in different directions, 'SpaceBar' to switch to Jump State.
Adapter:
Audio Adapter:
It propose a base interface (AudioClipAdapter SO) that can integrate different audio engines/implementations
while it offers an API to the other systems of the game's architecture.