Jazz Macedo

Results 4 comments of Jazz Macedo

I'm getting a similar error when using other package that depends on this one ``` Execution failed for task ':app:checkQaReleaseAarMetadata'. > Could not resolve all files for configuration ':app:qaReleaseRuntimeClasspath'. >...

I was having the same issue, and I used this approach and worked. ``` tools = [ Tool( name="Search", func=search.run, description="useful for when you need to answer questions about current...

Check the access token expiration time, by default is 20 seconds. If the time between request and load the scene is bigger than 20 seconds the token will expire and...

On game server: see [UnetGameRoom](https://github.com/alvyxaz/barebones-masterserver/blob/master/MasterServerFramework2/Assets/Barebones/Demos/Common/Scripts/UnetGameRoom.cs). You can reply info for all clients connected. ``` simple example: private int ConnectedPlayersCount; UnetGameRoom _gameRoom = GameObject.FindObjectOfType(); _gameRoom.PlayerJoined = (player) => { ConnectedPlayersCount++; }...