Adapting your game for Samsung Smart TV is much like porting your game to any other platform with Unity. The hardware in the TV is very similar to mobile devices (ARM CPU + OpenGLES GPU), so you can expect similar performance metrics.
Open Unity with Samsung TV support.
In the Unity menu bar, go to File > Build Settings and switch the Build Target to Samsung TV.
Get the IP address of the TV from the TV’s Unity Launcher app.
Unity メニューバーで Edit > Project Settings > Physics の順に選び、Physics Manager ウィンドウを開きます。
For multiple TVs, type all IP addresses, separating each one with a forward slash (“/”) as shown in the image below.
There are several different Samsung TV models released each year. Unity works on the following models:
Note that premium models have a faster CPU and higher end GPU.
The input mechanism is different depending on the model of TV.
2015 models have no touchpad. They have an accelerometer in the remote as well as air mouse capabilities.
2016 models have IR-only remotes and instead gamepads are used to provide primary input.
Unity makes dealing with different input devices easier by providing input modes. See the Samsung TV Input section for more details on input modes.
To selectively compile in code for Samsung TV, use the following:
#if UNITY_SAMSUNGTV
// Samsung TV specific code
#endif
Note that this is also active for the editor.
To check at runtime if you are running on Samsung TV, use:
if (Application.platform == RuntimePlatform.SamsungTVPlayer)
{
// Samsung TV specific code
}
You can obtain the model like this:
SystemInfo.deviceModel
Possible return values include:
STANDARD_15
STANDARD_16
URL リンクを追加することができます。
Samsung provides documentation on developing for Samsung Smart TV on Samsung’s developer forum. A lot of the information on this site does not apply to Unity users (it mainly supports web/Flash applications), but you might still find some of it useful.
In order to distribute your application to Samsung Apps TV store, you need to register your application and it must go through a certification process provided by Samsung or its affiliate at Seller Office before being launched on the store.