-
Notifications
You must be signed in to change notification settings - Fork 2
/
BackGroundController.h
53 lines (41 loc) · 983 Bytes
/
BackGroundController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//=====================================
//
//バックグラウンドコントローラヘッダ[BackGroundController.h]
//Author:GP12B332 21 立花雄太
//
//=====================================
#ifndef _BACKGROUNDCONTROLLER_H_
#define _BACKGROUNDCONTROLLER_H_
#include "main.h"
#include <vector>
/**************************************
前方宣言
***************************************/
class BackGroundCity;
class SkyBox;
/**************************************
クラス定義
***************************************/
class BackGroundController
{
public:
BackGroundController();
~BackGroundController();
void Init();
void Uninit();
void Update();
void Draw();
void AddScrollSpeed(float add);
void InitScroolSpeed();
Transform transform;
private:
std::vector<BackGroundCity*> cityContainer;
std::vector<SkyBox*> skyBoxies;
float scroolSpeed;
float startSpeed, endSpeed;
int cntChangeSpeed;
void CreateCityContainer();
void AccelScrollSpeed();
void DampScrollSpeed();
};
#endif