Instant Games 可以让玩家在 Facebook 平台上随时玩到游戏的新方式. 基于 HTML5 技术, 可以让玩家直接从新闻Feed或者聊天消息中打开游戏, 同时支持桌面和移动设备.
在把你的 Defold 游戏发布到 Facebook 之前, 需要对游戏项目进行一些设定:
在 Facebook App Dashboard 里创建 Instant Games 应用. 详情请见 Instant Games 入门指南.
在你的 game.project 文件中添加 Instant Games 扩展依赖. 即把 “https://github.com/defold/extension-fbinstant/archive/master.zip” 添加到 Dependencies 属性中.
确保在你打包游戏生成的 “index.html” 文件包含了 Instant Games SDK.
<script src="https://connect.facebook.net/en_US/fbinstant.6.3.js"></script>
关于打包设置详情请见 HTML5 教程.
都准备好之后, 打包 HTML5 游戏并上传至 Facebook.
Instant Games 扩展使用命名空间 fbinstant.*
, 用 Lua API 对 Javascript SDK 进行了封装. 此扩展基本上是从 Javascript SDK 到 Lua API 一一对应的.
比如, 看以下 Javascript 代码:
FBInstant.initializeAsync().then(function() {
FBInstant.startGameAsync().then(function() {
var playerID = FBInstant.player.getID();
var playerName = FBInstant.player.getName();
});
});
相应的 Lua 代码是这样的:
fbinstant.initialize(function(self, success)
fbinstant.start_game(function(self, success)
local player_id = fbinstant.get_player().id
local player_name = fbinstant.get_player().name
end)
end)
关于如何在Defold中使用 Instant Games SDK 详情请见 API documentation.
有个 Defold 游戏 “Tic Tac Toe” 的 Instant Games 版本在 官方 GitHub 代码库 提供了完整的源码和素材. 可以作为学习资料或者素材来使用.
Facebook Instant Games 最佳实践 建议游戏首次载入时间不得超过5秒. 这对 Defold 来说有点勉强, 好在还有一些方法能减小游戏体积:
此功能尚处于测试阶段且没有说明文档. 这里: https://forum.defold.com/t/stripping-appmanifest-maker/16059 有一个可以自动生成 app.manifests 文件的工具.
这种把内容分块, 保存到服务器上然后按需下载并缓存的方法可以有效减少 Instant Game 包体. 这种方法由 Defold 的 热更新 系统提供支持.
关于 HTML5 和 Instant Games 的已知问题详见 HTML5 教程已知问题部分.
Did you spot an error or do you have a suggestion? Please let us know on GitHub!
GITHUB