Releases: indiesoftby/defold-yagames
Releases · indiesoftby/defold-yagames
Quick fix
Fix: event_on
didn't work properly in the previous release.
0.7.5
0.7.4
What's New
- Added the
yagames.player_get_mode()
function. More information (in Russian) - https://yandex.ru/blog/gamesfordevelopers/novye-vozmozhnosti-dlya-neavtorizovannykh-polzovateley
0.7.3
What's New
- Implemented Shortcut API - https://yandex.ru/dev/games/doc/dg/sdk/sdk-shortcut.html
0.7.2
The release adds a function to get player's personal info. Use it to check the auth mode:
yagames.player_init({scopes = false, signed = true}, function(self, err)
if not err then
local personal_info = yagames.player_get_personal_info()
if personal_info.mode == "lite" then
-- do something!
end
end
end)
0.7.1
What's Changed
- Fixed error when recalling yagames.init by @sergeysinyavsky in #10
- Added RTB banner option "append_to_id"
New Contributors
- @sergeysinyavsky made their first contribution in #10
Full Changelog: 0.7.0...0.7.1