{"id":20367821,"url":"https://github.com/flaxengine/onlineplatformxboxlive","last_synced_at":"2025-09-23T19:30:25.044Z","repository":{"id":105040169,"uuid":"453466905","full_name":"FlaxEngine/OnlinePlatformXboxLive","owner":"FlaxEngine","description":"Online platform implementation of Xbox Live for games made with Flax Engine","archived":false,"fork":false,"pushed_at":"2024-10-17T17:30:12.000Z","size":12,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-15T00:37:54.520Z","etag":null,"topics":["flax","flax-engine","gamedev","xbox","xbox-live"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FlaxEngine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-29T17:23:39.000Z","updated_at":"2024-02-25T19:30:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"26ccc050-f577-49f8-b8cc-b312b0c26ea1","html_url":"https://github.com/FlaxEngine/OnlinePlatformXboxLive","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FlaxEngine%2FOnlinePlatformXboxLive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FlaxEngine%2FOnlinePlatformXboxLive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FlaxEngine%2FOnlinePlatformXboxLive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FlaxEngine%2FOnlinePlatformXboxLive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FlaxEngine","download_url":"https://codeload.github.com/FlaxEngine/OnlinePlatformXboxLive/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233993645,"owners_count":18762814,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flax","flax-engine","gamedev","xbox","xbox-live"],"created_at":"2024-11-15T00:34:52.328Z","updated_at":"2025-09-23T19:30:24.573Z","avatar_url":"https://github.com/FlaxEngine.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Xbox Live for Flax Engine\n\nThis repository contains a plugin project for [Flax Engine](https://flaxengine.com/) games with [Xbox Live](https://docs.microsoft.com/en-us/gaming/xbox-live/) online platform implementation that covers: user profile, friends list, online presence, achevements, cloud savegames and more.\n\nMinimum supported Flax version: `1.3`.\n\n## Installation\n\n1. Clone repo into `\u003cgame-project\u003e\\Plugins\\OnlinePlatformXboxLive`\n\n2. Add reference to *OnlinePlatformXboxLive* project in your game by modyfying `\u003cgame-project\u003e.flaxproj` as follows:\n\n```\n...\n\"References\": [\n    {\n        \"Name\": \"$(EnginePath)/Flax.flaxproj\"\n    },\n    {\n        \"Name\": \"$(ProjectPath)/Plugins/OnlinePlatformXboxLive/OnlinePlatformXboxLive.flaxproj\"\n    }\n]\n```\n\n3. Add reference to Xbox Live plugin module in you game code module by modyfying `Source/Game/Game.Build.cs` as follows (or any other game modules using Online):\n\n```cs\n/// \u003cinheritdoc /\u003e\npublic override void Setup(BuildOptions options)\n{\n    base.Setup(options);\n\n    ...\n\n    switch (options.Platform.Target)\n    {\n    case TargetPlatform.XboxOne:\n    case TargetPlatform.XboxScarlett:\n        options.PublicDependencies.Add(\"OnlinePlatformXboxLive\");\n        break;\n    }\n}\n```\n\nThis will add reference to `OnlinePlatformXboxLive` module on Xbox platforms that are supported by GDK.\n\n4. Test it out!\n\nFinally you can use Xbox Live as online platform in your game:\n\n```cs\n// C#\nusing FlaxEngine.Online;\nusing FlaxEngine.Online.XboxLive;\n\nvar platform = new OnlinePlatformXboxLive();\nOnline.Initialize(platform);\n```\n\n```cpp\n// C++\n#include \"Engine/Online/Online.h\"\n#include \"OnlinePlatformXboxLive/OnlinePlatformXboxLive.h\"\n\nauto platform = New\u003cOnlinePlatformXboxLive\u003e();\nOnline::Initialize(platform);\n```\n\nThen use [Online](https://docs.flaxengine.com/manual/networking/online/index.html) system to access online platform (user profile, friends, achievements, cloud saves, etc.). \n\n5. Setup settings\n\nXbox Live plugin automatically uses Xbox One or Xbox Scarlett platform settings (`GDKPlatformSettings`) so ensure to setup `TitleId`, `StoreId` and other properties used by Xbox Live.\n\n## License\n\nThis plugin ais released under **MIT License**.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflaxengine%2Fonlineplatformxboxlive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflaxengine%2Fonlineplatformxboxlive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflaxengine%2Fonlineplatformxboxlive/lists"}