5 changed files with 3862 additions and 8450 deletions
File diff suppressed because it is too large
@ -0,0 +1,8 @@ |
|||||
|
fileFormatVersion: 2 |
||||
|
guid: a6307f14e1189954c8015c0ca0b2825a |
||||
|
folderAsset: yes |
||||
|
DefaultImporter: |
||||
|
externalObjects: {} |
||||
|
userData: |
||||
|
assetBundleName: |
||||
|
assetBundleVariant: |
||||
@ -0,0 +1,33 @@ |
|||||
|
using System.Collections; |
||||
|
using System.Collections.Generic; |
||||
|
using UnityEngine; |
||||
|
|
||||
|
public class Giude : Singleton<Giude> |
||||
|
{ |
||||
|
public GameObject blackBord_1; |
||||
|
public GameObject blackBord_2; |
||||
|
public GameObject blackBord_3; |
||||
|
public Canvas colorCanvas; |
||||
|
[Header("½ø³Ì±êʶ")] |
||||
|
public int guideProcess; |
||||
|
private void Start() |
||||
|
{ |
||||
|
guideProcess = 0; |
||||
|
StartCoroutine(GuideProcess()); |
||||
|
} |
||||
|
|
||||
|
IEnumerator GuideProcess() |
||||
|
{ |
||||
|
blackBord_1.SetActive(true); |
||||
|
colorCanvas.sortingOrder = 2; |
||||
|
yield return new WaitUntil (() => guideProcess == 1); |
||||
|
blackBord_1.SetActive(false); |
||||
|
blackBord_2.SetActive(true); |
||||
|
yield return new WaitUntil(() => guideProcess == 2); |
||||
|
blackBord_1.SetActive(false); |
||||
|
blackBord_2.SetActive(false); |
||||
|
blackBord_3.SetActive(true); |
||||
|
colorCanvas.sortingOrder = 4; |
||||
|
yield return new WaitUntil(() => guideProcess == 3); |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,11 @@ |
|||||
|
fileFormatVersion: 2 |
||||
|
guid: a8e08dabbff27f94d8c4eb9b56a42f23 |
||||
|
MonoImporter: |
||||
|
externalObjects: {} |
||||
|
serializedVersion: 2 |
||||
|
defaultReferences: [] |
||||
|
executionOrder: 0 |
||||
|
icon: {instanceID: 0} |
||||
|
userData: |
||||
|
assetBundleName: |
||||
|
assetBundleVariant: |
||||
Loading…
Reference in new issue