-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: UPM on npsjs.com | ||
on: | ||
release: | ||
types: [created] | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm publish | ||
working-directory: . | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
{ | ||
"name": "com.community.netcode.transport.multipeer-connectivity", | ||
"name": "com.holoi.netcode.transport.multipeer-connectivity", | ||
"displayName": "Multipeer Connectivity for Netcode for GameObjects", | ||
"version": "0.0.1", | ||
"unity": "2021.3", | ||
"version": "1.0.1", | ||
"unity": "2022.3", | ||
"description": "This package implemented the transport layer of Netcode for GameObjects with Apple Multipeer Connectivity, which can enable peer-to-peer communication between nearby devices.\n\nBy using Multipeer Connectivity, nearby devices can connect to each other when there is no WiFi or cellular network. Multipeer Connectivity is the technology behind AirDrop, which means it can transfer large file between devices very fast.\n\nPlease reference Apple's official document for detailed information: https://developer.apple.com/documentation/multipeerconnectivity.", | ||
"author": "Holo Interactive" | ||
} | ||
"author": "Holo Interactive", | ||
"dependencies": { | ||
"com.unity.netcode.gameobjects": "1.7.1" | ||
} | ||
} |