LoginSignup
8
2

UnityでCollab service is deprecated and has been replaced with PlasticSCMと出る

Last updated at Posted at 2023-11-18

ある日、Unityで新規プロジェクトを作成して開いたら、以下のようなエラーメッセージがConsoleに表示されました!

image.png

[Collab] Collab service is deprecated and has been replaced with PlasticSCM

和訳するとこんな感じです!

Collab サービスは非推奨となり、PlasticSCM に置き換えられました。

いや、そもそもCollab使うつもりないんですが…

CollabとかPlasticSCMってなんなの?

CollabもPlasticSCMも、複数人でUnityプロジェクトを共同開発するときに、ファイルを共有・同期するための仕組みです。

私はそのあたりをGitで管理しているため、Collabを使う必要はありません。

manifest.json から com.unity.collab-proxy を削除すれば解決

Collabを無効にしてみましょう!

Packages/manifest.json をテキストエディターで開きます。
状況によって内容は異なりますが、私の場合は以下のようになっていました。

{
  "dependencies": {
    "com.unity.collab-proxy": "1.6.0",
    "com.unity.ide.rider": "1.2.1",
    "com.unity.ide.visualstudio": "2.0.9",
    "com.unity.ide.vscode": "1.2.3",
    "com.unity.test-framework": "1.1.27",
    "com.unity.textmeshpro": "2.1.6",
    "com.unity.timeline": "1.2.18",
    "com.unity.ugui": "1.0.0",
    "com.unity.modules.ai": "1.0.0",
    "com.unity.modules.androidjni": "1.0.0",
    "com.unity.modules.animation": "1.0.0",
    "com.unity.modules.assetbundle": "1.0.0",
    "com.unity.modules.audio": "1.0.0",
    "com.unity.modules.cloth": "1.0.0",
    "com.unity.modules.director": "1.0.0",
    "com.unity.modules.imageconversion": "1.0.0",
    "com.unity.modules.imgui": "1.0.0",
    "com.unity.modules.jsonserialize": "1.0.0",
    "com.unity.modules.particlesystem": "1.0.0",
    "com.unity.modules.physics": "1.0.0",
    "com.unity.modules.physics2d": "1.0.0",
    "com.unity.modules.screencapture": "1.0.0",
    "com.unity.modules.terrain": "1.0.0",
    "com.unity.modules.terrainphysics": "1.0.0",
    "com.unity.modules.tilemap": "1.0.0",
    "com.unity.modules.ui": "1.0.0",
    "com.unity.modules.uielements": "1.0.0",
    "com.unity.modules.umbra": "1.0.0",
    "com.unity.modules.unityanalytics": "1.0.0",
    "com.unity.modules.unitywebrequest": "1.0.0",
    "com.unity.modules.unitywebrequestassetbundle": "1.0.0",
    "com.unity.modules.unitywebrequestaudio": "1.0.0",
    "com.unity.modules.unitywebrequesttexture": "1.0.0",
    "com.unity.modules.unitywebrequestwww": "1.0.0",
    "com.unity.modules.vehicles": "1.0.0",
    "com.unity.modules.video": "1.0.0",
    "com.unity.modules.vr": "1.0.0",
    "com.unity.modules.wind": "1.0.0",
    "com.unity.modules.xr": "1.0.0"
  }
}

一番上に "com.unity.collab-proxy": "1.6.0", という行があるので、これを削除します。

いったんUnityを閉じから再度同じプロジェクトを開きます。するとエラーは出なくなりました!
(Unityを再起動しないとエラーは出続けました。)

2023/12/02 追記

ここまでの手順で私のPCでは解決したんですが、「解決しないですー」という連絡を同僚からいただきました!

再調査したところ、以下の方の記事がとても参考になりました!

Unity Hubで、該当プロジェクトを右クリックし、 Disconnect from Unity Cloud をしたところ、同僚のPCでも解決しました!

image.png

よかった!

さいごに

本記事作成にあたり、以下のページを参考にさせていただきました。
ありがとうございました。

8
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
2