Pixelpart 1.9.0
Godot Plugin
Loading...
Searching...
No Matches
PixelpartAnimatedProperty.h
1#ifndef PIXELPART_ANIMATED_PROPERTY_H
2#define PIXELPART_ANIMATED_PROPERTY_H
3
4#include <godot_cpp/core/binder_common.hpp>
5#include <godot_cpp/classes/ref.hpp>
6
7namespace godot {
15class PixelpartAnimatedProperty : public RefCounted {
16 GDCLASS(PixelpartAnimatedProperty, RefCounted)
17
18public:
43
44protected:
45 static void _bind_methods();
46};
47}
48
49VARIANT_ENUM_CAST(PixelpartAnimatedProperty::InterpolationType);
50
51#endif
Base class for properties animated with keyframes and affected by effect inputs.
Definition PixelpartAnimatedProperty.h:15
InterpolationType
Keyframe interpolation types.
Definition PixelpartAnimatedProperty.h:22
@ INTERPOLATION_LINEAR
Definition PixelpartAnimatedProperty.h:31
@ INTERPOLATION_SPLINE
Definition PixelpartAnimatedProperty.h:36
@ INTERPOLATION_STEP
Definition PixelpartAnimatedProperty.h:26
@ INTERPOLATION_BEZIER
Definition PixelpartAnimatedProperty.h:41