Exemple #1
0
SceneBase::SceneBase(ofApp *set_ptr,GlobalSource *source_,string back_file_,int stop_){
	_ptr_app=set_ptr;
	_source=source_;
	_img_back.loadImage(back_file_);
	_stop_point=stop_;


	_anim_in=FrameAnimation(300);
	_anim_out=FrameAnimation(300);
}
Exemple #2
0
//━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//	Name        : アニメ
//	Description : アニメーしょん
//	Arguments   : ないよ
//	Returns     : ないよ
//━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
void CFlower::Animation()
{
	// 状態によってアニメーション変化
	FrameAnimation(0, 0, 1, 1, 0.5f);
}