YaGames is the Yandex.Games SDK extension for the Defold game engine.
What is Yandex.Games? It is a collection of HTML5 games for smartphones and computers. The games are available in Yandex Browser and the Yandex app. Games from the catalogue are displayed in Yandex recommendation systems, which have a total audience of more than 50 million users per month.
You can check here the size of Yandex.Games audience. The platform is constantly growing. It’s a great opportunity for Defold developers to publish their HTML5 games!
The only requirement of Yandex.Games is to implement its SDK. It’s straightforward to do with this extension. Also, it’s an excellent idea to translate your game into the Russian language. And the title, too. 99% of the audience is Russian-speaking.
Feel free to ask any questions. I’ll help you as much as I can.
Looking at the categories on the left, it looks like right now is a very good time to try and target some of those underserved niches before they get as flooded as some of the others. Card, Casino, Economy (Zero!!!), and RPG have very few games listed. Publish some Defold made ones!!
Translate your game to the Russian language.
We have worked with https://www.fiverr.com/brightsiderus multiple times now for games translation from English to Russian and every time native speakers have praised the quality.
Yes, your point is absolutely right! There are not so many quality games, and it’s easy to be featured in “Our choice” category and get lots of traffic for free - send an email to the moderators.
*In fact, not all games have English translations, and you should look at the Russian version of the portal with the .ru domain. For example, the economic games category.
That’s a good catch. Russian version still has only a few RPG ones. I remember when I tested a while ago a lot of the games had not very impressive quality. Don’t sleep on this opportunity people! And the same game you make for Yandex Games can be published on other Instant game platforms / as a web game / as a mobile game.
Also interesting that Russian version has some unique categories / is lacking some. For example, Russian side has a Masculinity category. Very interesting!
@marat.giliazov Could you add a “defold” keyword to your Catapult game so it shows up in the search?
Ok published my game on there…Hopefully it is implemented correctly… I put the defold keyword in there as you suggest… any idea aglitchman how long it will take…
Cheers.
Is this something Yandex Games does for you? Otherwise you can detect an ad playing and set the update rate of the collection proxy of the current screen to 0 to pause it while the ad is running.
I figured it out - thankyou.
I was calling the ad from my main menu proxy… before calling the game proxy.
The time step was only happening occasionally. So I assume the ad would sometimes come in fast when the main menu was still present… and sometimes slowly when the game proxy had loaded. This must have affected the callback as the main menu was unloaded.
When I moved the ad into the init() of the game proxy things were fixed.
So it had to do with the nature of an async callback.