注意 UNet は非推奨となり、今後 Unity から削除される予定です。新しいシステムが開発中です。詳細は ブログ と FAQ を参照してください。 |
Unity のマルチプレイヤーシステムには 2 つの種類の ネットワーク化されたオブジェクト があります。
ランタイム に動的に作成されるもの
シーンの一部として保存されるもの
ランタイムに動的に生成されるオブジェクトは、Multiplayer の スポーン システムを使用して作成されますが、オブジェクトをインスタンス化する元のプレハブは、Network Manager のリストに登録されていなければなりません。
ただし、シーンの一部として保存され (そのため、ロードされるときにすでにシーン内に存在する) ネットワーク化したゲームオブジェクトは処理が異なります。このようなオブジェクトはクライアントとサーバーの両方にシーンの一部としてロードされ、Multiplayer システムからスポーンメッセージが送られる前に、ランタイムに既に存在します。
シーンがロードされるとき、シーンに保存されネットワーク化されたゲームオブジェクトはすべて、クライアントとサーバー両方で無効にされます。その後、シーンが完全にロードされると、Network Manager がシーンのネットワーク化されたオブジェクトを自動的に処理して、すべてを登録し (そのため、それらはクライアント間で同期されます)、まるでそれらがランタイムにスポーンされたように有効にします。
シーンがロードされてから動的にゲームオブジェクトをスポーンする方法を使わず、ネットワーク化されたゲームオブジェクトをシーンに保存することには、いくつかの利点があります。
ネットワークマネージャーがネットワーク化したシーンのオブジェクトを生成するとき、それらのゲームオブジェクトは動的に生成されたゲームオブジェクトのように挙動します。Unity はゲームオブジェクトに更新と ClientRPC の呼び出しを送信します。
クライアントがゲームに参加する前にシーンのあるゲームオブジェクトがサーバー上で破棄されると、そのゲームオブジェクトは新しく加わったクライアントでは決して使用できません。
クライアントが接続すると、クライアントは、サーバーに存在しクライアントから可視なシーンゲームオブジェクトすべてに関する ObjectSpawnScene スポーンメッセージを受信します。このメッセージはクライアント上のゲームオブジェクトを有効にします。またこのメッセージは、サーバーにおけるそのオブジェクトの最新の状態を持っています。従って、そのクライアントから見えるゲームオブジェクト、しかも、サーバー上で破棄されていないもののみがクライアントでアクティベートされます。通常のシーンに保存されていないゲームオブジェクト同様、シーンのネットワーク化されたゲームオブジェクトも、クライアントがゲームに参加した時点で最新の状態からスタートします。
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.