ご留意ください:Photon TrueSyncとThunderの開発は停止されており、今後はアップデートもパリリースされません。既存のアプリケーションへの影響はありませんが、現在開発中のアプリケーションについてはマイグレーションを推奨しています。 詳細情報はこちらをご覧ください。

Introduction

Photon Thunder is a replacement port of Unity's UNet HLAPI to use Photon infra structure, with complete support for all features of UNet's matchmaking API, also adding custom features from Photon.

For communication, Photon Thunder features cross-platform STUN-based NAT punchthrough, keeping the reliable Photon relay as a fallback option.

Except for a few optional features of the matchmaking systems, Photon Thunder has the same API as Unity's UNet HLAPI, so porting an existing multiplayer game to it should be a matter of changing a couple of scripts and menu prefabs.

Quick Comparison Of Thunder And UNet

    <tr>
        <th>
            Match Filtering
        </th>
        <td>
            Yes
        </td>
        <td>
            No
        </td>
    </tr>

    <tr>
        <th>
            Match Properties
        </th>
        <td>
            Yes
        </td>
        <td>
            No
        </td>
    </tr>
    <tr><th class="crossheading" colspan="3">Connectivity</th></tr>
    <tr>
        <th>
            LAN
        </th>
        <td>
            Yes
        </td>
        <td>
            Yes
        </td>
    </tr>

    <tr>
        <th>
            Relay
        </th>
        <td>
            Yes
        </td>
        <td>
            Yes
        </td>
    </tr>

    <tr>
        <th>
            NAT-punchthrough
        </th>
        <td>
            Yes (STUN)
        </td>
        <td>
            No
        </td>
    </tr>
    <tr><th class="crossheading" colspan="3">Costs</th></tr>
    <tr>
        <th>
            "Fast Action" game (1,000 CCU, 2TB)
        </th>
        <td>
            185USD
        </td>
        <td>
            960USD
        </td>
    </tr>

    <tr>
        <th>
            Included Traffic (1,000 CCU)
        </th>
        <td>
            3TB
        </td>
        <td>
            0TB
        </td>
    </tr>

    <tr>
        <th>
            Price per GB
        </th>
        <td>
            5 cents
        </td>
        <td>
            49 cents
        </td>
    </tr>

</tbody>
  Thunder UNet
Matchmaking
Basic Matchmaking Yes Yes

ドキュメントのトップへ戻る