├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons └── google_play_game_services_manager │ ├── plugin.cfg │ ├── plugin.gd │ └── singleton.gd ├── android ├── .build_version └── plugins │ ├── GodotGooglePlayGameServices.gdap │ └── GodotGooglePlayGameServices.release.aar ├── assets └── images │ ├── brand │ ├── android_icon.svg │ ├── android_icon.svg.import │ ├── games_controller.png │ ├── games_controller.png.import │ ├── github-social-preview.png │ ├── github-social-preview.png.import │ ├── github-social-preview.svg │ ├── github-social-preview.svg.import │ ├── godot_logo.svg │ ├── godot_logo.svg.import │ ├── grafico_funciones.png │ ├── grafico_funciones.png.import │ ├── ic_launcher_png-playstore.png │ ├── ic_launcher_png-playstore.png.import │ ├── icon.png │ ├── icon.png.import │ ├── icon.svg │ └── icon.svg.import │ └── screenshots │ ├── achievements.png │ ├── achievements.png.import │ ├── leaderboards.png │ ├── leaderboards.png.import │ ├── sign_in.png │ ├── sign_in.png.import │ ├── unlock_achievement.png │ └── unlock_achievement.png.import ├── example ├── achievements.gd ├── achievements.tscn ├── events.gd ├── events.tscn ├── leaderboards.gd ├── leaderboards.tscn ├── main.gd ├── main.tscn ├── menu.gd ├── menu.tscn ├── players.gd ├── players.tscn ├── resources │ ├── Roboto-Regular.ttf │ └── theme.tres ├── sign_in.gd ├── sign_in.tscn ├── snapshots.gd └── snapshots.tscn ├── icon.png ├── icon.png.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/README.md -------------------------------------------------------------------------------- /addons/google_play_game_services_manager/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/addons/google_play_game_services_manager/plugin.cfg -------------------------------------------------------------------------------- /addons/google_play_game_services_manager/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/addons/google_play_game_services_manager/plugin.gd -------------------------------------------------------------------------------- /addons/google_play_game_services_manager/singleton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/addons/google_play_game_services_manager/singleton.gd -------------------------------------------------------------------------------- /android/.build_version: -------------------------------------------------------------------------------- 1 | 3.5.3.stable 2 | -------------------------------------------------------------------------------- /android/plugins/GodotGooglePlayGameServices.gdap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/android/plugins/GodotGooglePlayGameServices.gdap -------------------------------------------------------------------------------- /android/plugins/GodotGooglePlayGameServices.release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/android/plugins/GodotGooglePlayGameServices.release.aar -------------------------------------------------------------------------------- /assets/images/brand/android_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/brand/android_icon.svg -------------------------------------------------------------------------------- /assets/images/brand/android_icon.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/brand/games_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/brand/games_controller.png -------------------------------------------------------------------------------- /assets/images/brand/games_controller.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/brand/github-social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/brand/github-social-preview.png -------------------------------------------------------------------------------- /assets/images/brand/github-social-preview.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/brand/github-social-preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/brand/github-social-preview.svg -------------------------------------------------------------------------------- /assets/images/brand/github-social-preview.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/brand/godot_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/brand/godot_logo.svg -------------------------------------------------------------------------------- /assets/images/brand/godot_logo.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/brand/grafico_funciones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/brand/grafico_funciones.png -------------------------------------------------------------------------------- /assets/images/brand/grafico_funciones.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/brand/ic_launcher_png-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/brand/ic_launcher_png-playstore.png -------------------------------------------------------------------------------- /assets/images/brand/ic_launcher_png-playstore.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/brand/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/brand/icon.png -------------------------------------------------------------------------------- /assets/images/brand/icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/brand/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/brand/icon.svg -------------------------------------------------------------------------------- /assets/images/brand/icon.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/screenshots/achievements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/screenshots/achievements.png -------------------------------------------------------------------------------- /assets/images/screenshots/achievements.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/screenshots/leaderboards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/screenshots/leaderboards.png -------------------------------------------------------------------------------- /assets/images/screenshots/leaderboards.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/screenshots/sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/screenshots/sign_in.png -------------------------------------------------------------------------------- /assets/images/screenshots/sign_in.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /assets/images/screenshots/unlock_achievement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/assets/images/screenshots/unlock_achievement.png -------------------------------------------------------------------------------- /assets/images/screenshots/unlock_achievement.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="keep" 4 | -------------------------------------------------------------------------------- /example/achievements.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/achievements.gd -------------------------------------------------------------------------------- /example/achievements.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/achievements.tscn -------------------------------------------------------------------------------- /example/events.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/events.gd -------------------------------------------------------------------------------- /example/events.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/events.tscn -------------------------------------------------------------------------------- /example/leaderboards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/leaderboards.gd -------------------------------------------------------------------------------- /example/leaderboards.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/leaderboards.tscn -------------------------------------------------------------------------------- /example/main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/main.gd -------------------------------------------------------------------------------- /example/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/main.tscn -------------------------------------------------------------------------------- /example/menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/menu.gd -------------------------------------------------------------------------------- /example/menu.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/menu.tscn -------------------------------------------------------------------------------- /example/players.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/players.gd -------------------------------------------------------------------------------- /example/players.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/players.tscn -------------------------------------------------------------------------------- /example/resources/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/resources/Roboto-Regular.ttf -------------------------------------------------------------------------------- /example/resources/theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/resources/theme.tres -------------------------------------------------------------------------------- /example/sign_in.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/sign_in.gd -------------------------------------------------------------------------------- /example/sign_in.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/sign_in.tscn -------------------------------------------------------------------------------- /example/snapshots.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/snapshots.gd -------------------------------------------------------------------------------- /example/snapshots.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/example/snapshots.tscn -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iakobs/godot-google-play-game-services-plugin/HEAD/project.godot --------------------------------------------------------------------------------