You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
614 B
30 lines
614 B
using JetBrains.Annotations;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class Level5New : LevelBase
|
|
{
|
|
public DriveManager driveManager;
|
|
protected override void Awake()
|
|
{
|
|
base.Awake();
|
|
driveManager.Init();
|
|
}
|
|
protected override void Start()
|
|
{
|
|
base.Start();
|
|
}
|
|
|
|
public override void StartGame()
|
|
{
|
|
view.SetActive(true);
|
|
area.SetActive(true);
|
|
cameraPanel.SetActive(true);
|
|
minMap.SetActive(true);
|
|
TaskBase.Instacne.FinishTask(0);
|
|
}
|
|
}
|