如何使用Unity将我的隐私策略链接添加到Windows设置超级按钮?

时间:2013-11-26 14:14:38

标签: windows-8 unity3d windows-store

Windows应用商店规则4.1.1强制要求:

  

您必须在“说明”页面中提供对隐私权政策的访问权限   你的应用程序,以及在应用程序的设置中显示   Windows设置的魅力。

“描述”页面很简单,因为当您在商店中设置应用程序时,可以在其中输入URL。

但是我对如何在Unity项目中的Windows设置超级按钮中添加此条目感到有点无能为力。我找到了this的答案,但这假设您完全掌控并了解您的Windows应用商店应用,而我只是从Unity导出,所以我不知道我会把代码放在哪里。< / p>

那么,我该怎么做?

2 个答案:

答案 0 :(得分:1)

Unity将游戏导出为JS或C#。

所以看看这些样本http://code.msdn.microsoft.com/windowsapps/Windows-8-Modern-Style-App-Samples。在这些示例中,您可以在应用程序中使用一些Setting Charm screnios。

但请记住,你应该在导出游戏后添加设置魅力。

答案 1 :(得分:0)

插件prime31/MetroEssentials具有registerSettingsCommand功能,允许您这样做。

// Registers a settings item with an associated message that will be displaed in a popup when clicked
public static void registerSettingsCommand( string title, string message )

// Registers a settings item with an action. When the settings item is clicked the action will be called.
public static void registerSettingsCommand( string title, Action onActivated )