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
- 터치디자이너 list
- 터치디자이너 참조
- 터치디자이너 if
- TDableton
- 터치디자이너 python
- 터치디자이너 강의
- 터치디자이너 클론
- 터치디자이너 timeline
- 파이썬
- 파이썬 if
- ableton live 10
- 터치디자이너 reference
- 터치디자이너 에이블톤
- 터치디자이너 파이썬
- 터치디자이너 튜토리얼
- touchdesigner displace
- displace
- 터치디자이너 Instancing
- particleGPU
- 터치디자이너
- 터치디자이너 replicator
- 터치디자이너 인터페이스
- 터치디자이너 interface
- 터치디자이너 함수
- touchdesigner particle
- TouchDesigner
- touchdesigner GPU
- touchdesinger
- 파이썬reference
- 터치디자이너 오퍼레이터
Archives
- Today
- Total
caLAB
[유니티 개발] Firebase 데이터 getData(), setData() 본문
728x90
using Firebase.Database;
using Firebase.Extensions;
using UnityEngine;
public class getRealtimeDBdata : MonoBehaviour
{
private DatabaseReference reference;
private void Start()
{
reference = FirebaseDatabase.DefaultInstance.RootReference;
SetData();
GetData();
}
public void SetData()
{
int test = 5;
reference.Child("0").Child("ch_Birth").SetValueAsync(test);
}
public void GetData()
{
var assetAddress = reference.Child("3").Child("asset_address").GetValueAsync();
assetAddress.ContinueWithOnMainThread(assetAddress =>
{
if (assetAddress.IsCompleted && assetAddress != null)
{
DataSnapshot snapshot = assetAddress.Result;
Debug.Log(snapshot.Value.ToString());
}
});
}
}
728x90
반응형
'Unity > 유니티 개발' 카테고리의 다른 글
[유니티 개발]addressable Asset 활용 (0) | 2022.05.23 |
---|---|
[유니티 개발] 비동기 반환값 (0) | 2022.05.23 |
[유니티 개발] Game Programming Pattern(SOLID 패턴) (0) | 2022.05.09 |
[유니티 개발] 유니티 fireBase연동(이미지 업로드 / 다운로드) (0) | 2022.05.02 |
[유니티 개발] Json (0) | 2022.05.02 |
Comments