- Hit Macro on the game menu:
- Hit New
| { | |
| "applinks": | |
| { | |
| "apps": [], | |
| "details": [ | |
| { | |
| "appID": "YOUR_APP_ID.YOUR_APP_BUNDLE_ID", | |
| "paths": ["*"] | |
| }] | |
| } |
| { | |
| "Effect": "Allow", | |
| "Action": [ | |
| "gamelift:StartGameSessionPlacement", | |
| "gamelift:DescribeGameSessionPlacement", | |
| "gamelift:StopGameSessionPlacement", | |
| "gamelift:CreatePlayerSession", | |
| "gamelift:CreatePlayerSessions", | |
| "gamelift:DescribeGameSessions", | |
| "gamelift:SearchGameSessions", |
| // javac Test.java | |
| // java Test | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.util.Scanner; | |
| public class Test { | |
| public static void main(String args[]) { |
| // Reference for YouTube tutorial Unity + Amazon GameLift Part 3: Integrate GameLift | |
| // https://youtu.be/1U5A01JuDJ0 | |
| using System; | |
| using UnityEngine; | |
| using Aws.GameLift.Realtime.Types; | |
| using Amazon; | |
| using Amazon.Lambda; | |
| using Amazon.Lambda.Model; | |
| using Amazon.CognitoIdentity; |
| // Example Lambda Client Service for Realtime Server example | |
| // Original source: https://aws.amazon.com/blogs/gametech/creating-servers-for-multiplayer-mobile-games-with-amazon-gamelift/ | |
| // Contains @BatteryAcid's edits to accompany video Unity + Amazon GameLift setup in web console | |
| // https://youtu.be/WaAZyqgkXDY | |
| //const uuid = require('uuid'); | |
| const {"v4": uuidv4} = require('uuid'); | |
| const AWS = require('aws-sdk'); | |
| const GameLift = new AWS.GameLift({region: 'us-east-1'}); |
Use nvm to avoid permission issues
intall latest node using nvm nvm install node
install latest npm once node has been updated npm install npm@latest -g
###docs
https://www.conspire.com/blog/2013/10/akka-at-conspire-part-5-the-importance-of/ http://boldradius.com/blog-post/U-jexSsAACwA_8nr/dos-and-donts-when-deploying-akka-in-production http://doc.akka.io/docs/akka/snapshot/scala/dispatchers.html#Types_of_dispatchers http://letitcrash.com/post/29044669086/balancing-workload-across-nodes-with-akka-2 http://www.michaelpollmeier.com/akka-work-pulling-pattern/
###java example