예제 #1
0
파일: Game.cs 프로젝트: gbdb71/ROGUESPY
    void Awake()
    {
        bg       = this.GetComponentInChildren <BackgroundMaker>();
        bg.scale = Scale;

        missionNum   = 0;
        finalMission = false;
    }
예제 #2
0
파일: Game.cs 프로젝트: attrition/ROGUESPY
    void Awake()
    {
        bg = this.GetComponentInChildren<BackgroundMaker>();
        bg.scale = Scale;

        missionNum = 0;
        finalMission = false;
    }
예제 #3
0
    // Initializes the background pattern
    private void CreateBackground()
    {
        BackgroundMaker background = new BackgroundMaker(size, mazeRows, mazeColumns, pattern);

        background.Generate();
    }