• Categories
  • Recent
  • Tags
  • Popular
  • Solved
  • Unsolved
  • Users
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Darkly)
  • No Skin
Collapse
brainCloud Forums
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    Load new posts
Log in to post
  • F

    Discussion - A/B Testing

    Scheduled Pinned Locked Moved Unsolved General ab testing testing
    5
    0 Votes
    5 Posts
    680 Views
    F

    @JasonL
    Yes we can do that too, I was just wondering how granular our control over the segment is, as one of the requirements for our testing was to have a precise number of users for each group.

    Thank you so much for the info, I'll write again if I have more questions.

  • F

    iOS Purchase Verification not registering the purchase

    Scheduled Pinned Locked Moved Unsolved General iap ios
    5
    0 Votes
    5 Posts
    947 Views
    Paul WinterhalderP

    Ah! Thanks for letting us know!

  • L

    GetGroupsSocialLeaderboard

    Scheduled Pinned Locked Moved Feature Suggestions
    5
    0 Votes
    5 Posts
    1k Views
    L

    yes that reason too. readgroup result data is not enough so need more data(like score) so need.

  • W

    Global Entities retrieval issues and questions

    Scheduled Pinned Locked Moved Unsolved APIs
    5
    0 Votes
    5 Posts
    1k Views
    P

    @wjurica Assuming you're using c#, consider Newtonsoft for the deserialization & mapping process. It's two lines of code to map your data to a class.

    https://www.newtonsoft.com/json

  • K

    bridge.getCustomEntityServiceProxy()

    Scheduled Pinned Locked Moved Unsolved Cloud Code
    5
    0 Votes
    5 Posts
    1k Views
    Paul WinterhalderP

    Hi @kinco-h - I assume (hope) you got the info you needed from our support folks?

    Hint - you access chat support by clicking on the "Ask Support" button in the top right-hand corner of the Design Portal...

    2024-12-04_09-07-57.png

  • T

    Dedicated server getting all player's username

    Scheduled Pinned Locked Moved Unsolved General
    5
    0 Votes
    5 Posts
    1k Views
    T

    Oh, server can use client API

  • K

    Could RTT be used to broadcast player-authoritative movement periodically?

    Scheduled Pinned Locked Moved Unsolved General rtt
    5
    0 Votes
    5 Posts
    1k Views
    Paul WinterhalderP

    All very good points @Panagiotis-Milios !

  • K

    Is there a place I can see all possible error code that can come back from various APIs?

    Scheduled Pinned Locked Moved Unsolved Cloud Code cloud code error
    5
    0 Votes
    5 Posts
    2k Views
    Paul WinterhalderP

    There is a global list of reason codes here - https://docs.braincloudservers.com/api/appendix/reasonCodes

  • L

    Stop making all tabs go to the same project. Immediately.

    Scheduled Pinned Locked Moved Portal-X Suggestions
    5
    0 Votes
    5 Posts
    2k Views
    L

    Diving into our new game and found a work-around ~ use private viewing. I have our reference game open in a private window, and the new project in the main one.

  • J

    Global Entities What, when, where and how?

    Scheduled Pinned Locked Moved General entity database
    5
    0 Votes
    5 Posts
    2k Views
    J

    Thank you, fantastic. I appreciate all the information you have given.

  • G

    Issue with Auth when running outside of Unity editor

    Scheduled Pinned Locked Moved General ios macos authentication
    5
    0 Votes
    5 Posts
    1k Views
    Michael CostaM

    Hello @Gavin-Beard!

    We've had trouble reproducing this issue on our end. After some testing with a small app on MacOS and iOS, we have not been able to see the error you are encountering using Unity 2021.3.8.

    If you could, please check out the app here and let us know if this issue is still persisting. It is a barebones authentication app and it should run on multiple devices. The Authentication.cs script has all the gory details. Just open up the Main scene under Assets > App > Misc > Main.unity to get it running. You will also need to add your brainCloud credentials, but you can copy the Authentication example template in brainCloud to test the app.

    Please let us know how this app works on your end and if any issues are encountered! You should be able to click on any error logs in the in-app console to copy the log to your device's clipboard.

    As for your specific issue, my best guess is that perhaps an external library of sorts might not be supported with brainCloud, such as the Newtonsoft Json.NET library. For JSON de/serializing, brainCloud comes with JsonFX. You can also make use of Unity's own JsonUtility for structured JSON de/serialization. Both the app I've shared and the examples on our GitHub make use of JsonFX extensively.

    If you'd like to know more and see how a more robust app can handle brainCloud authentication, as Franco suggested, you should check out our Authentication example on our Unity Examples GitHub.

    Hope this helps! Please let us know if you have further questions or inquiries about this.

  • Imperium42I

    Don't discourage modulation by charging per in-house calls

    Scheduled Pinned Locked Moved Feature Suggestions suggestion prices cloudscript price tiers cloud code script script
    5
    0 Votes
    5 Posts
    2k Views
    Imperium42I

    These points above are indeed good examples regarding "forcing bad practices":

    If I have 3 free API calls after the API call, after the 3rd freebie, I can return it and call again for 1 core + 3 more that can branch off again. This is inefficient for BC, yet beneficial for end-users (thus, forcing bad practices since it costs and gives more if we avoid the pre and post hooks).

    If a workaround to save API costs would be more work for the user, and costs more for BC, that's a lose-lose. If such a "hole" exists, shouldn't it be repriced for that consideration to make it the win-win you folks want it to be?

  • D

    Using numbers as JSON key.

    Scheduled Pinned Locked Moved Cloud Code cloud code
    5
    0 Votes
    5 Posts
    2k Views
    D

    @JasonL
    Thank you!!

  • C

    User Entity vs Global Entity Indexed ID

    Scheduled Pinned Locked Moved APIs unity cloudscript entities
    4
    0 Votes
    4 Posts
    1k Views
    Paul WinterhalderP

    Hi Chris,

    User entities are primarily indexed by profileId + entityType - so the singleton API will scale well no matter how many players you have.

    That said, if your use case gets more complicated, with say hundreds of entities of a particular type per user (say maybe you are modelling user created towns, that sort of thing) - you could consider using Owned Custom Entities instead. You can define addition, custom indexes for those... keeps those lookups fast and efficient.

    In addition, if you end up having >1000 Global Entities, you should definitely look at switching to Unowned Custom Entities. Same deal - you can define your own custom indexes...

    Hope that helps!

    Paul.

  • A

    Segmentation APIs

    Scheduled Pinned Locked Moved Cloud Code cloudscript segmentation
    4
    0 Votes
    4 Posts
    2k Views
    Paul WinterhalderP

    Hi @Alexandru ,

    We've just officially added the Segment call you're looking for to brainCloud 4.55 - which is targeted for release in the next ~30 days...

    Updated Roadmap here - https://portal.productboard.com/braincloud/1-braincloud-baas-roadmap

    Paul.

  • A

    Pre Hook for Authenticate Or send Custom content

    Scheduled Pinned Locked Moved Feature Suggestions prehooks authentication
    4
    0 Votes
    4 Posts
    1k Views
    A

    @JasonL I understand the reason, but please do provide a way to pass custom data to authenticate api so we can use that data to set user displayname or profile picture or soemthing else on post-hook.
    Without this, we have no choice but to call a seperate call from client (so no beneift of 2 free api inside cloud call)

  • M

    Global entities size

    Scheduled Pinned Locked Moved Solved General maximum size entities global entities
    4
    0 Votes
    4 Posts
    1k Views
    Paul WinterhalderP

    No problem - happy to help!

    Paul.

  • D

    Understanding VerifyPurchases for "Non-Consumables"

    Scheduled Pinned Locked Moved Solved APIs non-consumable verifypurchases
    4
    0 Votes
    4 Posts
    1k Views
    Paul WinterhalderP

    Happy to help! 👍

  • L

    is there automation scheduled events?

    Scheduled Pinned Locked Moved General portal automation event
    4
    0 Votes
    4 Posts
    1k Views
    L

    @paul-winterhalder
    then it can repeat push notice?

  • U

    Timeouts?

    Scheduled Pinned Locked Moved Solved APIs unity timeout
    4
    0 Votes
    4 Posts
    2k Views
    U

    Thanks guys! I figured it would be ridiculous if I had to do timeout checks and retries myself 🙂

  • Login

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Solved
  • Unsolved
  • Users