250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- touchdesigner displace
- 터치디자이너 강의
- 터치디자이너
- 터치디자이너 참조
- 터치디자이너 replicator
- TouchDesigner
- displace
- 파이썬reference
- 터치디자이너 Instancing
- 터치디자이너 오퍼레이터
- 터치디자이너 python
- 터치디자이너 함수
- 터치디자이너 if
- 터치디자이너 파이썬
- 파이썬 if
- TDableton
- 터치디자이너 timeline
- 터치디자이너 튜토리얼
- particleGPU
- 파이썬
- 터치디자이너 interface
- 터치디자이너 인터페이스
- 터치디자이너 에이블톤
- touchdesigner particle
- ableton live 10
- 터치디자이너 list
- 터치디자이너 reference
- 터치디자이너 클론
- touchdesigner GPU
- touchdesinger
Archives
- Today
- Total
caLAB
sceneLoader 본문
728x90
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
public class sceneLoader : MonoBehaviour
{
public float sceneTime = 15.0f;
public Image panel;
float F_time = 1f;
Scene sceneLoaded;
float time = 0f;
private void Start()
{
sceneLoaded = SceneManager.GetActiveScene();
sceneLoad();
}
public void sceneLoad()
{
StartCoroutine(WaitForSceneLoad());
}
private IEnumerator WaitForSceneLoad()
{
yield return new WaitForSeconds(sceneTime);
StartCoroutine(FadeFlow());
}
IEnumerator FadeFlow()
{
panel.gameObject.SetActive(true);
time = 0f;
Color alpha = panel.color;
while (alpha.a < 1f)
{
time += Time.deltaTime / F_time;
alpha.a = Mathf.Lerp(0, 1, time);
panel.color = alpha;
yield return null;
}
time = 0f;
SceneManager.LoadScene(sceneLoaded.buildIndex + 1);
}
}
728x90
반응형
'Unity > 유니티 개발' 카테고리의 다른 글
유니티 깃헙 연동해서 팀프로젝트 하기 feat. markDown글쓰기 (0) | 2021.08.24 |
---|---|
screenToWorldPoint 마우스 컨트롤 위치로 gameobject움직이기 (0) | 2021.08.06 |
유니티 리얼센스 Nuitrack 스켈레톤 프로젝트 (0) | 2021.02.01 |
[realsense D435 개발일지] 기본 세팅. (0) | 2020.12.28 |
04. 포톤네트워크 Voice Chat (0) | 2020.09.29 |
Comments