Skip to content

Commit

Permalink
rebranded
Browse files Browse the repository at this point in the history
  • Loading branch information
botaohu committed Mar 5, 2024
1 parent 0981676 commit 5934945
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Editor/MultipeerConnectivityTransportBuildProcessor.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: Copyright 2023 Holo Interactive <dev@holoi.com>
// SPDX-FileContributor: Yuchen Zhang <yuchen@holoi.com>
// SPDX-FileCopyrightText: Copyright 2023 Reality Design Lab <dev@reality.design>
// SPDX-FileContributor: Yuchen Zhang <yuchenz27@outlook.com>
// SPDX-License-Identifier: MIT

using System.IO;
Expand Down
4 changes: 2 additions & 2 deletions Runtime/MultipeerConnectivityTransport.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-FileCopyrightText: Copyright 2023 Holo Interactive <dev@holoi.com>
// SPDX-FileContributor: Yuchen Zhang <yuchen@holoi.com>
// SPDX-FileCopyrightText: Copyright 2023 Reality Design Lab <dev@reality.design>
// SPDX-FileContributor: Yuchen Zhang <yuchenz27@outlook.com>
// SPDX-License-Identifier: MIT

using System;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,16 @@
buildSettings = {
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 22UNC7G33B;
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
MACOSX_DEPLOYMENT_TARGET = 14.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
SUPPORTED_PLATFORMS = "xrsimulator iphoneos xros";
TARGETED_DEVICE_FAMILY = "1,2,7";
TVOS_DEPLOYMENT_TARGET = 17.0;
WATCHOS_DEPLOYMENT_TARGET = 10.0;
};
name = Debug;
};
Expand All @@ -253,10 +259,16 @@
buildSettings = {
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 22UNC7G33B;
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
MACOSX_DEPLOYMENT_TARGET = 14.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
SUPPORTED_PLATFORMS = "xrsimulator iphoneos xros";
TARGETED_DEVICE_FAMILY = "1,2,7";
TVOS_DEPLOYMENT_TARGET = 17.0;
WATCHOS_DEPLOYMENT_TARGET = 10.0;
};
name = Release;
};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: Copyright 2023 Reality Design Lab <[email protected]>
// SPDX-FileContributor: Yuchen Zhang <[email protected]>
// SPDX-License-Identifier: MIT

#import <MultipeerConnectivity/MultipeerConnectivity.h>

// Browser callbacks
Expand Down
2 changes: 1 addition & 1 deletion Source~/build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

# SPDX-FileCopyrightText: Copyright 2023 Holo Interactive <dev@holoi.com>
# SPDX-FileCopyrightText: Copyright 2023 Reality Design Lab <dev@reality.design>
# SPDX-FileContributor: Botao Hu <[email protected]>
# SPDX-License-Identifier: MIT

Expand Down
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
{
"name": "com.holoi.netcode.transport.multipeer-connectivity",
"name": "org.realitydeslab.netcode.transport.multipeer-connectivity",
"displayName": "Multipeer Connectivity for Netcode for GameObjects",
"version": "1.0.3",
"version": "1.0.4",
"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": {
"name": "Reality Design Lab",
"email": "[email protected]",
"url": "https://reality.design"
},
"dependencies": {
"com.unity.netcode.gameobjects": "1.7.1",
"com.unity.transport": "2.1.0"
Expand Down

0 comments on commit 5934945

Please sign in to comment.