├── .gitignore ├── Config └── FilterPlugin.ini ├── LICENSE ├── README.md ├── Resources └── Icon128.png ├── Source └── TrickyAnimationComponents │ ├── Private │ ├── EaseAnimationComponent.cpp │ ├── EasingAnimationSceneCmoponent.cpp │ ├── FollowAnimationComponent.cpp │ ├── OscillationAnimationComponent.cpp │ ├── RotationAnimationComponent.cpp │ ├── SplineAnimationComponent.cpp │ ├── TimelineAnimationComponent.cpp │ ├── TrickyAnimationComponents.cpp │ └── TrickyAnimationComponentsLibrary.cpp │ ├── Public │ ├── EaseAnimationComponent.h │ ├── EasingAnimationSceneComponent.h │ ├── FollowAnimationComponent.h │ ├── OscillationAnimationComponent.h │ ├── RotationAnimationComponent.h │ ├── SplineAnimationComponent.h │ ├── TimelineAnimationComponent.h │ ├── TrickyAnimationComponents.h │ └── TrickyAnimationComponentsLibrary.h │ └── TrickyAnimationComponents.Build.cs └── TrickyAnimationComponents.uplugin /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Private/EaseAnimationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Private/EaseAnimationComponent.cpp -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Private/EasingAnimationSceneCmoponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Private/EasingAnimationSceneCmoponent.cpp -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Private/FollowAnimationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Private/FollowAnimationComponent.cpp -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Private/OscillationAnimationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Private/OscillationAnimationComponent.cpp -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Private/RotationAnimationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Private/RotationAnimationComponent.cpp -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Private/SplineAnimationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Private/SplineAnimationComponent.cpp -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Private/TimelineAnimationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Private/TimelineAnimationComponent.cpp -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Private/TrickyAnimationComponents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Private/TrickyAnimationComponents.cpp -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Private/TrickyAnimationComponentsLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Private/TrickyAnimationComponentsLibrary.cpp -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Public/EaseAnimationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Public/EaseAnimationComponent.h -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Public/EasingAnimationSceneComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Public/EasingAnimationSceneComponent.h -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Public/FollowAnimationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Public/FollowAnimationComponent.h -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Public/OscillationAnimationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Public/OscillationAnimationComponent.h -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Public/RotationAnimationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Public/RotationAnimationComponent.h -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Public/SplineAnimationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Public/SplineAnimationComponent.h -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Public/TimelineAnimationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Public/TimelineAnimationComponent.h -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Public/TrickyAnimationComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Public/TrickyAnimationComponents.h -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/Public/TrickyAnimationComponentsLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/Public/TrickyAnimationComponentsLibrary.h -------------------------------------------------------------------------------- /Source/TrickyAnimationComponents/TrickyAnimationComponents.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/Source/TrickyAnimationComponents/TrickyAnimationComponents.Build.cs -------------------------------------------------------------------------------- /TrickyAnimationComponents.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrickyFatCat/TrickyAnimationComponents/HEAD/TrickyAnimationComponents.uplugin --------------------------------------------------------------------------------