Version: 2020.1
言語: 日本語
法的要件を満たす
Unity を使用する

パッケージの共有

パッケージにアクセスするユーザー数を制御したり、閉域網の組織にパッケージレジストリサーバーを設定する必要がある場合は、独自のパッケージ レジストリサーバーを設定できます。

パッケージの開発が終了し他のユーザーと共有したい場合は、さまざまな方法があります。

Tarball 他の Unity ユーザーに zip や .tgz ファイルを配布することができます。このようにすると、直接、ローカルの .tgz ファイルからパッケージをインストール、または、zip や .tgz ファイルをコンピューターのローカルフォルダーで解凍し、そこからインストールすることができます
Git URL サポートされているプロトコル の 1 つを使って、Git リポジトリへのリンクを配布します。すると、Unity Package Manager では GitHub と GitLab のようなホスティングサービスからパッケージを取得できるため、ユーザーは Git URL を使用してパッケージをインストール できます。
Scoped Registry You can set up a package registry server to host your package and then publish it to that registry using npm’s publish command. Your package’s consumers can then set up a scoped registry configuration in their project to fetch your custom packages from your own package registry.

Unity Package Manager supports registries based on the “npm” protocol. You can use any off-the-shelf npm registry server and it should work, but Verdaccio is quick to set up and doesn’t require a lot of configuration.

Warning: When you set up your own package registry server, make sure you only use features that are compatible with Unity’s Scoped Registries. For example, Unity doesn’t support namespaces using the @scope notation that npm supports.

Most of the time, anonymous access within a local network is sufficient to fulfill your security requirements. However, if you want more control over who accesses packages via scoped registries, you can enable npm authentication for specific users. Your package’s customers can then configure their scoped registries to use their npm authentication tokens.

法的要件を満たす
Unity を使用する