blob: 7a41986d6d99630dc97ab82dbb6a98fd59bc26e3 [file] [log] [blame]
#ifndef _RIVE_TRANSITION_TRIGGER_CONDITION_BASE_HPP_
#define _RIVE_TRANSITION_TRIGGER_CONDITION_BASE_HPP_
#include "rive/animation/transition_condition.hpp"
namespace rive {
class TransitionTriggerConditionBase : public TransitionCondition {
protected:
typedef TransitionCondition Super;
public:
static const uint16_t typeKey = 68;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override {
switch (typeKey) {
case TransitionTriggerConditionBase::typeKey:
case TransitionConditionBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
Core* clone() const override;
protected:
};
} // namespace rive
#endif