| 70 | } |
| 71 | |
| 72 | bool Animate3D::init(Animation3D* animation) |
| 73 | { |
| 74 | _animation = animation; |
| 75 | animation->retain(); |
| 76 | setDuration(animation->getDuration()); |
| 77 | setOriginInterval(animation->getDuration()); |
| 78 | setQuality(Configuration::getInstance()->getAnimate3DQuality()); |
| 79 | return true; |
| 80 | } |
| 81 | |
| 82 | bool Animate3D::init(Animation3D* animation, float fromTime, float duration) |
| 83 | { |
no test coverage detected