|
| virtual Key * | addKeyFrameUsingPropertyValue (const Property *property, Seconds time, std::unique_ptr< Interpolation > interpolation=nullptr) override |
| |
| virtual Key * | addKeyFrameUsingPropertyValue (Seconds time, std::unique_ptr< Interpolation > interpolation=nullptr) override |
| |
| virtual Seq * | addSequenceUsingPropertyValue (Seconds time, std::unique_ptr< Interpolation > interpolation=nullptr) override |
| |
| virtual PropertyTrack * | clone () const override |
| |
| virtual std::unique_ptr< Key > | createKeyframe (Seconds time) const override |
| |
| virtual void | deserialize (Deserializer &d) override |
| |
| virtual std::string_view | getClassIdentifier () const override |
| |
| virtual const Prop * | getProperty () const override |
| |
| virtual Prop * | getProperty () override |
| |
| virtual AnimationTimeState | operator() (Seconds from, Seconds to, AnimationState state) const override |
| |
|
| PropertyTrack (ProcessorNetwork *network) |
| |
|
| PropertyTrack (Prop *property) |
| |
|
| PropertyTrack (Prop *property, ProcessorNetwork *network) |
| |
| virtual void | serialize (Serializer &s) const override |
| |
| void | setKeyframeFromProperty (const Property *srcProperty, Keyframe *keyframe) override |
| | Helper function to update the value if a keyframe from a property (other than the property owned by the track)
|
| |
| virtual void | setProperty (Property *property) override |
| |
| void | setPropertyFromKeyframe (Property *dstProperty, const Keyframe *keyframe) const override |
| | Helper function to set a property from a keyframe.
|
| |
| virtual Track * | toTrack () override |
| |
| virtual | ~PropertyTrack () |
| |
| virtual key_type * | add (Seconds time, bool asNewSequence) override |
| |
| virtual Seq * | add (std::unique_ptr< KeyframeSequence > sequence) override |
| |
| virtual Seq * | add (std::unique_ptr< Seq > sequence) |
| |
|
key_type * | addToClosestSequence (std::unique_ptr< key_type > key) |
| |
| virtual key_type * | addToClosestSequence (std::unique_ptr< Keyframe > key) override |
| |
|
| BaseTrack (std::string_view name, size_t priority=0) |
| |
|
iterator | begin () |
| |
|
const_iterator | begin () const |
| |
| virtual bool | empty () const override |
| |
|
iterator | end () |
| |
|
const_iterator | end () const |
| |
| virtual std::vector< Seconds > | getAllTimes () const override |
| |
| virtual const Seq & | getFirst () const override |
| |
| virtual Seq & | getFirst () override |
| |
| virtual Seconds | getFirstTime () const override |
| |
| virtual const Seq & | getLast () const override |
| |
| virtual Seq & | getLast () override |
| |
| virtual Seconds | getLastTime () const override |
| |
| virtual std::string_view | getName () const override |
| |
| virtual std::optional< Seconds > | getNextTime (Seconds at) const final |
| |
| virtual std::optional< Seconds > | getPrevTime (Seconds at) const final |
| |
| virtual size_t | getPriority () const override |
| |
| virtual bool | isEnabled () const override |
| |
| virtual const Seq & | operator[] (size_t i) const override |
| |
| virtual Seq & | operator[] (size_t i) override |
| |
| virtual std::unique_ptr< Keyframe > | remove (Keyframe *key) override |
| |
| virtual std::unique_ptr< KeyframeSequence > | remove (KeyframeSequence *seq) override |
| |
| virtual std::unique_ptr< KeyframeSequence > | remove (size_t i) override |
| |
| virtual void | setEnabled (bool enabled) override |
| |
| virtual void | setName (std::string_view name) override |
| |
| virtual void | setPriority (size_t priority) override |
| |
| virtual size_t | size () const override |
| |
|
auto | operator<=> (const Seconds &time) const |
| |
|
auto | operator<=> (const Track &other) const |
| |
|
auto | operator== (const Track &other) const =delete |
| |
| virtual | ~Track ()=default |
| |
|
void | addObserver (TrackObserver *observer) |
| |
|
bool | isObservedBy (TrackObserver *observer) const |
| |
| | Observable (const Observable< TrackObserver > &other) |
| |
| | Observable (Observable< TrackObserver > &&other) noexcept |
| |
| Observable< TrackObserver > & | operator= (const Observable< TrackObserver > &other) |
| |
| Observable< TrackObserver > & | operator= (Observable< TrackObserver > &&other) noexcept |
| |
|
void | removeObserver (TrackObserver *observer) |
| |
| virtual void | startBlockingNotifications () override final |
| |
| virtual void | stopBlockingNotifications () override final |
| |
|
virtual void | onKeyframeAdded (Keyframe *, KeyframeSequence *) |
| |
|
virtual void | onKeyframeRemoved (Keyframe *, KeyframeSequence *) |
| |
|
virtual void | onKeyframeSequenceSelectionChanged (KeyframeSequence *) |
| |
|
| Observer (const Observer &other) |
| |
|
| Observer (Observer &&other) |
| |
|
Observer & | operator= (const Observer &other) |
| |
|
Observer & | operator= (Observer &&other) |
| |
| void | removeObservation (ObservableInterface *observable) |
| |
|
void | removeObservations () |
| |
| virtual | ~Observer () |
| |
template<typename Prop, typename Key, typename Seq = KeyframeSequenceTyped<Key>>
class inviwo::animation::PropertyTrack< Prop, Key, Seq >
Implementation of BasePropertyTrack and TrackTyped based on templates parameter types for Property, KeyFrame and KeyframeSequence. Exposes functions for adding a KeyFrame and KeyFrameSequence using the current values of the Property.
- See also
- Track
-
KeyframeSequenceTyped
-
Property