├── .gitignore ├── .vs └── UnityChatSystem │ └── v16 │ └── .suo ├── Assembly-CSharp-Editor.csproj ├── Assembly-CSharp.csproj ├── Assets ├── ChatSystem.meta ├── ChatSystem │ ├── Base.meta │ ├── Base │ │ ├── ChatSystemHandler.cs │ │ ├── ChatSystemHandler.cs.meta │ │ ├── IClient.cs │ │ ├── IClient.cs.meta │ │ ├── IInputDevice.cs │ │ ├── IInputDevice.cs.meta │ │ ├── IOutputDevice.cs │ │ ├── IOutputDevice.cs.meta │ │ ├── ITransmissionSystem.cs │ │ └── ITransmissionSystem.cs.meta │ ├── Cam.meta │ ├── Cam │ │ ├── DeviceCameraInputSystem.cs │ │ ├── DeviceCameraInputSystem.cs.meta │ │ ├── DeviceCameraOutputSystem.cs │ │ └── DeviceCameraOutputSystem.cs.meta │ ├── Keyboard.meta │ ├── Keyboard │ │ ├── KeyboardInputSystem.cs │ │ ├── KeyboardInputSystem.cs.meta │ │ ├── TextChatOutputSystem.cs │ │ └── TextChatOutputSystem.cs.meta │ ├── Mic.meta │ ├── Mic │ │ ├── AudioClient.cs │ │ ├── AudioClient.cs.meta │ │ ├── DeviceMicInputSystem.cs │ │ ├── DeviceMicInputSystem.cs.meta │ │ ├── DeviceSpeakerOutputSystem.cs │ │ └── DeviceSpeakerOutputSystem.cs.meta │ ├── Testing.cs │ ├── Testing.cs.meta │ ├── Transmissions.meta │ └── Transmissions │ │ ├── FirebaseTransmission.cs │ │ ├── FirebaseTransmission.cs.meta │ │ ├── PhotonTransmission.cs │ │ ├── PhotonTransmission.cs.meta │ │ ├── SocketTransmission.cs │ │ └── SocketTransmission.cs.meta ├── Photon.meta ├── Photon │ ├── PhotonChat.meta │ ├── PhotonChat │ │ ├── Code.meta │ │ ├── Code │ │ │ ├── ChannelCreationOptions.cs │ │ │ ├── ChannelCreationOptions.cs.meta │ │ │ ├── ChannelWellKnownProperties.cs │ │ │ ├── ChannelWellKnownProperties.cs.meta │ │ │ ├── ChatAppSettings.cs │ │ │ ├── ChatAppSettings.cs.meta │ │ │ ├── ChatChannel.cs │ │ │ ├── ChatChannel.cs.meta │ │ │ ├── ChatClient.cs │ │ │ ├── ChatClient.cs.meta │ │ │ ├── ChatDisconnectCause.cs │ │ │ ├── ChatDisconnectCause.cs.meta │ │ │ ├── ChatEventCode.cs │ │ │ ├── ChatEventCode.cs.meta │ │ │ ├── ChatOperationCode.cs │ │ │ ├── ChatOperationCode.cs.meta │ │ │ ├── ChatParameterCode.cs │ │ │ ├── ChatParameterCode.cs.meta │ │ │ ├── ChatPeer.cs │ │ │ ├── ChatPeer.cs.meta │ │ │ ├── ChatState.cs │ │ │ ├── ChatState.cs.meta │ │ │ ├── ChatUserStatus.cs │ │ │ ├── ChatUserStatus.cs.meta │ │ │ ├── IChatClientListener.cs │ │ │ ├── IChatClientListener.cs.meta │ │ │ ├── PhotonChat.asmdef │ │ │ ├── PhotonChat.asmdef.meta │ │ │ ├── changes-chat.txt │ │ │ └── changes-chat.txt.meta │ │ ├── Demos.meta │ │ └── Demos │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ ├── EventSystemSpawner.cs │ │ │ ├── EventSystemSpawner.cs.meta │ │ │ ├── OnStartDelete.cs │ │ │ ├── OnStartDelete.cs.meta │ │ │ ├── TextButtonTransition.cs │ │ │ ├── TextButtonTransition.cs.meta │ │ │ ├── TextToggleIsOnTransition.cs │ │ │ └── TextToggleIsOnTransition.cs.meta │ │ │ ├── DemoChat.meta │ │ │ └── DemoChat │ │ │ ├── AppSettingsExtensions.cs │ │ │ ├── AppSettingsExtensions.cs.meta │ │ │ ├── ChannelSelector.cs │ │ │ ├── ChannelSelector.cs.meta │ │ │ ├── ChatAppIdCheckerUI.cs │ │ │ ├── ChatAppIdCheckerUI.cs.meta │ │ │ ├── ChatGui.cs │ │ │ ├── ChatGui.cs.meta │ │ │ ├── DemoChat-Scene.unity │ │ │ ├── DemoChat-Scene.unity.meta │ │ │ ├── FriendItem.cs │ │ │ ├── FriendItem.cs.meta │ │ │ ├── IgnoreUiRaycastWhenInactive.cs │ │ │ ├── IgnoreUiRaycastWhenInactive.cs.meta │ │ │ ├── NamePickGui.cs │ │ │ └── NamePickGui.cs.meta │ ├── PhotonLibs.meta │ ├── PhotonLibs │ │ ├── Metro.meta │ │ ├── Metro │ │ │ ├── Photon3Unity3D.dll │ │ │ ├── Photon3Unity3D.dll.meta │ │ │ ├── Photon3Unity3D.pdb │ │ │ ├── Photon3Unity3D.pdb.meta │ │ │ ├── Photon3Unity3D.pri │ │ │ └── Photon3Unity3D.pri.meta │ │ ├── Photon3Unity3D.dll │ │ ├── Photon3Unity3D.dll.meta │ │ ├── Photon3Unity3D.pdb │ │ ├── Photon3Unity3D.pdb.meta │ │ ├── Photon3Unity3D.xml │ │ ├── Photon3Unity3D.xml.meta │ │ ├── WebSocket.meta │ │ ├── WebSocket │ │ │ ├── SocketWebTcp.cs │ │ │ ├── SocketWebTcp.cs.meta │ │ │ ├── WebSocket.cs │ │ │ ├── WebSocket.cs.meta │ │ │ ├── WebSocket.jslib │ │ │ ├── WebSocket.jslib.meta │ │ │ ├── websocket-sharp.README │ │ │ ├── websocket-sharp.README.meta │ │ │ ├── websocket-sharp.dll │ │ │ └── websocket-sharp.dll.meta │ │ ├── changes-library.txt │ │ ├── changes-library.txt.meta │ │ ├── netstandard2.0.meta │ │ └── netstandard2.0 │ │ │ ├── Photon3Unity3D.deps.json │ │ │ ├── Photon3Unity3D.deps.json.meta │ │ │ ├── Photon3Unity3D.dll │ │ │ ├── Photon3Unity3D.dll.meta │ │ │ ├── Photon3Unity3D.pdb │ │ │ ├── Photon3Unity3D.pdb.meta │ │ │ ├── Photon3Unity3D.xml │ │ │ └── Photon3Unity3D.xml.meta │ ├── PhotonRealtime.meta │ ├── PhotonRealtime │ │ ├── Code.meta │ │ ├── Code │ │ │ ├── AppSettings.cs │ │ │ ├── AppSettings.cs.meta │ │ │ ├── ConnectionHandler.cs │ │ │ ├── ConnectionHandler.cs.meta │ │ │ ├── CustomTypesUnity.cs │ │ │ ├── CustomTypesUnity.cs.meta │ │ │ ├── Extensions.cs │ │ │ ├── Extensions.cs.meta │ │ │ ├── FriendInfo.cs │ │ │ ├── FriendInfo.cs.meta │ │ │ ├── LoadBalancingClient.cs │ │ │ ├── LoadBalancingClient.cs.meta │ │ │ ├── LoadbalancingPeer.cs │ │ │ ├── LoadbalancingPeer.cs.meta │ │ │ ├── PhotonPing.cs │ │ │ ├── PhotonPing.cs.meta │ │ │ ├── PhotonPingClasses.cs │ │ │ ├── PhotonPingClasses.cs.meta │ │ │ ├── PhotonRealtime.asmdef │ │ │ ├── PhotonRealtime.asmdef.meta │ │ │ ├── Player.cs │ │ │ ├── Player.cs.meta │ │ │ ├── Region.cs │ │ │ ├── Region.cs.meta │ │ │ ├── RegionHandler.cs │ │ │ ├── RegionHandler.cs.meta │ │ │ ├── Room.cs │ │ │ ├── Room.cs.meta │ │ │ ├── RoomInfo.cs │ │ │ ├── RoomInfo.cs.meta │ │ │ ├── SupportLogger.cs │ │ │ ├── SupportLogger.cs.meta │ │ │ ├── WebRpc.cs │ │ │ ├── WebRpc.cs.meta │ │ │ ├── changes-realtime.txt │ │ │ └── changes-realtime.txt.meta │ │ ├── Demos.meta │ │ └── Demos │ │ │ ├── DemoLoadBalancing.meta │ │ │ └── DemoLoadBalancing │ │ │ ├── ConnectAndJoinRandomLb.cs │ │ │ ├── ConnectAndJoinRandomLb.cs.meta │ │ │ ├── DemoLoadBalancing-Scene.unity │ │ │ ├── DemoLoadBalancing-Scene.unity.meta │ │ │ ├── Jura-Medium-LB.ttf │ │ │ └── Jura-Medium-LB.ttf.meta │ ├── PhotonUnityNetworking.meta │ ├── PhotonUnityNetworking │ │ ├── Code.meta │ │ ├── Code │ │ │ ├── CustomTypes.cs │ │ │ ├── CustomTypes.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── AccountService.cs │ │ │ │ ├── AccountService.cs.meta │ │ │ │ ├── CopyIcon.png │ │ │ │ ├── CopyIcon.png.meta │ │ │ │ ├── CopyIconPro.png │ │ │ │ ├── CopyIconPro.png.meta │ │ │ │ ├── PhotonEditor.cs │ │ │ │ ├── PhotonEditor.cs.meta │ │ │ │ ├── PhotonEditorUtils.cs │ │ │ │ ├── PhotonEditorUtils.cs.meta │ │ │ │ ├── PhotonGUI.cs │ │ │ │ ├── PhotonGUI.cs.meta │ │ │ │ ├── PhotonUnityNetworking.Editor.asmdef │ │ │ │ ├── PhotonUnityNetworking.Editor.asmdef.meta │ │ │ │ ├── PhotonViewHandler.cs │ │ │ │ ├── PhotonViewHandler.cs.meta │ │ │ │ ├── PhotonViewInspector.cs │ │ │ │ ├── PhotonViewInspector.cs.meta │ │ │ │ ├── PunGradient.png │ │ │ │ ├── PunGradient.png.meta │ │ │ │ ├── PunSceneSettings.cs │ │ │ │ ├── PunSceneSettings.cs.meta │ │ │ │ ├── PunSceneSettingsFile.asset │ │ │ │ ├── PunSceneSettingsFile.asset.meta │ │ │ │ ├── PunSceneSettingsInspector.cs │ │ │ │ ├── PunSceneSettingsInspector.cs.meta │ │ │ │ ├── ReordableList.meta │ │ │ │ ├── ReordableList │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── LICENSE.txt.meta │ │ │ │ │ ├── ReorderableListResources.cs │ │ │ │ │ └── ReorderableListResources.cs.meta │ │ │ │ ├── ServerSettingsInspector.cs │ │ │ │ ├── ServerSettingsInspector.cs.meta │ │ │ │ ├── Views.meta │ │ │ │ ├── Views │ │ │ │ │ ├── MonoBehaviourPunEditor.cs │ │ │ │ │ ├── MonoBehaviourPunEditor.cs.meta │ │ │ │ │ ├── PhotonAnimatorViewEditor.cs │ │ │ │ │ ├── PhotonAnimatorViewEditor.cs.meta │ │ │ │ │ ├── PhotonRigidbody2DViewEditor.cs │ │ │ │ │ ├── PhotonRigidbody2DViewEditor.cs.meta │ │ │ │ │ ├── PhotonRigidbodyViewEditor.cs │ │ │ │ │ ├── PhotonRigidbodyViewEditor.cs.meta │ │ │ │ │ ├── PhotonTransformViewClassicEditor.cs │ │ │ │ │ ├── PhotonTransformViewClassicEditor.cs.meta │ │ │ │ │ ├── PhotonTransformViewEditor.cs │ │ │ │ │ └── PhotonTransformViewEditor.cs.meta │ │ │ │ ├── help.png │ │ │ │ └── help.png.meta │ │ │ ├── Enums.cs │ │ │ ├── Enums.cs.meta │ │ │ ├── Interfaces.meta │ │ │ ├── Interfaces │ │ │ │ ├── IPhotonViewCallbacks.cs │ │ │ │ ├── IPhotonViewCallbacks.cs.meta │ │ │ │ ├── IPunCallbacks.cs │ │ │ │ └── IPunCallbacks.cs.meta │ │ │ ├── PhotonHandler.cs │ │ │ ├── PhotonHandler.cs.meta │ │ │ ├── PhotonNetwork.cs │ │ │ ├── PhotonNetwork.cs.meta │ │ │ ├── PhotonNetworkPart.cs │ │ │ ├── PhotonNetworkPart.cs.meta │ │ │ ├── PhotonStreamQueue.cs │ │ │ ├── PhotonStreamQueue.cs.meta │ │ │ ├── PhotonUnityNetworking.asmdef │ │ │ ├── PhotonUnityNetworking.asmdef.meta │ │ │ ├── PhotonView.cs │ │ │ ├── PhotonView.cs.meta │ │ │ ├── PunClasses.cs │ │ │ ├── PunClasses.cs.meta │ │ │ ├── ServerSettings.cs │ │ │ ├── ServerSettings.cs.meta │ │ │ ├── Utilities.meta │ │ │ ├── Utilities │ │ │ │ ├── NestedComponentUtilities.cs │ │ │ │ └── NestedComponentUtilities.cs.meta │ │ │ ├── Views.meta │ │ │ └── Views │ │ │ │ ├── PhotonAnimatorView.cs │ │ │ │ ├── PhotonAnimatorView.cs.meta │ │ │ │ ├── PhotonRigidbody2DView.cs │ │ │ │ ├── PhotonRigidbody2DView.cs.meta │ │ │ │ ├── PhotonRigidbodyView.cs │ │ │ │ ├── PhotonRigidbodyView.cs.meta │ │ │ │ ├── PhotonTransformView.cs │ │ │ │ ├── PhotonTransformView.cs.meta │ │ │ │ ├── PhotonTransformViewClassic.cs │ │ │ │ └── PhotonTransformViewClassic.cs.meta │ │ ├── Demos.meta │ │ ├── Demos │ │ │ ├── DemoAsteroids.meta │ │ │ ├── DemoAsteroids │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── FlyerAsteroid.mat │ │ │ │ │ ├── FlyerAsteroid.mat.meta │ │ │ │ │ ├── FlyerPlayership.mat │ │ │ │ │ ├── FlyerPlayership.mat.meta │ │ │ │ │ ├── ParticleAfterburner.mat │ │ │ │ │ ├── ParticleAfterburner.mat.meta │ │ │ │ │ ├── WhiteSmooth.mat │ │ │ │ │ ├── WhiteSmooth.mat.meta │ │ │ │ │ ├── WhiteUnlit.mat │ │ │ │ │ └── WhiteUnlit.mat.meta │ │ │ │ ├── Models.meta │ │ │ │ ├── Models │ │ │ │ │ ├── Asteroid01.fbx │ │ │ │ │ ├── Asteroid01.fbx.meta │ │ │ │ │ ├── FlyerAsteroidB.fbx │ │ │ │ │ ├── FlyerAsteroidB.fbx.meta │ │ │ │ │ ├── LaserBolt.fbx │ │ │ │ │ ├── LaserBolt.fbx.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── Asteroid.mat │ │ │ │ │ │ ├── Asteroid.mat.meta │ │ │ │ │ │ ├── FlyerAsteroid1.mat │ │ │ │ │ │ ├── FlyerAsteroid1.mat.meta │ │ │ │ │ │ ├── SpaceshipGlow.mat │ │ │ │ │ │ ├── SpaceshipGlow.mat.meta │ │ │ │ │ │ ├── SpaceshipHull.mat │ │ │ │ │ │ └── SpaceshipHull.mat.meta │ │ │ │ │ ├── Spaceship.fbx │ │ │ │ │ └── Spaceship.fbx.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Bullet.prefab │ │ │ │ │ ├── Bullet.prefab.meta │ │ │ │ │ ├── PlayerListEntry.prefab │ │ │ │ │ ├── PlayerListEntry.prefab.meta │ │ │ │ │ ├── PlayerOverviewEntry.prefab │ │ │ │ │ ├── PlayerOverviewEntry.prefab.meta │ │ │ │ │ ├── RoomListEntry.prefab │ │ │ │ │ └── RoomListEntry.prefab.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── BigAsteroid.prefab │ │ │ │ │ ├── BigAsteroid.prefab.meta │ │ │ │ │ ├── SmallAsteroid.prefab │ │ │ │ │ ├── SmallAsteroid.prefab.meta │ │ │ │ │ ├── Spaceship.prefab │ │ │ │ │ └── Spaceship.prefab.meta │ │ │ │ ├── Scenes.meta │ │ │ │ ├── Scenes │ │ │ │ │ ├── DemoAsteroids-GameScene.unity │ │ │ │ │ ├── DemoAsteroids-GameScene.unity.meta │ │ │ │ │ ├── DemoAsteroids-LobbyScene.unity │ │ │ │ │ └── DemoAsteroids-LobbyScene.unity.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── AsteroidsGame.cs │ │ │ │ │ ├── AsteroidsGame.cs.meta │ │ │ │ │ ├── Game.meta │ │ │ │ │ ├── Game │ │ │ │ │ │ ├── Asteroid.cs │ │ │ │ │ │ ├── Asteroid.cs.meta │ │ │ │ │ │ ├── AsteroidsGameManager.cs │ │ │ │ │ │ ├── AsteroidsGameManager.cs.meta │ │ │ │ │ │ ├── Bullet.cs │ │ │ │ │ │ ├── Bullet.cs.meta │ │ │ │ │ │ ├── PlayerOverviewPanel.cs │ │ │ │ │ │ ├── PlayerOverviewPanel.cs.meta │ │ │ │ │ │ ├── Spaceship.cs │ │ │ │ │ │ └── Spaceship.cs.meta │ │ │ │ │ ├── Lobby.meta │ │ │ │ │ └── Lobby │ │ │ │ │ │ ├── LobbyMainPanel.cs │ │ │ │ │ │ ├── LobbyMainPanel.cs.meta │ │ │ │ │ │ ├── LobbyTopPanel.cs │ │ │ │ │ │ ├── LobbyTopPanel.cs.meta │ │ │ │ │ │ ├── PlayerListEntry.cs │ │ │ │ │ │ ├── PlayerListEntry.cs.meta │ │ │ │ │ │ ├── RoomListEntry.cs │ │ │ │ │ │ └── RoomListEntry.cs.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── FlyerAsteroidEmissive.tif │ │ │ │ │ ├── FlyerAsteroidEmissive.tif.meta │ │ │ │ │ ├── FlyerPlayershipAlbedo.tif │ │ │ │ │ ├── FlyerPlayershipAlbedo.tif.meta │ │ │ │ │ ├── FlyerPlayershipEmission.tif │ │ │ │ │ ├── FlyerPlayershipEmission.tif.meta │ │ │ │ │ ├── FlyerPlayershipOcclusion.tif │ │ │ │ │ └── FlyerPlayershipOcclusion.tif.meta │ │ │ ├── DemoHub.meta │ │ │ ├── DemoHub │ │ │ │ ├── DemoHub-Scene.unity │ │ │ │ ├── DemoHub-Scene.unity.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── PunDemos.DemoHubEditor.asmdef │ │ │ │ │ ├── PunDemos.DemoHubEditor.asmdef.meta │ │ │ │ │ ├── PunStartup.cs │ │ │ │ │ └── PunStartup.cs.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── DemoHubManager.cs │ │ │ │ │ ├── DemoHubManager.cs.meta │ │ │ │ │ ├── ToDemoHubButton.cs │ │ │ │ │ └── ToDemoHubButton.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ │ ├── Gradient.png │ │ │ │ │ ├── Gradient.png.meta │ │ │ │ │ ├── OutlinedSquaredBox.png │ │ │ │ │ ├── OutlinedSquaredBox.png.meta │ │ │ │ │ ├── PunIcon-White-129.png │ │ │ │ │ ├── PunIcon-White-129.png.meta │ │ │ │ │ ├── toHub.png │ │ │ │ │ └── toHub.png.meta │ │ │ │ ├── toHub.png │ │ │ │ └── toHub.png.meta │ │ │ ├── DemoProcedural.meta │ │ │ ├── DemoProcedural │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Black.mat │ │ │ │ │ ├── Black.mat.meta │ │ │ │ │ ├── LightGreen.mat │ │ │ │ │ ├── LightGreen.mat.meta │ │ │ │ │ ├── Orange.mat │ │ │ │ │ ├── Orange.mat.meta │ │ │ │ │ ├── Red.mat │ │ │ │ │ ├── Red.mat.meta │ │ │ │ │ ├── Yellow.mat │ │ │ │ │ └── Yellow.mat.meta │ │ │ │ ├── Procedural-Scene.unity │ │ │ │ ├── Procedural-Scene.unity.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Block.cs │ │ │ │ │ ├── Block.cs.meta │ │ │ │ │ ├── Cluster.cs │ │ │ │ │ ├── Cluster.cs.meta │ │ │ │ │ ├── IngameControlPanel.cs │ │ │ │ │ ├── IngameControlPanel.cs.meta │ │ │ │ │ ├── Noise.cs │ │ │ │ │ ├── Noise.cs.meta │ │ │ │ │ ├── ProceduralController.cs │ │ │ │ │ ├── ProceduralController.cs.meta │ │ │ │ │ ├── WorldGenerator.cs │ │ │ │ │ └── WorldGenerator.cs.meta │ │ │ ├── DemoSlotRacer.meta │ │ │ ├── DemoSlotRacer │ │ │ │ ├── Kenney Assets.meta │ │ │ │ ├── Kenney Assets │ │ │ │ │ ├── Copyrights.txt │ │ │ │ │ ├── Copyrights.txt.meta │ │ │ │ │ ├── Racing Kit.meta │ │ │ │ │ ├── Racing Kit │ │ │ │ │ │ ├── Models.meta │ │ │ │ │ │ └── Models │ │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ ├── _defaultMat.mat │ │ │ │ │ │ │ ├── _defaultMat.mat.meta │ │ │ │ │ │ │ ├── bark.mat │ │ │ │ │ │ │ ├── bark.mat.meta │ │ │ │ │ │ │ ├── grass.mat │ │ │ │ │ │ │ ├── grass.mat.meta │ │ │ │ │ │ │ ├── grey.mat │ │ │ │ │ │ │ ├── grey.mat.meta │ │ │ │ │ │ │ ├── red.mat │ │ │ │ │ │ │ ├── red.mat.meta │ │ │ │ │ │ │ ├── road.mat │ │ │ │ │ │ │ ├── road.mat.meta │ │ │ │ │ │ │ ├── tankco.mat │ │ │ │ │ │ │ ├── tankco.mat.meta │ │ │ │ │ │ │ ├── wall.mat │ │ │ │ │ │ │ ├── wall.mat.meta │ │ │ │ │ │ │ ├── white.mat │ │ │ │ │ │ │ └── white.mat.meta │ │ │ │ │ │ │ ├── Textures.meta │ │ │ │ │ │ │ ├── Textures │ │ │ │ │ │ │ ├── tankco.png │ │ │ │ │ │ │ └── tankco.png.meta │ │ │ │ │ │ │ ├── billboardLower.fbx │ │ │ │ │ │ │ ├── billboardLower.fbx.meta │ │ │ │ │ │ │ ├── flagGreen.fbx │ │ │ │ │ │ │ ├── flagGreen.fbx.meta │ │ │ │ │ │ │ ├── rail.fbx │ │ │ │ │ │ │ ├── rail.fbx.meta │ │ │ │ │ │ │ ├── roadCornerSmall.fbx │ │ │ │ │ │ │ ├── roadCornerSmall.fbx.meta │ │ │ │ │ │ │ ├── roadCornerSmallBorder.fbx │ │ │ │ │ │ │ ├── roadCornerSmallBorder.fbx.meta │ │ │ │ │ │ │ ├── roadRampLongCurvedWall.fbx │ │ │ │ │ │ │ ├── roadRampLongCurvedWall.fbx.meta │ │ │ │ │ │ │ ├── roadStart.fbx │ │ │ │ │ │ │ ├── roadStart.fbx.meta │ │ │ │ │ │ │ ├── roadStartPositions.fbx │ │ │ │ │ │ │ ├── roadStartPositions.fbx.meta │ │ │ │ │ │ │ ├── roadStraight.fbx │ │ │ │ │ │ │ ├── roadStraight.fbx.meta │ │ │ │ │ │ │ ├── roadStraightBridgeStart.fbx │ │ │ │ │ │ │ └── roadStraightBridgeStart.fbx.meta │ │ │ │ │ ├── Stylized city.meta │ │ │ │ │ └── Stylized city │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── 11 - Default.mat │ │ │ │ │ │ ├── 11 - Default.mat.meta │ │ │ │ │ │ ├── 13 - Default.mat │ │ │ │ │ │ ├── 13 - Default.mat.meta │ │ │ │ │ │ ├── 13 - Default22662.mat │ │ │ │ │ │ ├── 13 - Default22662.mat.meta │ │ │ │ │ │ ├── 13 - Default54.mat │ │ │ │ │ │ ├── 13 - Default54.mat.meta │ │ │ │ │ │ ├── 20 - Default.mat │ │ │ │ │ │ ├── 20 - Default.mat.meta │ │ │ │ │ │ ├── 22 - Default.mat │ │ │ │ │ │ ├── 22 - Default.mat.meta │ │ │ │ │ │ ├── 24 - Default.mat │ │ │ │ │ │ ├── 24 - Default.mat.meta │ │ │ │ │ │ ├── No Name.mat │ │ │ │ │ │ ├── No Name.mat.meta │ │ │ │ │ │ ├── car.mat │ │ │ │ │ │ ├── car.mat.meta │ │ │ │ │ │ ├── ground_green.mat │ │ │ │ │ │ ├── ground_green.mat.meta │ │ │ │ │ │ ├── ground_green232.mat │ │ │ │ │ │ ├── ground_green232.mat.meta │ │ │ │ │ │ ├── insides_2.mat │ │ │ │ │ │ ├── insides_2.mat.meta │ │ │ │ │ │ ├── insides_3.mat │ │ │ │ │ │ ├── insides_3.mat.meta │ │ │ │ │ │ ├── leaves_palm_243.mat │ │ │ │ │ │ ├── leaves_palm_243.mat.meta │ │ │ │ │ │ ├── roof.mat │ │ │ │ │ │ ├── roof.mat.meta │ │ │ │ │ │ ├── tank.mat │ │ │ │ │ │ ├── tank.mat.meta │ │ │ │ │ │ ├── windows_2.mat │ │ │ │ │ │ └── windows_2.mat.meta │ │ │ │ │ │ ├── Models.meta │ │ │ │ │ │ └── Models │ │ │ │ │ │ ├── bush1.FBX │ │ │ │ │ │ ├── bush1.FBX.meta │ │ │ │ │ │ ├── car_1.FBX │ │ │ │ │ │ ├── car_1.FBX.meta │ │ │ │ │ │ ├── car_3.FBX │ │ │ │ │ │ ├── car_3.FBX.meta │ │ │ │ │ │ ├── car_4.FBX │ │ │ │ │ │ ├── car_4.FBX.meta │ │ │ │ │ │ ├── hamvee.FBX │ │ │ │ │ │ ├── hamvee.FBX.meta │ │ │ │ │ │ ├── tree_1.FBX │ │ │ │ │ │ ├── tree_1.FBX.meta │ │ │ │ │ │ ├── tree_6.FBX │ │ │ │ │ │ └── tree_6.FBX.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── SlotCar_A.prefab │ │ │ │ │ ├── SlotCar_A.prefab.meta │ │ │ │ │ ├── SlotCar_B.prefab │ │ │ │ │ ├── SlotCar_B.prefab.meta │ │ │ │ │ ├── SlotCar_C.prefab │ │ │ │ │ ├── SlotCar_C.prefab.meta │ │ │ │ │ ├── SlotCar_D.prefab │ │ │ │ │ └── SlotCar_D.prefab.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── Player Controller.prefab │ │ │ │ │ └── Player Controller.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── BezierCurve.meta │ │ │ │ │ ├── BezierCurve │ │ │ │ │ │ ├── Bezier.cs │ │ │ │ │ │ ├── Bezier.cs.meta │ │ │ │ │ │ ├── BezierControlPointMode.cs │ │ │ │ │ │ ├── BezierControlPointMode.cs.meta │ │ │ │ │ │ ├── BezierCurve.cs │ │ │ │ │ │ ├── BezierCurve.cs.meta │ │ │ │ │ │ ├── BezierSpline.cs │ │ │ │ │ │ ├── BezierSpline.cs.meta │ │ │ │ │ │ ├── Editor.meta │ │ │ │ │ │ ├── Editor │ │ │ │ │ │ │ ├── BezierCurveInspector.cs │ │ │ │ │ │ │ ├── BezierCurveInspector.cs.meta │ │ │ │ │ │ │ ├── BezierSplineInspector.cs │ │ │ │ │ │ │ ├── BezierSplineInspector.cs.meta │ │ │ │ │ │ │ ├── LineInspector.cs │ │ │ │ │ │ │ ├── LineInspector.cs.meta │ │ │ │ │ │ │ ├── PunDemos.DemoSlotcarEditor.asmdef │ │ │ │ │ │ │ └── PunDemos.DemoSlotcarEditor.asmdef.meta │ │ │ │ │ │ ├── Line.cs │ │ │ │ │ │ ├── Line.cs.meta │ │ │ │ │ │ ├── SplinePosition.cs │ │ │ │ │ │ ├── SplinePosition.cs.meta │ │ │ │ │ │ ├── SplineWalker.cs │ │ │ │ │ │ └── SplineWalker.cs.meta │ │ │ │ │ ├── PlayerControl.cs │ │ │ │ │ ├── PlayerControl.cs.meta │ │ │ │ │ ├── SlotLanes.cs │ │ │ │ │ ├── SlotLanes.cs.meta │ │ │ │ │ ├── SlotRacerSplashScreen.cs │ │ │ │ │ └── SlotRacerSplashScreen.cs.meta │ │ │ │ ├── SlotCar-Scene.meta │ │ │ │ ├── SlotCar-Scene.unity │ │ │ │ ├── SlotCar-Scene.unity.meta │ │ │ │ └── SlotCar-Scene │ │ │ │ │ ├── LightingData.asset │ │ │ │ │ ├── LightingData.asset.meta │ │ │ │ │ ├── ReflectionProbe-0.exr │ │ │ │ │ └── ReflectionProbe-0.exr.meta │ │ │ ├── PhotonUnityNetworking.Demos.asmdef │ │ │ ├── PhotonUnityNetworking.Demos.asmdef.meta │ │ │ ├── PunBasics-Tutorial.meta │ │ │ ├── PunBasics-Tutorial │ │ │ │ ├── Animator.meta │ │ │ │ ├── Animator │ │ │ │ │ ├── Kyle Robot.controller │ │ │ │ │ └── Kyle Robot.controller.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Red Beam.mat │ │ │ │ │ ├── Red Beam.mat.meta │ │ │ │ │ ├── UnitTextureGreen12x.mat │ │ │ │ │ ├── UnitTextureGreen12x.mat.meta │ │ │ │ │ ├── UnitTextureRed12x.mat │ │ │ │ │ ├── UnitTextureRed12x.mat.meta │ │ │ │ │ ├── UnitTextureYellow12x.mat │ │ │ │ │ └── UnitTextureYellow12x.mat.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Demo Intro UI.prefab │ │ │ │ │ ├── Demo Intro UI.prefab.meta │ │ │ │ │ ├── Game Manager.prefab │ │ │ │ │ ├── Game Manager.prefab.meta │ │ │ │ │ ├── Player UI.prefab │ │ │ │ │ ├── Player UI.prefab.meta │ │ │ │ │ ├── Quit Room Button.prefab │ │ │ │ │ └── Quit Room Button.prefab.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── My Robot Kyle -done-.prefab │ │ │ │ │ └── My Robot Kyle -done-.prefab.meta │ │ │ │ ├── Scenes.meta │ │ │ │ ├── Scenes │ │ │ │ │ ├── PunBasics-Launcher.unity │ │ │ │ │ ├── PunBasics-Launcher.unity.meta │ │ │ │ │ ├── PunBasics-Room for 1.unity │ │ │ │ │ ├── PunBasics-Room for 1.unity.meta │ │ │ │ │ ├── PunBasics-Room for 2.unity │ │ │ │ │ ├── PunBasics-Room for 2.unity.meta │ │ │ │ │ ├── PunBasics-Room for 3.unity │ │ │ │ │ ├── PunBasics-Room for 3.unity.meta │ │ │ │ │ ├── PunBasics-Room for 4.unity │ │ │ │ │ └── PunBasics-Room for 4.unity.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── CameraWork.cs │ │ │ │ │ ├── CameraWork.cs.meta │ │ │ │ │ ├── GameManager.cs │ │ │ │ │ ├── GameManager.cs.meta │ │ │ │ │ ├── Launcher.cs │ │ │ │ │ ├── Launcher.cs.meta │ │ │ │ │ ├── LoaderAnime.cs │ │ │ │ │ ├── LoaderAnime.cs.meta │ │ │ │ │ ├── PlayerAnimatorManager.cs │ │ │ │ │ ├── PlayerAnimatorManager.cs.meta │ │ │ │ │ ├── PlayerManager.cs │ │ │ │ │ ├── PlayerManager.cs.meta │ │ │ │ │ ├── PlayerNameInputField.cs │ │ │ │ │ ├── PlayerNameInputField.cs.meta │ │ │ │ │ ├── PlayerUI.cs │ │ │ │ │ └── PlayerUI.cs.meta │ │ │ ├── PunCockpit.meta │ │ │ ├── PunCockpit │ │ │ │ ├── Forms.meta │ │ │ │ ├── Forms │ │ │ │ │ ├── ConnectToRegionUIForm.cs │ │ │ │ │ ├── ConnectToRegionUIForm.cs.meta │ │ │ │ │ ├── CreateRoomUiForm.cs │ │ │ │ │ ├── CreateRoomUiForm.cs.meta │ │ │ │ │ ├── LoadLevelUIForm.cs │ │ │ │ │ ├── LoadLevelUIForm.cs.meta │ │ │ │ │ ├── SetRoomCustomPropertyUIForm.cs │ │ │ │ │ ├── SetRoomCustomPropertyUIForm.cs.meta │ │ │ │ │ ├── UserIdUiForm.cs │ │ │ │ │ └── UserIdUiForm.cs.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Help Button.prefab │ │ │ │ │ ├── Help Button.prefab.meta │ │ │ │ │ ├── Tab Toggle.prefab │ │ │ │ │ └── Tab Toggle.prefab.meta │ │ │ │ ├── PunCockpit-Scene.unity │ │ │ │ ├── PunCockpit-Scene.unity.meta │ │ │ │ ├── PunCockpit.cs │ │ │ │ ├── PunCockpit.cs.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Autonomous UI.meta │ │ │ │ │ ├── Autonomous UI │ │ │ │ │ ├── AutoSyncSceneToggle.cs │ │ │ │ │ ├── AutoSyncSceneToggle.cs.meta │ │ │ │ │ ├── BackgroundTimeOutField.cs │ │ │ │ │ ├── BackgroundTimeOutField.cs.meta │ │ │ │ │ ├── CrcCheckToggle.cs │ │ │ │ │ ├── CrcCheckToggle.cs.meta │ │ │ │ │ ├── CurrentRoom.meta │ │ │ │ │ ├── CurrentRoom │ │ │ │ │ │ ├── CurrentRoomIsOpenToggle.cs │ │ │ │ │ │ ├── CurrentRoomIsOpenToggle.cs.meta │ │ │ │ │ │ ├── CurrentRoomIsVisibleToggle.cs │ │ │ │ │ │ └── CurrentRoomIsVisibleToggle.cs.meta │ │ │ │ │ ├── DocLinkButton.cs │ │ │ │ │ ├── DocLinkButton.cs.meta │ │ │ │ │ ├── GameVersionField.cs │ │ │ │ │ ├── GameVersionField.cs.meta │ │ │ │ │ ├── Generic.meta │ │ │ │ │ ├── Generic │ │ │ │ │ │ ├── BoolInputField.cs │ │ │ │ │ │ ├── BoolInputField.cs.meta │ │ │ │ │ │ ├── IntInputField.cs │ │ │ │ │ │ ├── IntInputField.cs.meta │ │ │ │ │ │ ├── StringInputField.cs │ │ │ │ │ │ ├── StringInputField.cs.meta │ │ │ │ │ │ ├── ToggleExpand.cs │ │ │ │ │ │ └── ToggleExpand.cs.meta │ │ │ │ │ ├── LayoutElementMatchSize.cs │ │ │ │ │ ├── LayoutElementMatchSize.cs.meta │ │ │ │ │ ├── NickNameField.cs │ │ │ │ │ ├── NickNameField.cs.meta │ │ │ │ │ ├── OnlineDocButton.cs │ │ │ │ │ ├── OnlineDocButton.cs.meta │ │ │ │ │ ├── SendRateField.cs │ │ │ │ │ ├── SendRateField.cs.meta │ │ │ │ │ ├── SendRateOnSerializeField.cs │ │ │ │ │ └── SendRateOnSerializeField.cs.meta │ │ │ │ │ ├── Controllers.meta │ │ │ │ │ ├── Controllers │ │ │ │ │ ├── PlayerDetailsController.cs │ │ │ │ │ └── PlayerDetailsController.cs.meta │ │ │ │ │ ├── InfosPanelPlaceholder.cs │ │ │ │ │ ├── InfosPanelPlaceholder.cs.meta │ │ │ │ │ ├── Lists.meta │ │ │ │ │ ├── Lists │ │ │ │ │ ├── FriendListCell.cs │ │ │ │ │ ├── FriendListCell.cs.meta │ │ │ │ │ ├── FriendListView.cs │ │ │ │ │ ├── FriendListView.cs.meta │ │ │ │ │ ├── PlayerListCell.cs │ │ │ │ │ ├── PlayerListCell.cs.meta │ │ │ │ │ ├── PlayerListView.cs │ │ │ │ │ ├── PlayerListView.cs.meta │ │ │ │ │ ├── PropertyCell.cs │ │ │ │ │ ├── PropertyCell.cs.meta │ │ │ │ │ ├── RegionListCell.cs │ │ │ │ │ ├── RegionListCell.cs.meta │ │ │ │ │ ├── RegionListView.cs │ │ │ │ │ ├── RegionListView.cs.meta │ │ │ │ │ ├── RoomListCell.cs │ │ │ │ │ ├── RoomListCell.cs.meta │ │ │ │ │ ├── RoomListView.cs │ │ │ │ │ └── RoomListView.cs.meta │ │ │ │ │ ├── PropertyFields.meta │ │ │ │ │ ├── PropertyFields │ │ │ │ │ ├── UserIdField.cs │ │ │ │ │ └── UserIdField.cs.meta │ │ │ │ │ ├── ReadOnlyProperties.meta │ │ │ │ │ ├── ReadOnlyProperties │ │ │ │ │ ├── AppVersionProperty.cs │ │ │ │ │ ├── AppVersionProperty.cs.meta │ │ │ │ │ ├── BestRegionInPrefsProperty.cs │ │ │ │ │ ├── BestRegionInPrefsProperty.cs.meta │ │ │ │ │ ├── CloudRegionProperty.cs │ │ │ │ │ ├── CloudRegionProperty.cs.meta │ │ │ │ │ ├── CountOfPlayersInRoomProperty.cs │ │ │ │ │ ├── CountOfPlayersInRoomProperty.cs.meta │ │ │ │ │ ├── CountOfPlayersOnMasterProperty.cs │ │ │ │ │ ├── CountOfPlayersOnMasterProperty.cs.meta │ │ │ │ │ ├── CountOfPlayersProperty.cs │ │ │ │ │ ├── CountOfPlayersProperty.cs.meta │ │ │ │ │ ├── CountOfRoomsProperty.cs │ │ │ │ │ ├── CountOfRoomsProperty.cs.meta │ │ │ │ │ ├── CurrentRoomAutoCleanupProperty.cs │ │ │ │ │ ├── CurrentRoomAutoCleanupProperty.cs.meta │ │ │ │ │ ├── CurrentRoomEmptyRoomTtlProperty.cs │ │ │ │ │ ├── CurrentRoomEmptyRoomTtlProperty.cs.meta │ │ │ │ │ ├── CurrentRoomExpectedUsersProperty.cs │ │ │ │ │ ├── CurrentRoomExpectedUsersProperty.cs.meta │ │ │ │ │ ├── CurrentRoomIsOfflineProperty.cs │ │ │ │ │ ├── CurrentRoomIsOfflineProperty.cs.meta │ │ │ │ │ ├── CurrentRoomIsOpenProperty.cs │ │ │ │ │ ├── CurrentRoomIsOpenProperty.cs.meta │ │ │ │ │ ├── CurrentRoomIsVisibleProperty.cs │ │ │ │ │ ├── CurrentRoomIsVisibleProperty.cs.meta │ │ │ │ │ ├── CurrentRoomMasterClientIdProperty.cs │ │ │ │ │ ├── CurrentRoomMasterClientIdProperty.cs.meta │ │ │ │ │ ├── CurrentRoomMaxPlayersProperty.cs │ │ │ │ │ ├── CurrentRoomMaxPlayersProperty.cs.meta │ │ │ │ │ ├── CurrentRoomNameProperty.cs │ │ │ │ │ ├── CurrentRoomNameProperty.cs.meta │ │ │ │ │ ├── CurrentRoomPlayerCountProperty.cs │ │ │ │ │ ├── CurrentRoomPlayerCountProperty.cs.meta │ │ │ │ │ ├── CurrentRoomPlayerTtlProperty.cs │ │ │ │ │ ├── CurrentRoomPlayerTtlProperty.cs.meta │ │ │ │ │ ├── CurrentRoomPropertiesListedInLobbyProperty.cs │ │ │ │ │ ├── CurrentRoomPropertiesListedInLobbyProperty.cs.meta │ │ │ │ │ ├── GameVersionProperty.cs │ │ │ │ │ ├── GameVersionProperty.cs.meta │ │ │ │ │ ├── IsConnectedAndReadyProperty.cs │ │ │ │ │ ├── IsConnectedAndReadyProperty.cs.meta │ │ │ │ │ ├── IsConnectedProperty.cs │ │ │ │ │ ├── IsConnectedProperty.cs.meta │ │ │ │ │ ├── OfflineModeProperty.cs │ │ │ │ │ ├── OfflineModeProperty.cs.meta │ │ │ │ │ ├── PingProperty.cs │ │ │ │ │ ├── PingProperty.cs.meta │ │ │ │ │ ├── PropertyListenerBase.cs │ │ │ │ │ ├── PropertyListenerBase.cs.meta │ │ │ │ │ ├── ServerAddressProperty.cs │ │ │ │ │ ├── ServerAddressProperty.cs.meta │ │ │ │ │ ├── ServerProperty.cs │ │ │ │ │ └── ServerProperty.cs.meta │ │ │ │ │ ├── ScoreHelper.cs │ │ │ │ │ ├── ScoreHelper.cs.meta │ │ │ │ │ ├── ThirdParty.meta │ │ │ │ │ └── ThirdParty │ │ │ │ │ ├── PunCockpitEmbed.cs │ │ │ │ │ └── PunCockpitEmbed.cs.meta │ │ │ ├── Shared Assets.meta │ │ │ ├── Shared Assets │ │ │ │ ├── Animations.meta │ │ │ │ ├── Animations │ │ │ │ │ ├── HumanoidCrouch.fbx │ │ │ │ │ ├── HumanoidCrouch.fbx.meta │ │ │ │ │ ├── HumanoidIdle.fbx │ │ │ │ │ ├── HumanoidIdle.fbx.meta │ │ │ │ │ ├── HumanoidIdleJumpUp.fbx │ │ │ │ │ ├── HumanoidIdleJumpUp.fbx.meta │ │ │ │ │ ├── HumanoidJumpAndFall.fbx │ │ │ │ │ ├── HumanoidJumpAndFall.fbx.meta │ │ │ │ │ ├── HumanoidMidAir.fbx │ │ │ │ │ ├── HumanoidMidAir.fbx.meta │ │ │ │ │ ├── HumanoidRun.fbx │ │ │ │ │ ├── HumanoidRun.fbx.meta │ │ │ │ │ ├── HumanoidRunTurn.fbx │ │ │ │ │ ├── HumanoidRunTurn.fbx.meta │ │ │ │ │ ├── HumanoidRunTurnSharp.fbx │ │ │ │ │ ├── HumanoidRunTurnSharp.fbx.meta │ │ │ │ │ ├── HumanoidStandTurn.fbx │ │ │ │ │ ├── HumanoidStandTurn.fbx.meta │ │ │ │ │ ├── HumanoidWalk.fbx │ │ │ │ │ ├── HumanoidWalk.fbx.meta │ │ │ │ │ ├── HumanoidWalkTurn.fbx │ │ │ │ │ ├── HumanoidWalkTurn.fbx.meta │ │ │ │ │ ├── HumanoidWalkTurnSharp.fbx │ │ │ │ │ ├── HumanoidWalkTurnSharp.fbx.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ └── Materials │ │ │ │ │ │ ├── EyesMaterial.mat │ │ │ │ │ │ ├── EyesMaterial.mat.meta │ │ │ │ │ │ ├── SkinMaterial.mat │ │ │ │ │ │ ├── SkinMaterial.mat.meta │ │ │ │ │ │ ├── SuitMaterial.mat │ │ │ │ │ │ ├── SuitMaterial.mat.meta │ │ │ │ │ │ ├── TeethMaterial.mat │ │ │ │ │ │ ├── TeethMaterial.mat.meta │ │ │ │ │ │ ├── TongueMaterial.mat │ │ │ │ │ │ └── TongueMaterial.mat.meta │ │ │ │ ├── Animator.meta │ │ │ │ ├── Animator │ │ │ │ │ ├── ThirdPersonAnimatorController.controller │ │ │ │ │ └── ThirdPersonAnimatorController.controller.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Gradient.mat │ │ │ │ │ ├── Gradient.mat.meta │ │ │ │ │ ├── PlayerDiamond.mat │ │ │ │ │ ├── PlayerDiamond.mat.meta │ │ │ │ │ ├── Robot_Color.mat │ │ │ │ │ ├── Robot_Color.mat.meta │ │ │ │ │ ├── UnitCircleMaterial.mat │ │ │ │ │ ├── UnitCircleMaterial.mat.meta │ │ │ │ │ ├── UnitCircleTexture.mat │ │ │ │ │ ├── UnitCircleTexture.mat.meta │ │ │ │ │ ├── UnitTextureBlue.mat │ │ │ │ │ ├── UnitTextureBlue.mat.meta │ │ │ │ │ ├── UnitTextureBlue12x.mat │ │ │ │ │ ├── UnitTextureBlue12x.mat.meta │ │ │ │ │ ├── UnitTextureRed.mat │ │ │ │ │ └── UnitTextureRed.mat.meta │ │ │ │ ├── Models.meta │ │ │ │ ├── Models │ │ │ │ │ ├── Pointer.fbx │ │ │ │ │ ├── Pointer.fbx.meta │ │ │ │ │ ├── Robot Kyle.fbx │ │ │ │ │ └── Robot Kyle.fbx.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── PointerPrefab.prefab │ │ │ │ │ ├── PointerPrefab.prefab.meta │ │ │ │ │ ├── UI.meta │ │ │ │ │ └── UI │ │ │ │ │ │ ├── Button Regular.prefab │ │ │ │ │ │ ├── Button Regular.prefab.meta │ │ │ │ │ │ ├── Toggle Regular.prefab │ │ │ │ │ │ ├── Toggle Regular.prefab.meta │ │ │ │ │ │ ├── Tooltip.prefab │ │ │ │ │ │ └── Tooltip.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── DocLinks.cs │ │ │ │ │ ├── DocLinks.cs.meta │ │ │ │ │ ├── ThirdPersonCharacter.cs │ │ │ │ │ ├── ThirdPersonCharacter.cs.meta │ │ │ │ │ ├── ThirdPersonUserControl.cs │ │ │ │ │ └── ThirdPersonUserControl.cs.meta │ │ │ │ ├── Skin.meta │ │ │ │ ├── Skin │ │ │ │ │ ├── 3dText.shader │ │ │ │ │ ├── 3dText.shader.meta │ │ │ │ │ ├── BoxBright.png │ │ │ │ │ ├── BoxBright.png.meta │ │ │ │ │ ├── BoxOrange.png │ │ │ │ │ ├── BoxOrange.png.meta │ │ │ │ │ ├── BoxOrangeRed.png │ │ │ │ │ ├── BoxOrangeRed.png.meta │ │ │ │ │ ├── BoxText.png │ │ │ │ │ ├── BoxText.png.meta │ │ │ │ │ ├── BoxTextHover.png │ │ │ │ │ ├── BoxTextHover.png.meta │ │ │ │ │ ├── DropDown Arrow.png │ │ │ │ │ ├── DropDown Arrow.png.meta │ │ │ │ │ ├── DropDown CheckMark.png │ │ │ │ │ ├── DropDown CheckMark.png.meta │ │ │ │ │ ├── Jura-Flat-Material.mat │ │ │ │ │ ├── Jura-Flat-Material.mat.meta │ │ │ │ │ ├── Jura-Medium.ttf │ │ │ │ │ ├── Jura-Medium.ttf.meta │ │ │ │ │ ├── Orbitron Black.ttf │ │ │ │ │ ├── Orbitron Black.ttf.meta │ │ │ │ │ ├── RoundedBox.png │ │ │ │ │ ├── RoundedBox.png.meta │ │ │ │ │ ├── Toggle.png │ │ │ │ │ ├── Toggle.png.meta │ │ │ │ │ ├── ToggleHover.png │ │ │ │ │ ├── ToggleHover.png.meta │ │ │ │ │ ├── ToggleOn.png │ │ │ │ │ ├── ToggleOn.png.meta │ │ │ │ │ ├── ToggleOnHover.png │ │ │ │ │ ├── ToggleOnHover.png.meta │ │ │ │ │ ├── eurof35.ttf │ │ │ │ │ ├── eurof35.ttf.meta │ │ │ │ │ ├── eurof_tt.txt │ │ │ │ │ └── eurof_tt.txt.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── Gradient.png │ │ │ │ │ ├── Gradient.png.meta │ │ │ │ │ ├── Robot_Color.png │ │ │ │ │ ├── Robot_Color.png.meta │ │ │ │ │ ├── Robot_Normal.png │ │ │ │ │ ├── Robot_Normal.png.meta │ │ │ │ │ ├── UnitCircleTexture.png │ │ │ │ │ ├── UnitCircleTexture.png.meta │ │ │ │ │ ├── UnitTexture.png │ │ │ │ │ ├── UnitTexture.png.meta │ │ │ │ │ ├── UnitTextureBlue.png │ │ │ │ │ ├── UnitTextureBlue.png.meta │ │ │ │ │ ├── UnitTextureRed.png │ │ │ │ │ └── UnitTextureRed.png.meta │ │ │ ├── WebRpcImplementationExample.cs │ │ │ └── WebRpcImplementationExample.cs.meta │ │ ├── Icons.meta │ │ ├── Icons │ │ │ ├── PunIcon-128.png │ │ │ ├── PunIcon-128.png.meta │ │ │ ├── PunIconApp128.png │ │ │ ├── PunIconApp128.png.meta │ │ │ ├── PunIconApp32.png │ │ │ ├── PunIconApp32.png.meta │ │ │ ├── PunIconApp48.png │ │ │ ├── PunIconApp48.png.meta │ │ │ ├── PunIconApp512.png │ │ │ └── PunIconApp512.png.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── PhotonServerSettings.asset │ │ │ └── PhotonServerSettings.asset.meta │ │ ├── UtilityScripts.meta │ │ ├── UtilityScripts │ │ │ ├── Culling.meta │ │ │ ├── Culling │ │ │ │ ├── CullArea.cs │ │ │ │ ├── CullArea.cs.meta │ │ │ │ ├── CullingHandler.cs │ │ │ │ ├── CullingHandler.cs.meta │ │ │ │ ├── Editor.meta │ │ │ │ └── Editor │ │ │ │ │ ├── CullAreaEditor.cs │ │ │ │ │ ├── CullAreaEditor.cs.meta │ │ │ │ │ ├── PhotonUnityNetworking.Utilities.Culling.Editor.asmdef │ │ │ │ │ └── PhotonUnityNetworking.Utilities.Culling.Editor.asmdef.meta │ │ │ ├── Debugging.meta │ │ │ ├── Debugging │ │ │ │ ├── PhotonLagSimulationGui.cs │ │ │ │ ├── PhotonLagSimulationGui.cs.meta │ │ │ │ ├── PhotonStatsGui.cs │ │ │ │ ├── PhotonStatsGui.cs.meta │ │ │ │ ├── PointedAtGameObjectInfo.cs │ │ │ │ ├── PointedAtGameObjectInfo.cs.meta │ │ │ │ ├── StatesGui.cs │ │ │ │ └── StatesGui.cs.meta │ │ │ ├── PhotonPlayer.meta │ │ │ ├── PhotonPlayer │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── PhotonTeamsManagerInspector.cs │ │ │ │ │ ├── PhotonTeamsManagerInspector.cs.meta │ │ │ │ │ ├── PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.asmdef │ │ │ │ │ ├── PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.asmdef.meta │ │ │ │ │ ├── PlayerNumberingInspector.cs │ │ │ │ │ ├── PlayerNumberingInspector.cs.meta │ │ │ │ │ ├── PunTeamsInspector.cs │ │ │ │ │ └── PunTeamsInspector.cs.meta │ │ │ │ ├── PhotonTeamsManager.cs │ │ │ │ ├── PhotonTeamsManager.cs.meta │ │ │ │ ├── PlayerNumbering.cs │ │ │ │ ├── PlayerNumbering.cs.meta │ │ │ │ ├── PunPlayerScores.cs │ │ │ │ ├── PunPlayerScores.cs.meta │ │ │ │ ├── PunTeams.cs │ │ │ │ └── PunTeams.cs.meta │ │ │ ├── PhotonUnityNetworking.Utilities.asmdef │ │ │ ├── PhotonUnityNetworking.Utilities.asmdef.meta │ │ │ ├── PhotonView.meta │ │ │ ├── PhotonView │ │ │ │ ├── SmoothSyncMovement.cs │ │ │ │ └── SmoothSyncMovement.cs.meta │ │ │ ├── Prototyping.meta │ │ │ ├── Prototyping │ │ │ │ ├── ConnectAndJoinRandom.cs │ │ │ │ ├── ConnectAndJoinRandom.cs.meta │ │ │ │ ├── MoveByKeys.cs │ │ │ │ ├── MoveByKeys.cs.meta │ │ │ │ ├── OnClickDestroy.cs │ │ │ │ ├── OnClickDestroy.cs.meta │ │ │ │ ├── OnClickInstantiate.cs │ │ │ │ ├── OnClickInstantiate.cs.meta │ │ │ │ ├── OnClickRpc.cs │ │ │ │ ├── OnClickRpc.cs.meta │ │ │ │ ├── OnEscapeQuit.cs │ │ │ │ ├── OnEscapeQuit.cs.meta │ │ │ │ ├── OnJoinedInstantiate.cs │ │ │ │ ├── OnJoinedInstantiate.cs.meta │ │ │ │ ├── OnStartDelete.cs │ │ │ │ └── OnStartDelete.cs.meta │ │ │ ├── Room.meta │ │ │ ├── Room │ │ │ │ ├── CountdownTimer.cs │ │ │ │ └── CountdownTimer.cs.meta │ │ │ ├── TurnBased.meta │ │ │ ├── TurnBased │ │ │ │ ├── PunTurnManager.cs │ │ │ │ └── PunTurnManager.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── ButtonInsideScrollList.cs │ │ │ │ ├── ButtonInsideScrollList.cs.meta │ │ │ │ ├── EventSystemSpawner.cs │ │ │ │ ├── EventSystemSpawner.cs.meta │ │ │ │ ├── GraphicToggleIsOnTransition.cs │ │ │ │ ├── GraphicToggleIsOnTransition.cs.meta │ │ │ │ ├── OnPointerOverTooltip.cs │ │ │ │ ├── OnPointerOverTooltip.cs.meta │ │ │ │ ├── TabViewManager.cs │ │ │ │ ├── TabViewManager.cs.meta │ │ │ │ ├── TextButtonTransition.cs │ │ │ │ ├── TextButtonTransition.cs.meta │ │ │ │ ├── TextToggleIsOnTransition.cs │ │ │ │ └── TextToggleIsOnTransition.cs.meta │ │ ├── changelog.txt │ │ ├── changelog.txt.meta │ │ ├── link.xml │ │ ├── link.xml.meta │ │ ├── readme.txt │ │ └── readme.txt.meta │ ├── PhotonVoice-Documentation.chm │ ├── PhotonVoice-Documentation.chm.meta │ ├── PhotonVoice-Documentation.pdf │ ├── PhotonVoice-Documentation.pdf.meta │ ├── PhotonVoice.meta │ └── PhotonVoice │ │ ├── Code.meta │ │ ├── Code │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── ExitPlayModeOnScriptCompile.cs │ │ │ ├── ExitPlayModeOnScriptCompile.cs.meta │ │ │ ├── PhotonVoice.Editor.asmdef │ │ │ ├── PhotonVoice.Editor.asmdef.meta │ │ │ ├── PhotonVoiceEditorUtils.cs │ │ │ ├── PhotonVoiceEditorUtils.cs.meta │ │ │ ├── RecorderEditor.cs │ │ │ ├── RecorderEditor.cs.meta │ │ │ ├── SpeakerEditor.cs │ │ │ ├── SpeakerEditor.cs.meta │ │ │ ├── VoiceConnectionEditor.cs │ │ │ ├── VoiceConnectionEditor.cs.meta │ │ │ ├── WebRtcAudioDspEditor.cs │ │ │ └── WebRtcAudioDspEditor.cs.meta │ │ ├── ILoggable.cs │ │ ├── ILoggable.cs.meta │ │ ├── NativeAndroidMicrophoneSettings.cs │ │ ├── NativeAndroidMicrophoneSettings.cs.meta │ │ ├── PUN.meta │ │ ├── PUN │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── PhotonVoice.PUN.Editor.asmdef │ │ │ │ ├── PhotonVoice.PUN.Editor.asmdef.meta │ │ │ │ ├── PhotonVoiceNetworkEditor.cs │ │ │ │ └── PhotonVoiceNetworkEditor.cs.meta │ │ │ ├── PhotonVoice.PUN.asmdef │ │ │ ├── PhotonVoice.PUN.asmdef.meta │ │ │ ├── PhotonVoiceNetwork.cs │ │ │ ├── PhotonVoiceNetwork.cs.meta │ │ │ ├── PhotonVoiceView.cs │ │ │ └── PhotonVoiceView.cs.meta │ │ ├── PhotonVoice.asmdef │ │ ├── PhotonVoice.asmdef.meta │ │ ├── PlaybackDelaySettings.cs │ │ ├── PlaybackDelaySettings.cs.meta │ │ ├── Recorder.cs │ │ ├── Recorder.cs.meta │ │ ├── RemoteVoiceLink.cs │ │ ├── RemoteVoiceLink.cs.meta │ │ ├── Speaker.cs │ │ ├── Speaker.cs.meta │ │ ├── UtilityScripts.meta │ │ ├── UtilityScripts │ │ │ ├── AudioUtils.meta │ │ │ ├── AudioUtils │ │ │ │ ├── CSCore.meta │ │ │ │ ├── CSCore │ │ │ │ │ ├── AudioEncoding.cs │ │ │ │ │ ├── AudioEncoding.cs.meta │ │ │ │ │ ├── AudioSubTypes.Utils.cs │ │ │ │ │ ├── AudioSubTypes.Utils.cs.meta │ │ │ │ │ ├── AudioSybTypes.cs │ │ │ │ │ ├── AudioSybTypes.cs.meta │ │ │ │ │ ├── ChannelMask.cs │ │ │ │ │ ├── ChannelMask.cs.meta │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Extensions.cs.meta │ │ │ │ │ ├── IAudioSource.cs │ │ │ │ │ ├── IAudioSource.cs.meta │ │ │ │ │ ├── IReadableAudioSource.cs │ │ │ │ │ ├── IReadableAudioSource.cs.meta │ │ │ │ │ ├── IWaveSource.cs │ │ │ │ │ ├── IWaveSource.cs.meta │ │ │ │ │ ├── IWriteable.cs │ │ │ │ │ ├── IWriteable.cs.meta │ │ │ │ │ ├── WaveFormat.cs │ │ │ │ │ ├── WaveFormat.cs.meta │ │ │ │ │ ├── WaveFormatExtensible.cs │ │ │ │ │ ├── WaveFormatExtensible.cs.meta │ │ │ │ │ ├── WaveWriter.cs │ │ │ │ │ ├── WaveWriter.cs.meta │ │ │ │ │ ├── license.md │ │ │ │ │ └── license.md.meta │ │ │ │ ├── SavWav.cs │ │ │ │ └── SavWav.cs.meta │ │ │ ├── ConnectAndJoin.cs │ │ │ ├── ConnectAndJoin.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── ConnectAndJoinEditor.cs │ │ │ │ ├── ConnectAndJoinEditor.cs.meta │ │ │ │ ├── PhotonVoice.Utilities.Editor.asmdef │ │ │ │ └── PhotonVoice.Utilities.Editor.asmdef.meta │ │ │ ├── MicAmplifier.meta │ │ │ ├── MicAmplifier │ │ │ │ ├── MicAmplifier.cs │ │ │ │ ├── MicAmplifier.cs.meta │ │ │ │ ├── MicAmplifierEditor.cs │ │ │ │ ├── MicAmplifierEditor.cs.meta │ │ │ │ ├── MicAmplifierFloat.cs │ │ │ │ ├── MicAmplifierFloat.cs.meta │ │ │ │ ├── MicAmplifierShort.cs │ │ │ │ └── MicAmplifierShort.cs.meta │ │ │ ├── PhotonVoiceLagSimulationGui.cs │ │ │ ├── PhotonVoiceLagSimulationGui.cs.meta │ │ │ ├── PhotonVoiceStatsGui.cs │ │ │ ├── PhotonVoiceStatsGui.cs.meta │ │ │ ├── SaveIncomingStreamToFile.cs │ │ │ ├── SaveIncomingStreamToFile.cs.meta │ │ │ ├── SaveOutgoingStreamToFile.cs │ │ │ ├── SaveOutgoingStreamToFile.cs.meta │ │ │ ├── TestTone.cs │ │ │ └── TestTone.cs.meta │ │ ├── VoiceComponent.cs │ │ ├── VoiceComponent.cs.meta │ │ ├── VoiceConnection.cs │ │ ├── VoiceConnection.cs.meta │ │ ├── VoiceLogger.cs │ │ ├── VoiceLogger.cs.meta │ │ ├── WebRtcAudioDsp.cs │ │ └── WebRtcAudioDsp.cs.meta │ │ ├── Demos.meta │ │ ├── Demos │ │ ├── DemoProximityVoiceChat.meta │ │ ├── DemoProximityVoiceChat │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── GroundMaterial.mat │ │ │ │ ├── GroundMaterial.mat.meta │ │ │ │ ├── PointerDownMaterial.mat │ │ │ │ ├── PointerDownMaterial.mat.meta │ │ │ │ ├── PointerMaterial.mat │ │ │ │ ├── PointerMaterial.mat.meta │ │ │ │ ├── PointerUpMaterial.mat │ │ │ │ └── PointerUpMaterial.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Pointer.fbx │ │ │ │ ├── Pointer.fbx.meta │ │ │ │ ├── PointerDownPrefab.prefab │ │ │ │ ├── PointerDownPrefab.prefab.meta │ │ │ │ ├── PointerPrefab.prefab │ │ │ │ ├── PointerPrefab.prefab.meta │ │ │ │ ├── PointerUpPrefab.prefab │ │ │ │ └── PointerUpPrefab.prefab.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Character.prefab │ │ │ │ └── Character.prefab.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── ProximityVoiceChat.unity │ │ │ │ └── ProximityVoiceChat.unity.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── ChangeColor.cs │ │ │ │ ├── ChangeColor.cs.meta │ │ │ │ ├── ChangeName.cs │ │ │ │ ├── ChangeName.cs.meta │ │ │ │ ├── PointersController.cs │ │ │ │ ├── PointersController.cs.meta │ │ │ │ ├── ProximityVoiceTrigger.cs │ │ │ │ └── ProximityVoiceTrigger.cs.meta │ │ ├── DemoVoiceMinimal.meta │ │ ├── DemoVoiceMinimal │ │ │ ├── DemoVoiceMinimal-Scene.unity │ │ │ └── DemoVoiceMinimal-Scene.unity.meta │ │ ├── DemoVoicePun.meta │ │ ├── DemoVoicePun │ │ │ ├── Animation.meta │ │ │ ├── Animation │ │ │ │ ├── HellephantAnimatorOverrideController.overrideController │ │ │ │ ├── HellephantAnimatorOverrideController.overrideController.meta │ │ │ │ ├── PlayerAnimatorController.controller │ │ │ │ ├── PlayerAnimatorController.controller.meta │ │ │ │ ├── ZomBunnyAOC.overrideController │ │ │ │ └── ZomBunnyAOC.overrideController.meta │ │ │ ├── Audio.meta │ │ │ ├── Audio │ │ │ │ ├── Pop-J_Fairba-8421_hifi.mp3 │ │ │ │ ├── Pop-J_Fairba-8421_hifi.mp3.meta │ │ │ │ ├── Pop-J_Fairba-8421_hifi.mp3.txt │ │ │ │ ├── Pop-J_Fairba-8421_hifi.mp3.txt.meta │ │ │ │ ├── Reminder-public_d-291_hifi.mp3 │ │ │ │ ├── Reminder-public_d-291_hifi.mp3.meta │ │ │ │ ├── Reminder-public_d-291_hifi.mp3.txt │ │ │ │ └── Reminder-public_d-291_hifi.mp3.txt.meta │ │ │ ├── DemoVoicePun-Scene.unity │ │ │ ├── DemoVoicePun-Scene.unity.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── CrossPlatformInput.meta │ │ │ │ └── CrossPlatformInput │ │ │ │ │ ├── CrossPlatformInputInitialize.cs │ │ │ │ │ └── CrossPlatformInputInitialize.cs.meta │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── Orbitron Black.ttf │ │ │ │ ├── Orbitron Black.ttf.meta │ │ │ │ ├── Orbitron Black.txt │ │ │ │ └── Orbitron Black.txt.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── EyesMaterial.mat │ │ │ │ ├── EyesMaterial.mat.meta │ │ │ │ ├── Gradient.png │ │ │ │ ├── Gradient.png.meta │ │ │ │ ├── Ground.mat │ │ │ │ ├── Ground.mat.meta │ │ │ │ ├── HellephantMaterial.mat │ │ │ │ ├── HellephantMaterial.mat.meta │ │ │ │ ├── PlayerMaterial.mat │ │ │ │ ├── PlayerMaterial.mat.meta │ │ │ │ ├── SkyBox-Voice.mat │ │ │ │ ├── SkyBox-Voice.mat.meta │ │ │ │ ├── ZombearMaterial.mat │ │ │ │ ├── ZombearMaterial.mat.meta │ │ │ │ ├── ZombunnyMaterial.mat │ │ │ │ └── ZombunnyMaterial.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Characters.meta │ │ │ │ └── Characters │ │ │ │ │ ├── Hellephant.fbx │ │ │ │ │ ├── Hellephant.fbx.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ ├── GunMaterial.mat │ │ │ │ │ └── GunMaterial.mat.meta │ │ │ │ │ ├── Player.fbx │ │ │ │ │ ├── Player.fbx.meta │ │ │ │ │ ├── ZomBear.fbx │ │ │ │ │ ├── ZomBear.fbx.meta │ │ │ │ │ ├── Zombunny.fbx │ │ │ │ │ └── Zombunny.fbx.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── PushToTalkPrivateButton.prefab │ │ │ │ └── PushToTalkPrivateButton.prefab.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Boy-Local.prefab │ │ │ │ ├── Boy-Local.prefab.meta │ │ │ │ ├── Boy-Remote.prefab │ │ │ │ ├── Boy-Remote.prefab.meta │ │ │ │ ├── Boy.prefab │ │ │ │ ├── Boy.prefab.meta │ │ │ │ ├── Hellephant-Local.prefab │ │ │ │ ├── Hellephant-Local.prefab.meta │ │ │ │ ├── Hellephant-Remote.prefab │ │ │ │ ├── Hellephant-Remote.prefab.meta │ │ │ │ ├── Hellephant.prefab │ │ │ │ ├── Hellephant.prefab.meta │ │ │ │ ├── ZomBear-Local.prefab │ │ │ │ ├── ZomBear-Local.prefab.meta │ │ │ │ ├── ZomBear-Remote.prefab │ │ │ │ ├── ZomBear-Remote.prefab.meta │ │ │ │ ├── ZomBear.prefab │ │ │ │ ├── ZomBear.prefab.meta │ │ │ │ ├── ZomBunny-Local.prefab │ │ │ │ ├── ZomBunny-Local.prefab.meta │ │ │ │ ├── ZomBunny-Remote.prefab │ │ │ │ ├── ZomBunny-Remote.prefab.meta │ │ │ │ ├── ZomBunny.prefab │ │ │ │ └── ZomBunny.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── BaseController.cs │ │ │ │ ├── BaseController.cs.meta │ │ │ │ ├── BetterToggle.cs │ │ │ │ ├── BetterToggle.cs.meta │ │ │ │ ├── ChangePOV.cs │ │ │ │ ├── ChangePOV.cs.meta │ │ │ │ ├── CharacterInstantiation.cs │ │ │ │ ├── CharacterInstantiation.cs.meta │ │ │ │ ├── FirstPersonController.cs │ │ │ │ ├── FirstPersonController.cs.meta │ │ │ │ ├── Highlighter.cs │ │ │ │ ├── Highlighter.cs.meta │ │ │ │ ├── MouseLookHelper.cs │ │ │ │ ├── MouseLookHelper.cs.meta │ │ │ │ ├── OrthographicController.cs │ │ │ │ ├── OrthographicController.cs.meta │ │ │ │ ├── SoundsForJoinAndLeave.cs │ │ │ │ ├── SoundsForJoinAndLeave.cs.meta │ │ │ │ ├── ThirdPersonController.cs │ │ │ │ ├── ThirdPersonController.cs.meta │ │ │ │ ├── VoiceDemoUI.cs │ │ │ │ └── VoiceDemoUI.cs.meta │ │ │ ├── Standard Assets.meta │ │ │ ├── Standard Assets │ │ │ │ ├── CrossPlatformInput.meta │ │ │ │ └── CrossPlatformInput │ │ │ │ │ ├── CrossPlatformInputGuidelines.txt │ │ │ │ │ ├── CrossPlatformInputGuidelines.txt.meta │ │ │ │ │ ├── Prefabs.meta │ │ │ │ │ ├── Prefabs │ │ │ │ │ ├── DualTouchControls.prefab │ │ │ │ │ ├── DualTouchControls.prefab.meta │ │ │ │ │ ├── MobileSingleStickControl.prefab │ │ │ │ │ └── MobileSingleStickControl.prefab.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── AxisTouchButton.cs │ │ │ │ │ ├── AxisTouchButton.cs.meta │ │ │ │ │ ├── ButtonHandler.cs │ │ │ │ │ ├── ButtonHandler.cs.meta │ │ │ │ │ ├── CrossPlatformInputManager.cs │ │ │ │ │ ├── CrossPlatformInputManager.cs.meta │ │ │ │ │ ├── InputAxisScrollbar.cs │ │ │ │ │ ├── InputAxisScrollbar.cs.meta │ │ │ │ │ ├── Joystick.cs │ │ │ │ │ ├── Joystick.cs.meta │ │ │ │ │ ├── MobileControlRig.cs │ │ │ │ │ ├── MobileControlRig.cs.meta │ │ │ │ │ ├── PlatformSpecific.meta │ │ │ │ │ ├── PlatformSpecific │ │ │ │ │ │ ├── MobileInput.cs │ │ │ │ │ │ ├── MobileInput.cs.meta │ │ │ │ │ │ ├── StandaloneInput.cs │ │ │ │ │ │ └── StandaloneInput.cs.meta │ │ │ │ │ ├── TouchPad.cs │ │ │ │ │ ├── TouchPad.cs.meta │ │ │ │ │ ├── VirtualInput.cs │ │ │ │ │ └── VirtualInput.cs.meta │ │ │ │ │ ├── Sprites.meta │ │ │ │ │ └── Sprites │ │ │ │ │ ├── ButtonThumbstickOverSprite.png │ │ │ │ │ ├── ButtonThumbstickOverSprite.png.meta │ │ │ │ │ ├── ButtonThumbstickUpSprite.png │ │ │ │ │ ├── ButtonThumbstickUpSprite.png.meta │ │ │ │ │ ├── TouchpadSprite.png │ │ │ │ │ └── TouchpadSprite.png.meta │ │ │ ├── Stylized city.meta │ │ │ ├── Stylized city │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── 13 - Default22662.mat │ │ │ │ │ ├── 13 - Default22662.mat.meta │ │ │ │ │ ├── 13 - Default54.mat │ │ │ │ │ ├── 13 - Default54.mat.meta │ │ │ │ │ ├── 20 - Default.mat │ │ │ │ │ ├── 20 - Default.mat.meta │ │ │ │ │ ├── 22 - Default.mat │ │ │ │ │ ├── 22 - Default.mat.meta │ │ │ │ │ ├── 24 - Default.mat │ │ │ │ │ ├── 24 - Default.mat.meta │ │ │ │ │ ├── ground_green232.mat │ │ │ │ │ └── ground_green232.mat.meta │ │ │ │ ├── Models.meta │ │ │ │ └── Models │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ ├── insides_2.mat │ │ │ │ │ └── insides_2.mat.meta │ │ │ │ │ ├── bush1.FBX │ │ │ │ │ ├── bush1.FBX.meta │ │ │ │ │ ├── tree_1.FBX │ │ │ │ │ ├── tree_1.FBX.meta │ │ │ │ │ ├── tree_6.FBX │ │ │ │ │ └── tree_6.FBX.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── HellephantDiffuse.png │ │ │ │ ├── HellephantDiffuse.png.meta │ │ │ │ ├── HellephantEmissive.png │ │ │ │ ├── HellephantEmissive.png.meta │ │ │ │ ├── HellephantNormals.png │ │ │ │ ├── HellephantNormals.png.meta │ │ │ │ ├── HellephantOcclusion.png │ │ │ │ ├── HellephantOcclusion.png.meta │ │ │ │ ├── HellephantSpecular.tif │ │ │ │ ├── HellephantSpecular.tif.meta │ │ │ │ ├── PlayerDiffuse.png │ │ │ │ ├── PlayerDiffuse.png.meta │ │ │ │ ├── PlayerNormals.png │ │ │ │ ├── PlayerNormals.png.meta │ │ │ │ ├── PlayerOcclusion.png │ │ │ │ ├── PlayerOcclusion.png.meta │ │ │ │ ├── PlayerSpecular.tif │ │ │ │ ├── PlayerSpecular.tif.meta │ │ │ │ ├── SkyBox-Voice.png │ │ │ │ ├── SkyBox-Voice.png.meta │ │ │ │ ├── UIPanel.png │ │ │ │ ├── UIPanel.png.meta │ │ │ │ ├── ZomBearDiffuse.png │ │ │ │ ├── ZomBearDiffuse.png.meta │ │ │ │ ├── ZomBearEmission.png │ │ │ │ ├── ZomBearEmission.png.meta │ │ │ │ ├── ZomBearNormals.png │ │ │ │ ├── ZomBearNormals.png.meta │ │ │ │ ├── ZomBearOcclusion.png │ │ │ │ ├── ZomBearOcclusion.png.meta │ │ │ │ ├── ZomBearSpecular.tif │ │ │ │ ├── ZomBearSpecular.tif.meta │ │ │ │ ├── ZomBunnyDiffuse.png │ │ │ │ ├── ZomBunnyDiffuse.png.meta │ │ │ │ ├── ZomBunnyEmissive.png │ │ │ │ ├── ZomBunnyEmissive.png.meta │ │ │ │ ├── ZomBunnyNormals.png │ │ │ │ ├── ZomBunnyNormals.png.meta │ │ │ │ ├── ZomBunnyOcclusion.png │ │ │ │ ├── ZomBunnyOcclusion.png.meta │ │ │ │ ├── ZomBunnySpecular.tif │ │ │ │ ├── ZomBunnySpecular.tif.meta │ │ │ │ ├── gizmo-speaker.png │ │ │ │ ├── gizmo-speaker.png.meta │ │ │ │ ├── gizmo-speech-bubble.png │ │ │ │ └── gizmo-speech-bubble.png.meta │ │ ├── DemoVoiceUI.meta │ │ └── DemoVoiceUI │ │ │ ├── DemoVoice.unity │ │ │ ├── DemoVoice.unity.meta │ │ │ ├── Media.meta │ │ │ ├── Media │ │ │ ├── Chaoserate.mp3 │ │ │ ├── Chaoserate.mp3.meta │ │ │ ├── Gradient.png │ │ │ ├── Gradient.png.meta │ │ │ ├── OSR_us_000_0060_8k.wav │ │ │ ├── OSR_us_000_0060_8k.wav.meta │ │ │ ├── barsHorizontal.png │ │ │ ├── barsHorizontal.png.meta │ │ │ ├── gizmo-microphone-off.png │ │ │ ├── gizmo-microphone-off.png.meta │ │ │ ├── gizmo-microphone.png │ │ │ ├── gizmo-microphone.png.meta │ │ │ ├── gizmo-speaker.png │ │ │ ├── gizmo-speaker.png.meta │ │ │ ├── gizmo-speech-bubble.png │ │ │ └── gizmo-speech-bubble.png.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── Left Panel.prefab │ │ │ ├── Left Panel.prefab.meta │ │ │ ├── MenuHeader.prefab │ │ │ ├── MenuHeader.prefab.meta │ │ │ ├── RemoteSpeakerPrefab.prefab │ │ │ ├── RemoteSpeakerPrefab.prefab.meta │ │ │ ├── Stats Bar.prefab │ │ │ └── Stats Bar.prefab.meta │ │ │ ├── RobotoFont.meta │ │ │ ├── RobotoFont │ │ │ ├── Apache License.txt │ │ │ ├── Apache License.txt.meta │ │ │ ├── RobotoCondensed-Bold.ttf │ │ │ ├── RobotoCondensed-Bold.ttf.meta │ │ │ ├── RobotoCondensed-Light.ttf │ │ │ ├── RobotoCondensed-Light.ttf.meta │ │ │ ├── RobotoCondensed-Regular.ttf │ │ │ └── RobotoCondensed-Regular.ttf.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── BackgroundMusicController.cs │ │ │ ├── BackgroundMusicController.cs.meta │ │ │ ├── CodecSettingsUI.cs │ │ │ ├── CodecSettingsUI.cs.meta │ │ │ ├── DemoVoiceUI.cs │ │ │ ├── DemoVoiceUI.cs.meta │ │ │ ├── MicrophoneDropdownFiller.cs │ │ │ ├── MicrophoneDropdownFiller.cs.meta │ │ │ ├── PhotonDemoExtensions.cs │ │ │ ├── PhotonDemoExtensions.cs.meta │ │ │ ├── RemoteSpeakerUI.cs │ │ │ ├── RemoteSpeakerUI.cs.meta │ │ │ ├── SidebarToggle.cs │ │ │ ├── SidebarToggle.cs.meta │ │ │ ├── UiExtensions.cs │ │ │ └── UiExtensions.cs.meta │ │ ├── Icons.meta │ │ ├── Icons │ │ ├── voice-0016.png │ │ ├── voice-0016.png.meta │ │ ├── voice-0032.png │ │ ├── voice-0032.png.meta │ │ ├── voice-0048.png │ │ ├── voice-0048.png.meta │ │ ├── voice-0128.png │ │ ├── voice-0128.png.meta │ │ ├── voice-0256.png │ │ ├── voice-0256.png.meta │ │ ├── voice-0512.png │ │ ├── voice-0512.png.meta │ │ ├── voice-1024.png │ │ └── voice-1024.png.meta │ │ ├── PhotonVoiceApi.meta │ │ ├── PhotonVoiceApi │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── AudioGen.cs │ │ │ ├── AudioGen.cs.meta │ │ │ ├── AudioInEnumerator.cs │ │ │ ├── AudioInEnumerator.cs.meta │ │ │ ├── AudioSyncBuffer.cs │ │ │ ├── AudioSyncBuffer.cs.meta │ │ │ ├── AudioUtil.cs │ │ │ ├── AudioUtil.cs.meta │ │ │ ├── ObjectFactory.cs │ │ │ ├── ObjectFactory.cs.meta │ │ │ ├── ObjectPool.cs │ │ │ ├── ObjectPool.cs.meta │ │ │ ├── OpusCodec.cs │ │ │ ├── OpusCodec.cs.meta │ │ │ ├── POpusCodec.meta │ │ │ ├── POpusCodec │ │ │ │ ├── Enums.meta │ │ │ │ ├── Enums │ │ │ │ │ ├── Bandwidth.cs │ │ │ │ │ ├── Bandwidth.cs.meta │ │ │ │ │ ├── Channels.cs │ │ │ │ │ ├── Channels.cs.meta │ │ │ │ │ ├── Complexity.cs │ │ │ │ │ ├── Complexity.cs.meta │ │ │ │ │ ├── Delay.cs │ │ │ │ │ ├── Delay.cs.meta │ │ │ │ │ ├── ForceChannels.cs │ │ │ │ │ ├── ForceChannels.cs.meta │ │ │ │ │ ├── OpusApplicationType.cs │ │ │ │ │ ├── OpusApplicationType.cs.meta │ │ │ │ │ ├── OpusCtlGetRequest.cs │ │ │ │ │ ├── OpusCtlGetRequest.cs.meta │ │ │ │ │ ├── OpusCtlSetRequest.cs │ │ │ │ │ ├── OpusCtlSetRequest.cs.meta │ │ │ │ │ ├── OpusStatusCode.cs │ │ │ │ │ ├── OpusStatusCode.cs.meta │ │ │ │ │ ├── SamplingRate.cs │ │ │ │ │ ├── SamplingRate.cs.meta │ │ │ │ │ ├── SignalHint.cs │ │ │ │ │ └── SignalHint.cs.meta │ │ │ │ ├── OpusDecoder.cs │ │ │ │ ├── OpusDecoder.cs.meta │ │ │ │ ├── OpusEncoder.cs │ │ │ │ ├── OpusEncoder.cs.meta │ │ │ │ ├── OpusException.cs │ │ │ │ ├── OpusException.cs.meta │ │ │ │ ├── OpusWrapper.cs │ │ │ │ └── OpusWrapper.cs.meta │ │ │ ├── Platform.cs │ │ │ ├── Platform.cs.meta │ │ │ ├── RawCodec.cs │ │ │ ├── RawCodec.cs.meta │ │ │ ├── Util.cs │ │ │ ├── Util.cs.meta │ │ │ ├── Voice.cs │ │ │ ├── Voice.cs.meta │ │ │ ├── VoiceAudio.cs │ │ │ ├── VoiceAudio.cs.meta │ │ │ ├── VoiceClient.cs │ │ │ ├── VoiceClient.cs.meta │ │ │ ├── VoiceCodec.cs │ │ │ ├── VoiceCodec.cs.meta │ │ │ ├── VoiceFramed.cs │ │ │ ├── VoiceFramed.cs.meta │ │ │ ├── VoiceInfo.cs │ │ │ ├── VoiceInfo.cs.meta │ │ │ ├── VoiceSourceAdapter.cs │ │ │ ├── VoiceSourceAdapter.cs.meta │ │ │ ├── WebRTCAudioProcessor.cs │ │ │ └── WebRTCAudioProcessor.cs.meta │ │ ├── LoadBalancingTransport.cs │ │ ├── LoadBalancingTransport.cs.meta │ │ ├── LoadBalancingTransport2.cs │ │ ├── LoadBalancingTransport2.cs.meta │ │ ├── PhotonTransport.cs │ │ ├── PhotonTransport.cs.meta │ │ ├── PhotonVoice.API.asmdef │ │ ├── PhotonVoice.API.asmdef.meta │ │ ├── Platforms.meta │ │ ├── Platforms │ │ │ ├── Apple.meta │ │ │ ├── Apple │ │ │ │ ├── MacOSAudioInPusher.cs │ │ │ │ ├── MacOSAudioInPusher.cs.meta │ │ │ │ ├── MacOSAudioInReader.cs │ │ │ │ ├── MacOSAudioInReader.cs.meta │ │ │ │ ├── iOSAudioInPusher.cs │ │ │ │ ├── iOSAudioInPusher.cs.meta │ │ │ │ ├── iOSAudioInReader.cs │ │ │ │ ├── iOSAudioInReader.cs.meta │ │ │ │ ├── iOSAudioSession.cs │ │ │ │ └── iOSAudioSession.cs.meta │ │ │ ├── Unity.meta │ │ │ ├── Unity │ │ │ │ ├── AudioClipWrapper.cs │ │ │ │ ├── AudioClipWrapper.cs.meta │ │ │ │ ├── AudioOutCapture.cs │ │ │ │ ├── AudioOutCapture.cs.meta │ │ │ │ ├── Common.cs │ │ │ │ ├── Common.cs.meta │ │ │ │ ├── IOSAudioForceToSpeaker.cs │ │ │ │ ├── IOSAudioForceToSpeaker.cs.meta │ │ │ │ ├── Logger.cs │ │ │ │ ├── Logger.cs.meta │ │ │ │ ├── MicWrapper.cs │ │ │ │ ├── MicWrapper.cs.meta │ │ │ │ ├── MicWrapperPusher.cs │ │ │ │ ├── MicWrapperPusher.cs.meta │ │ │ │ ├── UnityAndroidAudioInAEC.cs │ │ │ │ ├── UnityAndroidAudioInAEC.cs.meta │ │ │ │ ├── UnityAudioOut.cs │ │ │ │ ├── UnityAudioOut.cs.meta │ │ │ │ ├── UnityMicrophone.cs │ │ │ │ └── UnityMicrophone.cs.meta │ │ │ ├── Windows.meta │ │ │ └── Windows │ │ │ │ ├── WindowsAudioIn.cs │ │ │ │ └── WindowsAudioIn.cs.meta │ │ ├── readme.txt │ │ └── readme.txt.meta │ │ ├── PhotonVoiceLibs.meta │ │ ├── PhotonVoiceLibs │ │ ├── Android.meta │ │ ├── Android │ │ │ ├── libs.meta │ │ │ └── libs │ │ │ │ ├── arm64-v8a.meta │ │ │ │ ├── arm64-v8a │ │ │ │ ├── libopus_egpv.so │ │ │ │ ├── libopus_egpv.so.meta │ │ │ │ ├── libwebrtc-audio.so │ │ │ │ └── libwebrtc-audio.so.meta │ │ │ │ ├── armeabi-v7a.meta │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── libopus_egpv.so │ │ │ │ ├── libopus_egpv.so.meta │ │ │ │ ├── libwebrtc-audio.so │ │ │ │ └── libwebrtc-audio.so.meta │ │ │ │ ├── audioinaec.aar │ │ │ │ ├── audioinaec.aar.meta │ │ │ │ ├── x86.meta │ │ │ │ └── x86 │ │ │ │ ├── libopus_egpv.so │ │ │ │ ├── libopus_egpv.so.meta │ │ │ │ ├── libwebrtc-audio.so │ │ │ │ └── libwebrtc-audio.so.meta │ │ ├── OSX.meta │ │ ├── OSX │ │ │ ├── AudioIn.bundle.meta │ │ │ ├── AudioIn.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Info.plist.meta │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ └── MacOS │ │ │ │ │ ├── AudioIn │ │ │ │ │ └── AudioIn.meta │ │ │ ├── opus_egpv.bundle.meta │ │ │ ├── opus_egpv.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Info.plist.meta │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ └── MacOS │ │ │ │ │ ├── opus_egpv │ │ │ │ │ └── opus_egpv.meta │ │ │ ├── webrtc-audio.bundle.meta │ │ │ └── webrtc-audio.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── Info.plist.meta │ │ │ │ ├── MacOS.meta │ │ │ │ └── MacOS │ │ │ │ ├── webrtc-audio │ │ │ │ └── webrtc-audio.meta │ │ ├── WSA.meta │ │ ├── WSA │ │ │ ├── ARM.meta │ │ │ ├── ARM │ │ │ │ ├── opus_egpv.dll │ │ │ │ └── opus_egpv.dll.meta │ │ │ ├── x64.meta │ │ │ ├── x64 │ │ │ │ ├── opus_egpv.dll │ │ │ │ └── opus_egpv.dll.meta │ │ │ ├── x86.meta │ │ │ └── x86 │ │ │ │ ├── opus_egpv.dll │ │ │ │ └── opus_egpv.dll.meta │ │ ├── WebRTC-LICENSE.txt │ │ ├── WebRTC-LICENSE.txt.meta │ │ ├── iOS.meta │ │ ├── iOS │ │ │ ├── Photon.meta │ │ │ ├── Photon │ │ │ │ ├── AudioIn.h │ │ │ │ ├── AudioIn.h.meta │ │ │ │ ├── AudioIn.mm │ │ │ │ ├── AudioIn.mm.meta │ │ │ │ ├── AudioInChange.h │ │ │ │ ├── AudioInChange.h.meta │ │ │ │ ├── AudioInChange.mm │ │ │ │ ├── AudioInChange.mm.meta │ │ │ │ ├── ForceToSpeaker.h │ │ │ │ ├── ForceToSpeaker.h.meta │ │ │ │ ├── ForceToSpeaker.m │ │ │ │ ├── ForceToSpeaker.m.meta │ │ │ │ ├── iOSOpusInteropHelper.c │ │ │ │ └── iOSOpusInteropHelper.c.meta │ │ │ ├── libopus_egpv.a │ │ │ ├── libopus_egpv.a.meta │ │ │ ├── libwebrtc-audio.a │ │ │ └── libwebrtc-audio.a.meta │ │ ├── opus-COPYING │ │ ├── opus-COPYING.meta │ │ ├── x86.meta │ │ ├── x86 │ │ │ ├── AudioIn.dll │ │ │ ├── AudioIn.dll.meta │ │ │ ├── opus_egpv.dll │ │ │ ├── opus_egpv.dll.meta │ │ │ ├── webrtc-audio.dll │ │ │ └── webrtc-audio.dll.meta │ │ ├── x86_64.meta │ │ └── x86_64 │ │ │ ├── AudioIn.dll │ │ │ ├── AudioIn.dll.meta │ │ │ ├── opus_egpv.dll │ │ │ ├── opus_egpv.dll.meta │ │ │ ├── webrtc-audio.dll │ │ │ └── webrtc-audio.dll.meta │ │ ├── changes-voice.txt │ │ └── changes-voice.txt.meta ├── Scenes.meta └── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── Logs └── Packages-Update.log ├── Packages ├── manifest.json └── packages-lock.json ├── PhotonChat.csproj ├── PhotonRealtime.csproj ├── PhotonUnityNetworking.Demos.csproj ├── PhotonUnityNetworking.Editor.csproj ├── PhotonUnityNetworking.Utilities.Culling.Editor.csproj ├── PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.csproj ├── PhotonUnityNetworking.Utilities.csproj ├── PhotonUnityNetworking.csproj ├── PhotonVoice.API.csproj ├── PhotonVoice.Editor.csproj ├── PhotonVoice.PUN.Editor.csproj ├── PhotonVoice.PUN.csproj ├── PhotonVoice.Utilities.Editor.csproj ├── PhotonVoice.csproj ├── PhotonWebSocket.csproj ├── PluginDev.sln ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── NetworkManager.asset.meta ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── PunDemos.DemoHubEditor.csproj ├── PunDemos.DemoSlotcarEditor.csproj ├── README.md ├── UnityChatSystem.sln ├── UserSettings └── EditorUserSettings.asset └── obj └── Debug ├── Assembly-CSharp-Editor.csprojAssemblyReference.cache ├── Assembly-CSharp.csprojAssemblyReference.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── PhotonChat.csprojAssemblyReference.cache ├── PhotonRealtime.csprojAssemblyReference.cache ├── PhotonUnityNetworking.Editor.csprojAssemblyReference.cache ├── PhotonUnityNetworking.Utilities.Culling.Editor.csprojAssemblyReference.cache ├── PhotonUnityNetworking.Utilities.csprojAssemblyReference.cache ├── PhotonUnityNetworking.csprojAssemblyReference.cache ├── PhotonVoice.API.csprojAssemblyReference.cache ├── PhotonVoice.Editor.csprojAssemblyReference.cache ├── PhotonVoice.csprojAssemblyReference.cache ├── PhotonWebSocket.csprojAssemblyReference.cache ├── PunDemos.DemoHubEditor.csprojAssemblyReference.cache └── PunDemos.DemoSlotcarEditor.csprojAssemblyReference.cache /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /[Ll]ibrary 3 | /[Tt]emp 4 | /[Oo]bj 5 | -------------------------------------------------------------------------------- /.vs/UnityChatSystem/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/.vs/UnityChatSystem/v16/.suo -------------------------------------------------------------------------------- /Assembly-CSharp-Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assembly-CSharp-Editor.csproj -------------------------------------------------------------------------------- /Assembly-CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assembly-CSharp.csproj -------------------------------------------------------------------------------- /Assets/ChatSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/ChatSystemHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/ChatSystemHandler.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/ChatSystemHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/ChatSystemHandler.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/IClient.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/IClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/IClient.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/IInputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/IInputDevice.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/IInputDevice.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/IInputDevice.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/IOutputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/IOutputDevice.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/IOutputDevice.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/IOutputDevice.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/ITransmissionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/ITransmissionSystem.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Base/ITransmissionSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Base/ITransmissionSystem.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Cam.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Cam.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Cam/DeviceCameraInputSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Cam/DeviceCameraInputSystem.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Cam/DeviceCameraInputSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Cam/DeviceCameraInputSystem.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Cam/DeviceCameraOutputSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Cam/DeviceCameraOutputSystem.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Cam/DeviceCameraOutputSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Cam/DeviceCameraOutputSystem.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Keyboard.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Keyboard.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Keyboard/KeyboardInputSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Keyboard/KeyboardInputSystem.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Keyboard/KeyboardInputSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Keyboard/KeyboardInputSystem.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Keyboard/TextChatOutputSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Keyboard/TextChatOutputSystem.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Keyboard/TextChatOutputSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Keyboard/TextChatOutputSystem.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Mic.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Mic.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Mic/AudioClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Mic/AudioClient.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Mic/AudioClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Mic/AudioClient.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Mic/DeviceMicInputSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Mic/DeviceMicInputSystem.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Mic/DeviceMicInputSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Mic/DeviceMicInputSystem.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Mic/DeviceSpeakerOutputSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Mic/DeviceSpeakerOutputSystem.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Mic/DeviceSpeakerOutputSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Mic/DeviceSpeakerOutputSystem.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Testing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Testing.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Testing.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Testing.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Transmissions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Transmissions.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Transmissions/FirebaseTransmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Transmissions/FirebaseTransmission.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Transmissions/FirebaseTransmission.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Transmissions/FirebaseTransmission.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Transmissions/PhotonTransmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Transmissions/PhotonTransmission.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Transmissions/PhotonTransmission.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Transmissions/PhotonTransmission.cs.meta -------------------------------------------------------------------------------- /Assets/ChatSystem/Transmissions/SocketTransmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Transmissions/SocketTransmission.cs -------------------------------------------------------------------------------- /Assets/ChatSystem/Transmissions/SocketTransmission.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/ChatSystem/Transmissions/SocketTransmission.cs.meta -------------------------------------------------------------------------------- /Assets/Photon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatAppSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatAppSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatAppSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatChannel.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatChannel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatChannel.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatClient.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatClient.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatEventCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatEventCode.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatEventCode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatEventCode.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatOperationCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatOperationCode.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatOperationCode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatOperationCode.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatParameterCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatParameterCode.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatParameterCode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatParameterCode.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatPeer.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatPeer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatPeer.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatState.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatState.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatUserStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatUserStatus.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatUserStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/ChatUserStatus.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/IChatClientListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/IChatClientListener.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/IChatClientListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/IChatClientListener.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/PhotonChat.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/PhotonChat.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/PhotonChat.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/PhotonChat.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/changes-chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/changes-chat.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/changes-chat.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Code/changes-chat.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/Common.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/EventSystemSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/Common/EventSystemSpawner.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/EventSystemSpawner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/Common/EventSystemSpawner.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/OnStartDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/Common/OnStartDelete.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/OnStartDelete.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/Common/OnStartDelete.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/TextButtonTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/Common/TextButtonTransition.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/TextButtonTransition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/Common/TextButtonTransition.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/TextToggleIsOnTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/Common/TextToggleIsOnTransition.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/TextToggleIsOnTransition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/Common/TextToggleIsOnTransition.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/AppSettingsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/AppSettingsExtensions.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/AppSettingsExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/AppSettingsExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChannelSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChannelSelector.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChannelSelector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChannelSelector.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatAppIdCheckerUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChatAppIdCheckerUI.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatAppIdCheckerUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChatAppIdCheckerUI.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChatGui.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatGui.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChatGui.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/DemoChat-Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/DemoChat-Scene.unity -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/DemoChat-Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/DemoChat-Scene.unity.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/FriendItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/FriendItem.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/FriendItem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/FriendItem.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/IgnoreUiRaycastWhenInactive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/IgnoreUiRaycastWhenInactive.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/NamePickGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/NamePickGui.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/NamePickGui.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/NamePickGui.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Metro.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pdb -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pdb.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.pdb -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.pdb.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.xml -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.xml.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/WebSocket.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/WebSocket.jslib -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/WebSocket.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/WebSocket.jslib.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/changes-library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/changes-library.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/changes-library.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/changes-library.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/netstandard2.0.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.deps.json -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.deps.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.deps.json.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.pdb -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.pdb.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.xml -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.xml.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/AppSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/AppSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/AppSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/CustomTypesUnity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/CustomTypesUnity.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/CustomTypesUnity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/CustomTypesUnity.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/Extensions.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/Extensions.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/FriendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/FriendInfo.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/FriendInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/FriendInfo.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonPing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonPing.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonPing.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonPing.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/Player.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Player.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/Player.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/Region.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Region.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/Region.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RegionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/RegionHandler.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RegionHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/RegionHandler.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/Room.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Room.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/Room.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RoomInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/RoomInfo.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RoomInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/RoomInfo.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/SupportLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/SupportLogger.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/SupportLogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/SupportLogger.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/WebRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/WebRpc.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/WebRpc.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/WebRpc.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/changes-realtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/changes-realtime.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/changes-realtime.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Code/changes-realtime.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Demos.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/Jura-Medium-LB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/Jura-Medium-LB.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/AccountService.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/AccountService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/AccountService.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIcon.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIcon.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIconPro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIconPro.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIconPro.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIconPro.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditorUtils.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditorUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditorUtils.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewInspector.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunGradient.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunGradient.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunGradient.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettingsFile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettingsFile.asset -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettingsFile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0aacb83307022d449e90a09d28222ae 3 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/LICENSE.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ServerSettingsInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/ServerSettingsInspector.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/Views.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/Views.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/help.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/help.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/help.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Enums.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Enums.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Enums.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Interfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Interfaces.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPunCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPunCallbacks.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPunCallbacks.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPunCallbacks.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Utilities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Utilities.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbody2DView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbody2DView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Resources.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scenes.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Game.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Lobby.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Lobby.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Textures.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/DemoHub-Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/DemoHub-Scene.unity -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/DemoHub-Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/DemoHub-Scene.unity.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor/PunStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor/PunStartup.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/Gradient.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/toHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/toHub.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/toHub.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/toHub.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/toHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/toHub.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/toHub.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/toHub.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Red.mat -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Block.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Noise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Noise.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Copyrights.txt: -------------------------------------------------------------------------------- 1 | https://kenney.nl/terms-of-service -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Resources.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Animator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Animator.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms/UserIdUiForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms/UserIdUiForm.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Lists.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Lists.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animator.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models/Pointer.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models/Pointer.fbx -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs/UI.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/3dText.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/3dText.shader -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/3dText.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 953d6c4c7f7ec324d860efb0db9c68ff 3 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxBright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxBright.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxOrange.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxText.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Toggle.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOn.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof35.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof35.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof_tt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof_tt.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof_tt.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32589b999b7dcf741bfc184e9d7db384 3 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/WebRpcImplementationExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/WebRpcImplementationExample.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIcon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIcon-128.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIcon-128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIcon-128.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp128.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp128.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp32.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp32.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp32.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp48.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp48.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp48.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp512.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp512.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp512.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Resources.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Resources/PhotonServerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/Resources/PhotonServerSettings.asset -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullArea.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/StatesGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/StatesGui.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonView.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonView.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room/CountdownTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room/CountdownTimer.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/TurnBased.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/TurnBased.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TabViewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TabViewManager.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/changelog.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/changelog.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/changelog.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/link.xml -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/link.xml.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/readme.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonUnityNetworking/readme.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice-Documentation.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice-Documentation.chm -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice-Documentation.chm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice-Documentation.chm.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice-Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice-Documentation.pdf -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice-Documentation.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice-Documentation.pdf.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/ExitPlayModeOnScriptCompile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/ExitPlayModeOnScriptCompile.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/ExitPlayModeOnScriptCompile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/ExitPlayModeOnScriptCompile.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/PhotonVoice.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/PhotonVoice.Editor.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/PhotonVoice.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/PhotonVoice.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/PhotonVoiceEditorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/PhotonVoiceEditorUtils.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/PhotonVoiceEditorUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/PhotonVoiceEditorUtils.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/RecorderEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/RecorderEditor.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/RecorderEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/RecorderEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/SpeakerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/SpeakerEditor.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/SpeakerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/SpeakerEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/VoiceConnectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/VoiceConnectionEditor.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/VoiceConnectionEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/VoiceConnectionEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/WebRtcAudioDspEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/WebRtcAudioDspEditor.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Editor/WebRtcAudioDspEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Editor/WebRtcAudioDspEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/ILoggable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/ILoggable.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/ILoggable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/ILoggable.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/NativeAndroidMicrophoneSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/NativeAndroidMicrophoneSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/NativeAndroidMicrophoneSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/NativeAndroidMicrophoneSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/Editor/PhotonVoice.PUN.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/Editor/PhotonVoice.PUN.Editor.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/Editor/PhotonVoiceNetworkEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/Editor/PhotonVoiceNetworkEditor.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/Editor/PhotonVoiceNetworkEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/Editor/PhotonVoiceNetworkEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/PhotonVoice.PUN.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/PhotonVoice.PUN.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/PhotonVoice.PUN.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/PhotonVoice.PUN.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/PhotonVoiceNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/PhotonVoiceNetwork.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/PhotonVoiceNetwork.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/PhotonVoiceNetwork.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/PhotonVoiceView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/PhotonVoiceView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PUN/PhotonVoiceView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PUN/PhotonVoiceView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PhotonVoice.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PhotonVoice.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PhotonVoice.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PhotonVoice.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PlaybackDelaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PlaybackDelaySettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/PlaybackDelaySettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/PlaybackDelaySettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Recorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Recorder.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Recorder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Recorder.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/RemoteVoiceLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/RemoteVoiceLink.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/RemoteVoiceLink.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/RemoteVoiceLink.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Speaker.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/Speaker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/Speaker.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils/CSCore.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils/CSCore.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils/CSCore/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils/CSCore/license.md -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils/SavWav.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils/SavWav.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils/SavWav.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/AudioUtils/SavWav.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/ConnectAndJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/ConnectAndJoin.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/ConnectAndJoin.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/ConnectAndJoin.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/MicAmplifier.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/MicAmplifier.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/MicAmplifier/MicAmplifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/MicAmplifier/MicAmplifier.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/PhotonVoiceStatsGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/PhotonVoiceStatsGui.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/PhotonVoiceStatsGui.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/PhotonVoiceStatsGui.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/TestTone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/TestTone.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/UtilityScripts/TestTone.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/UtilityScripts/TestTone.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/VoiceComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/VoiceComponent.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/VoiceComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/VoiceComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/VoiceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/VoiceConnection.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/VoiceConnection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/VoiceConnection.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/VoiceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/VoiceLogger.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/VoiceLogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/VoiceLogger.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/WebRtcAudioDsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/WebRtcAudioDsp.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Code/WebRtcAudioDsp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Code/WebRtcAudioDsp.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Resources.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Scenes.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoProximityVoiceChat/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceMinimal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceMinimal.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Animation.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Audio.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Audio/Reminder-public_d-291_hifi.mp3.txt: -------------------------------------------------------------------------------- 1 | By: unknown author 2 | From: http://www.flashkit.com/soundfx -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/DemoVoicePun-Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/DemoVoicePun-Scene.unity -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Fonts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Fonts/Orbitron Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Fonts/Orbitron Black.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Fonts/Orbitron Black.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Fonts/Orbitron Black.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/EyesMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/EyesMaterial.mat -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/Gradient.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/Gradient.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/Gradient.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/Ground.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/Ground.mat -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/Ground.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/Ground.mat.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/SkyBox-Voice.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Materials/SkyBox-Voice.mat -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Models.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Models/Characters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Models/Characters.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Boy-Local.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Boy-Local.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Boy-Remote.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Boy-Remote.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Boy.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Boy.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Boy.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Boy.prefab.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Hellephant.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/Hellephant.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/ZomBear.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/ZomBear.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/ZomBunny.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Resources/ZomBunny.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/BaseController.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/BetterToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/BetterToggle.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/ChangePOV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/ChangePOV.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/ChangePOV.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/ChangePOV.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/Highlighter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/Highlighter.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/Highlighter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/Highlighter.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/MouseLookHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/MouseLookHelper.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/VoiceDemoUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/VoiceDemoUI.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/VoiceDemoUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Scripts/VoiceDemoUI.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Standard Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Standard Assets.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Stylized city.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Stylized city.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Stylized city/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Stylized city/Models.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/PlayerDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/PlayerDiffuse.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/PlayerNormals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/PlayerNormals.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/PlayerSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/PlayerSpecular.tif -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/SkyBox-Voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/SkyBox-Voice.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/UIPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/UIPanel.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/UIPanel.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/UIPanel.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/ZomBearDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/ZomBearDiffuse.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/ZomBearNormals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/ZomBearNormals.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/gizmo-speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoicePun/Textures/gizmo-speaker.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/DemoVoice.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/DemoVoice.unity -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/DemoVoice.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/DemoVoice.unity.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/Chaoserate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/Chaoserate.mp3 -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/Chaoserate.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/Chaoserate.mp3.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/Gradient.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/Gradient.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/Gradient.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/OSR_us_000_0060_8k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/OSR_us_000_0060_8k.wav -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/barsHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/barsHorizontal.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/gizmo-microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/gizmo-microphone.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/gizmo-speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/gizmo-speaker.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/gizmo-speaker.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Media/gizmo-speaker.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Prefabs/Left Panel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Prefabs/Left Panel.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Prefabs/MenuHeader.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Prefabs/MenuHeader.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Prefabs/Stats Bar.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Prefabs/Stats Bar.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/RobotoFont.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/RobotoFont.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/CodecSettingsUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/CodecSettingsUI.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/DemoVoiceUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/DemoVoiceUI.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/DemoVoiceUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/DemoVoiceUI.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/RemoteSpeakerUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/RemoteSpeakerUI.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/SidebarToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/SidebarToggle.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/UiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/UiExtensions.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/UiExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Demos/DemoVoiceUI/Scripts/UiExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0016.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0016.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0016.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0032.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0032.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0032.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0048.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0048.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0048.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0128.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0128.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0256.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0256.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0256.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0512.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-0512.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-0512.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-1024.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/Icons/voice-1024.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/Icons/voice-1024.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioGen.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioGen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioGen.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioInEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioInEnumerator.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioInEnumerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioInEnumerator.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioSyncBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioSyncBuffer.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioSyncBuffer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioSyncBuffer.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioUtil.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/AudioUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/ObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/ObjectFactory.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/ObjectFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/ObjectFactory.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/ObjectPool.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/ObjectPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/ObjectPool.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/OpusCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/OpusCodec.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/OpusCodec.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/OpusCodec.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/Enums.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/Enums.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/Enums/Delay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/Enums/Delay.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/OpusDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/OpusDecoder.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/OpusEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/OpusEncoder.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/OpusWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/POpusCodec/OpusWrapper.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Platform.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Platform.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Platform.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/RawCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/RawCodec.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/RawCodec.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/RawCodec.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Util.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Util.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Util.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Voice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Voice.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Voice.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/Voice.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceAudio.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceAudio.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceAudio.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceClient.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceClient.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceCodec.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceCodec.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceCodec.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceFramed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceFramed.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceFramed.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceFramed.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceInfo.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceInfo.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceSourceAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceSourceAdapter.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceSourceAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/VoiceSourceAdapter.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/WebRTCAudioProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Core/WebRTCAudioProcessor.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/LoadBalancingTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/LoadBalancingTransport.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/LoadBalancingTransport.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/LoadBalancingTransport.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/LoadBalancingTransport2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/LoadBalancingTransport2.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/LoadBalancingTransport2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/LoadBalancingTransport2.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/PhotonTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/PhotonTransport.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/PhotonTransport.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/PhotonTransport.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/PhotonVoice.API.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/PhotonVoice.API.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/PhotonVoice.API.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/PhotonVoice.API.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Apple.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Apple.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/Common.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/Common.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/Common.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/Logger.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/Logger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/Logger.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/MicWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Unity/MicWrapper.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Windows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/Platforms/Windows.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/readme.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceApi/readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceApi/readme.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs/arm64-v8a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs/arm64-v8a.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs/armeabi-v7a.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs/audioinaec.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs/audioinaec.aar -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/Android/libs/x86.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/OSX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/OSX.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/OSX/AudioIn.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/OSX/AudioIn.bundle.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/OSX/opus_egpv.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/OSX/opus_egpv.bundle.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/OSX/webrtc-audio.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/OSX/webrtc-audio.bundle.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/ARM.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/ARM.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/ARM/opus_egpv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/ARM/opus_egpv.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/ARM/opus_egpv.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/ARM/opus_egpv.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x64.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x64/opus_egpv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x64/opus_egpv.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x64/opus_egpv.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x64/opus_egpv.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x86.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x86/opus_egpv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x86/opus_egpv.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x86/opus_egpv.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WSA/x86/opus_egpv.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WebRTC-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WebRTC-LICENSE.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/WebRTC-LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/WebRTC-LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioIn.h -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioIn.h.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioIn.h.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioIn.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioIn.mm -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioIn.mm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioIn.mm.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioInChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioInChange.h -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioInChange.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/AudioInChange.mm -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/ForceToSpeaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/ForceToSpeaker.h -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/ForceToSpeaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/Photon/ForceToSpeaker.m -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/libopus_egpv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/libopus_egpv.a -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/libopus_egpv.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/libopus_egpv.a.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/libwebrtc-audio.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/libwebrtc-audio.a -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/libwebrtc-audio.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/iOS/libwebrtc-audio.a.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/opus-COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/opus-COPYING -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/opus-COPYING.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/opus-COPYING.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/AudioIn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/AudioIn.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/AudioIn.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/AudioIn.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/opus_egpv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/opus_egpv.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/opus_egpv.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/opus_egpv.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/webrtc-audio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/webrtc-audio.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/webrtc-audio.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86/webrtc-audio.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/AudioIn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/AudioIn.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/AudioIn.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/AudioIn.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/opus_egpv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/opus_egpv.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/opus_egpv.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/opus_egpv.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/webrtc-audio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/webrtc-audio.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/webrtc-audio.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/PhotonVoiceLibs/x86_64/webrtc-audio.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/changes-voice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/changes-voice.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonVoice/changes-voice.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Photon/PhotonVoice/changes-voice.txt.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /PhotonChat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonChat.csproj -------------------------------------------------------------------------------- /PhotonRealtime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonRealtime.csproj -------------------------------------------------------------------------------- /PhotonUnityNetworking.Demos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonUnityNetworking.Demos.csproj -------------------------------------------------------------------------------- /PhotonUnityNetworking.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonUnityNetworking.Editor.csproj -------------------------------------------------------------------------------- /PhotonUnityNetworking.Utilities.Culling.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonUnityNetworking.Utilities.Culling.Editor.csproj -------------------------------------------------------------------------------- /PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonUnityNetworking.Utilities.PhotonPlayer.Editor.csproj -------------------------------------------------------------------------------- /PhotonUnityNetworking.Utilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonUnityNetworking.Utilities.csproj -------------------------------------------------------------------------------- /PhotonUnityNetworking.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonUnityNetworking.csproj -------------------------------------------------------------------------------- /PhotonVoice.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonVoice.API.csproj -------------------------------------------------------------------------------- /PhotonVoice.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonVoice.Editor.csproj -------------------------------------------------------------------------------- /PhotonVoice.PUN.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonVoice.PUN.Editor.csproj -------------------------------------------------------------------------------- /PhotonVoice.PUN.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonVoice.PUN.csproj -------------------------------------------------------------------------------- /PhotonVoice.Utilities.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonVoice.Utilities.Editor.csproj -------------------------------------------------------------------------------- /PhotonVoice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonVoice.csproj -------------------------------------------------------------------------------- /PhotonWebSocket.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PhotonWebSocket.csproj -------------------------------------------------------------------------------- /PluginDev.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PluginDev.sln -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/NetworkManager.asset.meta -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /PunDemos.DemoHubEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PunDemos.DemoHubEditor.csproj -------------------------------------------------------------------------------- /PunDemos.DemoSlotcarEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/PunDemos.DemoSlotcarEditor.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/README.md -------------------------------------------------------------------------------- /UnityChatSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/UnityChatSystem.sln -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp-Editor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/Assembly-CSharp-Editor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/Assembly-CSharp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/Assembly-CSharp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Debug/PhotonChat.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PhotonChat.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PhotonRealtime.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PhotonRealtime.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PhotonUnityNetworking.Editor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PhotonUnityNetworking.Editor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PhotonUnityNetworking.Utilities.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PhotonUnityNetworking.Utilities.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PhotonUnityNetworking.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PhotonUnityNetworking.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PhotonVoice.API.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PhotonVoice.API.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PhotonVoice.Editor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PhotonVoice.Editor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PhotonVoice.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PhotonVoice.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PhotonWebSocket.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PhotonWebSocket.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PunDemos.DemoHubEditor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PunDemos.DemoHubEditor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/PunDemos.DemoSlotcarEditor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daydreamer-parminder/Unity3DChatSystem/HEAD/obj/Debug/PunDemos.DemoSlotcarEditor.csprojAssemblyReference.cache --------------------------------------------------------------------------------