Unity/Firebase/Realtimedatabase/インストール
ナビゲーションに移動
検索に移動
Realtimedatabaseのインストール
FirebaseDatabase.unitypackageをAssets/Importからインストールする
https://firebase.google.com/download/unity?hl=ja
料金課金周り
Gcp/Firebase/RealtimeDatabase [ショートカット]
ルール
以下のようなルールになってると、更新できないので、test時は修正後のように 修正前
{
"rules": {
".read": false,
".write": false
}
}
修正後
{
"rules": {
".read": true,
".write": true
}
}