2018-05-08 20:03:29 +08:00
|
|
|
#include "..\e2daction.h"
|
2018-09-05 13:33:39 +08:00
|
|
|
#include "..\e2dnode.h"
|
2018-05-08 20:03:29 +08:00
|
|
|
|
|
|
|
|
|
2018-07-28 20:06:27 +08:00
|
|
|
e2d::OpacityTo::OpacityTo(float duration, float opacity)
|
2018-05-10 14:03:54 +08:00
|
|
|
: OpacityBy(duration, 0)
|
2018-05-08 20:03:29 +08:00
|
|
|
{
|
2018-09-04 22:42:34 +08:00
|
|
|
end_val_ = opacity;
|
2018-05-08 20:03:29 +08:00
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:42:34 +08:00
|
|
|
e2d::OpacityTo * e2d::OpacityTo::Clone() const
|
2018-05-08 20:03:29 +08:00
|
|
|
{
|
2018-09-04 22:42:34 +08:00
|
|
|
return new (e2d::autorelease) OpacityTo(duration_, end_val_);
|
2018-05-08 20:03:29 +08:00
|
|
|
}
|
|
|
|
|
|
2018-09-04 22:42:34 +08:00
|
|
|
void e2d::OpacityTo::Init()
|
2018-05-08 20:03:29 +08:00
|
|
|
{
|
2018-09-04 22:42:34 +08:00
|
|
|
OpacityBy::Init();
|
|
|
|
|
delta_val_ = end_val_ - start_val_;
|
2018-05-08 20:03:29 +08:00
|
|
|
}
|