Ask a Question

Ask a Question
ANSWERED

How do I create a room handle from the CreateRoom response?

How do I create a room handle from the CreateRoom response? I tried var roomHandle = new RoomHandle(chatInfo, null); but I get an error about not being able to register services.

ANSWERED

Is chat view needed?

Is it necessary to build a ChatView or is there some way to leverage the RoomInfo I already have to get a RoomHandle?

ANSWERED

Is there a way to push out json output instead of string or bool based output on the microservices auto generated swagger

this is a current example public async Task GetActiveCurrencyId()
{
var inventoryView = await Services.Inventory.GetCurrent();
if (inventoryView.currencies.Count > 0)
{
KeyValuePair<string, long> firstCurrency = inventoryView.currencies.FirstOrDefault();
return firstCurrency.Key;
}
return "";
}

ANSWERED

Does the BeamContext stats set method cache the stats if the user goes offline?

Does Stats service support offline mode? When setting stats using BeamContext.Stats.Set, does it cache the stats if the user goes offline? Is there any retry logic to send the stats when the user is back online?

ANSWERED

What our options are for restoring player data from backup?

What our options are for restoring player data from backup?

ANSWERED

What's the designed workflow to store and retrieve images?

What's the designed workflow to store and retrieve images?

ANSWERED

Where can I see events created from the Beamable portal?

Hello 😄
I'm trying to set up events and there's something I don't quite understand... Directly from the portal, I can see events created from Unity Editor Content Manager AND from beamable portal. However, inside Unity Editor, I can only see the one I created in Unity Editor Content Manager.. I have spammed download, searching for it and check every realms but the event created on Beamble portal is nowhere to be seen. Am I missing something between Beamable portal and Unity Editor Content Manager synchronization ?

ANSWERED

What does the events done list show?

Hey Team - Quick question. We use this API endpoint https://api.beamable.com/object/event-players// to see if a player is participating in an event or has completed an event. This endpoint return a list of running and done events. Will the done list hold all of the events the player has ever participated in or is the history pruned at some point?

ANSWERED

My app is getting denied by the Apple App Store

I am getting rejected from the app store. What should I do?

ANSWERED

Player Stat Update speed

How long does it take for a stat to propagate for other players to view? So if player A sets stat "room", what's the max amount of time it'll take for player B to see player A's "room" stat? Do stats have an eventually consistent model once saved?