├── .gitattributes ├── .gitignore ├── .readthedocs.yaml ├── .vscode └── settings.json ├── Assets ├── ExemploPhoton.meta ├── ExemploPhoton │ ├── Resources.meta │ ├── Resources │ │ ├── Bullet.prefab │ │ ├── Bullet.prefab.meta │ │ ├── Player.prefab │ │ ├── Player.prefab.meta │ │ ├── Rotator.prefab │ │ └── Rotator.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── Gameplay.unity │ │ ├── Gameplay.unity.meta │ │ ├── Menu.unity │ │ └── Menu.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── PUN.meta │ │ └── PUN │ │ ├── Bullet.cs │ │ ├── Bullet.cs.meta │ │ ├── Health.cs │ │ ├── Health.cs.meta │ │ ├── Network.meta │ │ ├── Network │ │ ├── Launcher.cs │ │ ├── Launcher.cs.meta │ │ ├── NetworkRoom.cs │ │ ├── NetworkRoom.cs.meta │ │ ├── PlayerNetwork.cs │ │ └── PlayerNetwork.cs.meta │ │ ├── Player.cs │ │ ├── Player.cs.meta │ │ ├── RotatorObject.cs │ │ ├── RotatorObject.cs.meta │ │ ├── Score.cs │ │ └── Score.cs.meta ├── Materials.meta ├── Materials │ ├── Player.mat │ └── Player.mat.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 │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── ChatEditor.cs │ │ │ └── ChatEditor.cs.meta │ │ │ ├── Files.meta │ │ │ ├── Files │ │ │ ├── Gradient.png │ │ │ ├── Gradient.png.meta │ │ │ ├── Jura-Medium.ttf │ │ │ ├── Jura-Medium.ttf.meta │ │ │ ├── OutlinedSquaredBox.png │ │ │ ├── OutlinedSquaredBox.png.meta │ │ │ ├── PunIcon-White-129.png │ │ │ ├── PunIcon-White-129.png.meta │ │ │ ├── eurof35.ttf │ │ │ ├── eurof35.ttf.meta │ │ │ ├── eurof_tt.txt │ │ │ └── eurof_tt.txt.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.pri │ │ │ └── Photon3Unity3D.pri.meta │ │ ├── Photon3Unity3D.dll │ │ ├── Photon3Unity3D.dll.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.xml │ │ │ └── Photon3Unity3D.xml.meta │ ├── PhotonNetworking-Documentation.chm │ ├── PhotonNetworking-Documentation.chm.meta │ ├── PhotonNetworking-Documentation.pdf │ ├── PhotonNetworking-Documentation.pdf.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 │ │ │ ├── Unity.meta │ │ │ ├── Unity │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── AccountService.cs │ │ │ │ │ ├── AccountService.cs.meta │ │ │ │ │ ├── PhotonEditorUtils.cs │ │ │ │ │ └── PhotonEditorUtils.cs.meta │ │ │ │ ├── PhotonAppSettings.cs │ │ │ │ └── PhotonAppSettings.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 │ │ │ ├── CopyIcon.png │ │ │ ├── CopyIcon.png.meta │ │ │ ├── CopyIconPro.png │ │ │ ├── CopyIconPro.png.meta │ │ │ ├── PhotonEditor.cs │ │ │ ├── PhotonEditor.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 ├── Plugins.meta ├── Plugins │ ├── UnityPeerJS.jslib │ └── UnityPeerJS.jslib.meta ├── Resources.meta ├── Resources │ ├── BulletProton.prefab │ ├── BulletProton.prefab.meta │ ├── PlayerPeerJS.prefab │ ├── PlayerPeerJS.prefab.meta │ ├── PlayerProton.prefab │ ├── PlayerProton.prefab.meta │ ├── SpriteRectangle.png │ ├── SpriteRectangle.png.meta │ ├── TestCube.prefab │ └── TestCube.prefab.meta ├── RestClient.meta ├── RestClient │ ├── DemoScene.meta │ ├── DemoScene │ │ ├── Demo.unity │ │ ├── Demo.unity.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── MainScript.cs │ │ │ ├── MainScript.cs.meta │ │ │ ├── Model.meta │ │ │ └── Model │ │ │ ├── Photo.cs │ │ │ ├── Photo.cs.meta │ │ │ ├── Post.cs │ │ │ ├── Post.cs.meta │ │ │ ├── Todo.cs │ │ │ ├── Todo.cs.meta │ │ │ ├── User.cs │ │ │ └── User.cs.meta │ ├── Packages.meta │ ├── Packages │ │ ├── Proyecto26.RestClient.meta │ │ ├── Proyecto26.RestClient │ │ │ ├── Helpers.meta │ │ │ ├── Helpers │ │ │ │ ├── Common.cs │ │ │ │ ├── Common.cs.meta │ │ │ │ ├── ExecuteOnMainThread.cs │ │ │ │ ├── ExecuteOnMainThread.cs.meta │ │ │ │ ├── Extensions.cs │ │ │ │ ├── Extensions.cs.meta │ │ │ │ ├── HttpBase.cs │ │ │ │ ├── HttpBase.cs.meta │ │ │ │ ├── JsonHelper.cs │ │ │ │ ├── JsonHelper.cs.meta │ │ │ │ ├── RequestException.cs │ │ │ │ ├── RequestException.cs.meta │ │ │ │ ├── RequestHelper.cs │ │ │ │ ├── RequestHelper.cs.meta │ │ │ │ ├── RequestHelperExtension.cs │ │ │ │ ├── RequestHelperExtension.cs.meta │ │ │ │ ├── ResponseHelper.cs │ │ │ │ ├── ResponseHelper.cs.meta │ │ │ │ ├── StaticCoroutine.cs │ │ │ │ └── StaticCoroutine.cs.meta │ │ │ ├── RestClient.cs │ │ │ ├── RestClient.cs.meta │ │ │ ├── RestClientPromise.cs │ │ │ └── RestClientPromise.cs.meta │ │ ├── RSG.Promise.meta │ │ └── RSG.Promise │ │ │ ├── EnumerableExt.cs │ │ │ ├── EnumerableExt.cs.meta │ │ │ ├── Exceptions.meta │ │ │ ├── Exceptions │ │ │ ├── PromiseException.cs │ │ │ ├── PromiseException.cs.meta │ │ │ ├── PromiseStateException.cs │ │ │ └── PromiseStateException.cs.meta │ │ │ ├── Promise.cs │ │ │ ├── Promise.cs.meta │ │ │ ├── PromiseHelpers.cs │ │ │ ├── PromiseHelpers.cs.meta │ │ │ ├── PromiseTimer.cs │ │ │ ├── PromiseTimer.cs.meta │ │ │ ├── Promise_NonGeneric.cs │ │ │ ├── Promise_NonGeneric.cs.meta │ │ │ ├── Tuple.cs │ │ │ └── Tuple.cs.meta │ ├── RestClient.pdf │ └── RestClient.pdf.meta ├── Scenes.meta ├── Scenes │ ├── GameplayProton.unity │ ├── GameplayProton.unity.meta │ ├── MenuProton.unity │ ├── MenuProton.unity.meta │ ├── PeerJSTest.unity │ ├── PeerJSTest.unity.meta │ ├── WebRTCTests 1.unity │ └── WebRTCTests 1.unity.meta ├── Scripts.meta ├── Scripts │ ├── Examples.meta │ ├── Examples │ │ ├── BulletNetworkProton.cs │ │ ├── BulletNetworkProton.cs.meta │ │ ├── PlayerNetworkProton.cs │ │ └── PlayerNetworkProton.cs.meta │ ├── Proton.meta │ ├── Proton │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── UnityPeerJS.cs │ │ │ └── UnityPeerJS.cs.meta │ │ ├── EntityIdentity.cs │ │ ├── EntityIdentity.cs.meta │ │ ├── EntityScore.cs │ │ ├── EntityScore.cs.meta │ │ ├── Launcher.meta │ │ ├── Launcher │ │ │ ├── ProtonLauncher.cs │ │ │ └── ProtonLauncher.cs.meta │ │ ├── Managers.meta │ │ ├── Managers │ │ │ ├── GenericDataManager.cs │ │ │ ├── GenericDataManager.cs.meta │ │ │ ├── PeerJSEventManager.cs │ │ │ ├── PeerJSEventManager.cs.meta │ │ │ ├── ProtonManager.cs │ │ │ ├── ProtonManager.cs.meta │ │ │ ├── ProtonManager_backup.txt │ │ │ ├── ProtonManager_backup.txt.meta │ │ │ ├── ReceiveData.cs │ │ │ ├── ReceiveData.cs.meta │ │ │ ├── SendData.cs │ │ │ └── SendData.cs.meta │ │ ├── PlayerPeerJS.cs │ │ ├── PlayerPeerJS.cs.meta │ │ ├── ProtonStatsServer.cs │ │ ├── ProtonStatsServer.cs.meta │ │ ├── RandomText.cs │ │ ├── RandomText.cs.meta │ │ ├── SignallingServer.cs │ │ ├── SignallingServer.cs.meta │ │ ├── SyncData.meta │ │ └── SyncData │ │ │ ├── SyncColor.cs │ │ │ ├── SyncColor.cs.meta │ │ │ ├── SyncText.cs │ │ │ ├── SyncText.cs.meta │ │ │ ├── SyncTransform.cs │ │ │ └── SyncTransform.cs.meta │ ├── Utils.meta │ ├── Utils │ │ ├── AudioUtil.cs │ │ ├── AudioUtil.cs.meta │ │ ├── CameraShake.cs │ │ ├── CameraShake.cs.meta │ │ ├── MathUtil.cs │ │ └── MathUtil.cs.meta │ ├── WebRTC.meta │ └── WebRTC │ │ ├── WebRTCManager2.cs │ │ ├── WebRTCManager2.cs.meta │ │ ├── WebRTCManager3.cs │ │ ├── WebRTCManager3.cs.meta │ │ ├── WebRTCMultiplePeers.cs │ │ └── WebRTCMultiplePeers.cs.meta ├── Sounds.meta ├── Sounds │ ├── laserShoot.wav │ ├── laserShoot.wav.meta │ ├── laserShoot2.wav │ ├── laserShoot2.wav.meta │ ├── laserShoot3.wav │ ├── laserShoot3.wav.meta │ ├── laserShoot4.wav │ ├── laserShoot4.wav.meta │ ├── laserShoot5.wav │ └── laserShoot5.wav.meta ├── TextMesh Pro.meta ├── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── EmojiOne Attribution.txt │ │ ├── EmojiOne Attribution.txt.meta │ │ ├── EmojiOne.json │ │ ├── EmojiOne.json.meta │ │ ├── EmojiOne.png │ │ └── EmojiOne.png.meta ├── WebGLCopyAndPaste.meta ├── WebGLCopyAndPaste │ ├── Plugins.meta │ ├── Plugins │ │ ├── WebGLCopyAndPaste.jslib │ │ └── WebGLCopyAndPaste.jslib.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── WebGLCopyAndPaste.cs │ │ └── WebGLCopyAndPaste.cs.meta ├── WebGLTemplates.meta └── WebGLTemplates │ ├── WebGLAndPeerJs.meta │ └── WebGLAndPeerJs │ ├── TemplateData.meta │ ├── TemplateData │ ├── favicon.ico │ ├── favicon.ico.meta │ ├── fullscreen-button.png │ ├── fullscreen-button.png.meta │ ├── progress-bar-empty-dark.png │ ├── progress-bar-empty-dark.png.meta │ ├── progress-bar-empty-light.png │ ├── progress-bar-empty-light.png.meta │ ├── progress-bar-full-dark.png │ ├── progress-bar-full-dark.png.meta │ ├── progress-bar-full-light.png │ ├── progress-bar-full-light.png.meta │ ├── style.css │ ├── style.css.meta │ ├── unity-logo-dark.png │ ├── unity-logo-dark.png.meta │ ├── unity-logo-light.png │ ├── unity-logo-light.png.meta │ ├── webgl-logo.png │ └── webgl-logo.png.meta │ ├── index.html │ ├── index.html.meta │ ├── thumbnail.png │ └── thumbnail.png.meta ├── CITATION.cff ├── Gifs ├── 4_players_com_delay.gif ├── sync_rot_pos_scale.gif └── teste_2_jogadores_sem_delay.gif ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── BurstAotSettings_WebGL.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config ├── README.md ├── Tests ├── photon.json └── proton.json ├── UserSettings ├── EditorUserSettings.asset ├── Layouts │ ├── CurrentMaximizeLayout.dwlt │ └── default-2021.dwlt └── Search.settings ├── WebGL ├── Build │ ├── WebGL.data │ ├── WebGL.framework.js │ ├── WebGL.loader.js │ └── WebGL.wasm ├── StreamingAssets │ └── UnityServicesProjectConfiguration.json ├── TemplateData │ ├── favicon.ico │ ├── fullscreen-button.png │ ├── progress-bar-empty-dark.png │ ├── progress-bar-empty-light.png │ ├── progress-bar-full-dark.png │ ├── progress-bar-full-light.png │ ├── style.css │ ├── unity-logo-dark.png │ ├── unity-logo-light.png │ └── webgl-logo.png └── index.html ├── WebGL_Photon ├── Build │ ├── WebGL_Photon.data │ ├── WebGL_Photon.framework.js │ ├── WebGL_Photon.loader.js │ └── WebGL_Photon.wasm ├── StreamingAssets │ └── UnityServicesProjectConfiguration.json ├── TemplateData │ ├── favicon.ico │ ├── fullscreen-button.png │ ├── progress-bar-empty-dark.png │ ├── progress-bar-empty-light.png │ ├── progress-bar-full-dark.png │ ├── progress-bar-full-light.png │ ├── style.css │ ├── unity-logo-dark.png │ ├── unity-logo-light.png │ └── webgl-logo.png └── index.html ├── docs ├── index.md └── requirements.txt └── mkdocs.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Assets/ExemploPhoton.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Resources.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources/Bullet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Resources/Bullet.prefab -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources/Bullet.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Resources/Bullet.prefab.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Resources/Player.prefab -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Resources/Player.prefab.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources/Rotator.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Resources/Rotator.prefab -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources/Rotator.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Resources/Rotator.prefab.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scenes.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scenes/Gameplay.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scenes/Gameplay.unity -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scenes/Gameplay.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scenes/Gameplay.unity.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scenes/Menu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scenes/Menu.unity -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scenes/Menu.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scenes/Menu.unity.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Bullet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Bullet.cs -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Bullet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Bullet.cs.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Health.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Health.cs -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Health.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Health.cs.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Network.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Network.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Network/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Network/Launcher.cs -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Network/Launcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Network/Launcher.cs.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Network/NetworkRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Network/NetworkRoom.cs -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Network/NetworkRoom.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Network/NetworkRoom.cs.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Network/PlayerNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Network/PlayerNetwork.cs -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Network/PlayerNetwork.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Network/PlayerNetwork.cs.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Player.cs -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Player.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Player.cs.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/RotatorObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/RotatorObject.cs -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/RotatorObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/RotatorObject.cs.meta -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Score.cs -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Score.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/ExemploPhoton/Scripts/PUN/Score.cs.meta -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Player.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Materials/Player.mat -------------------------------------------------------------------------------- /Assets/Materials/Player.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Materials/Player.mat.meta -------------------------------------------------------------------------------- /Assets/Photon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChannelCreationOptions.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChannelWellKnownProperties.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatAppSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatAppSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatAppSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatChannel.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatChannel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatChannel.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatClient.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatClient.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatEventCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatEventCode.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatEventCode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatEventCode.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatOperationCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatOperationCode.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatOperationCode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatOperationCode.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatParameterCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatParameterCode.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatParameterCode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatParameterCode.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatPeer.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatPeer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatPeer.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatState.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatState.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatUserStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatUserStatus.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatUserStatus.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/ChatUserStatus.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/IChatClientListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/IChatClientListener.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/IChatClientListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/IChatClientListener.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/PhotonChat.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/PhotonChat.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/PhotonChat.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/PhotonChat.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/changes-chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/changes-chat.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/changes-chat.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Code/changes-chat.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/Common.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/EventSystemSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/Common/EventSystemSpawner.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/EventSystemSpawner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/Common/EventSystemSpawner.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/OnStartDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/Common/OnStartDelete.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/OnStartDelete.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/Common/OnStartDelete.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/TextButtonTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/Common/TextButtonTransition.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/TextButtonTransition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/Common/TextButtonTransition.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/TextToggleIsOnTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/Common/TextToggleIsOnTransition.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common/TextToggleIsOnTransition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/Common/TextToggleIsOnTransition.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/AppSettingsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/AppSettingsExtensions.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/AppSettingsExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/AppSettingsExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChannelSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChannelSelector.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChannelSelector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChannelSelector.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatAppIdCheckerUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChatAppIdCheckerUI.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatAppIdCheckerUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChatAppIdCheckerUI.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChatGui.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatGui.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/ChatGui.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/DemoChat-Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/DemoChat-Scene.unity -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/DemoChat-Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/DemoChat-Scene.unity.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Editor/ChatEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Editor/ChatEditor.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Editor/ChatEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Editor/ChatEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/Gradient.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/Gradient.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/Gradient.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/Jura-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/Jura-Medium.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/Jura-Medium.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/Jura-Medium.ttf.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/OutlinedSquaredBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/OutlinedSquaredBox.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/OutlinedSquaredBox.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/OutlinedSquaredBox.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/PunIcon-White-129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/PunIcon-White-129.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/PunIcon-White-129.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/PunIcon-White-129.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof35.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof35.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof35.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof35.ttf.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof_tt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof_tt.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof_tt.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof_tt.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/FriendItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/FriendItem.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/FriendItem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/FriendItem.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/IgnoreUiRaycastWhenInactive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/IgnoreUiRaycastWhenInactive.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/IgnoreUiRaycastWhenInactive.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/IgnoreUiRaycastWhenInactive.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/NamePickGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/NamePickGui.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/NamePickGui.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonChat/Demos/DemoChat/NamePickGui.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/Metro.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.xml -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/Photon3Unity3D.xml.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/WebSocket.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/WebSocket.jslib -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/WebSocket.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/WebSocket.jslib.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/changes-library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/changes-library.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/changes-library.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/changes-library.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/netstandard2.0.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.deps.json -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.deps.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.deps.json.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.dll -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.dll.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.xml -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.xml.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonNetworking-Documentation.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonNetworking-Documentation.chm -------------------------------------------------------------------------------- /Assets/Photon/PhotonNetworking-Documentation.chm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonNetworking-Documentation.chm.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonNetworking-Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonNetworking-Documentation.pdf -------------------------------------------------------------------------------- /Assets/Photon/PhotonNetworking-Documentation.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonNetworking-Documentation.pdf.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/AppSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/AppSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/AppSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/ConnectionHandler.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/CustomTypesUnity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/CustomTypesUnity.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/CustomTypesUnity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/CustomTypesUnity.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Extensions.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Extensions.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/FriendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/FriendInfo.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/FriendInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/FriendInfo.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/LoadBalancingClient.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonPing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonPing.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonPing.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonPing.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Player.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Player.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Player.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Region.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Region.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Region.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RegionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/RegionHandler.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RegionHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/RegionHandler.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Room.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Room.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Room.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RoomInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/RoomInfo.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RoomInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/RoomInfo.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/SupportLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/SupportLogger.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/SupportLogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/SupportLogger.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Unity.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Unity/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity/Editor/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Unity/Editor/AccountService.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity/Editor/AccountService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Unity/Editor/AccountService.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity/Editor/PhotonEditorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Unity/Editor/PhotonEditorUtils.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity/Editor/PhotonEditorUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Unity/Editor/PhotonEditorUtils.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity/PhotonAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Unity/PhotonAppSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity/PhotonAppSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/Unity/PhotonAppSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/WebRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/WebRpc.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/WebRpc.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/WebRpc.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/changes-realtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/changes-realtime.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/changes-realtime.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Code/changes-realtime.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Demos.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/ConnectAndJoinRandomLb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/ConnectAndJoinRandomLb.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/Jura-Medium-LB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/Jura-Medium-LB.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/Jura-Medium-LB.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/Jura-Medium-LB.ttf.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIcon.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIcon.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIconPro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIconPro.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIconPro.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIconPro.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewHandler.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewInspector.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonViewInspector.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunGradient.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunGradient.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunGradient.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettingsFile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/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/PunSceneSettingsInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettingsInspector.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/LICENSE.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ServerSettingsInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/ServerSettingsInspector.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/Views.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/Views.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/help.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/help.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Editor/help.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Enums.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Enums.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Enums.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Interfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Interfaces.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPhotonViewCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPhotonViewCallbacks.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPunCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPunCallbacks.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPunCallbacks.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Interfaces/IPunCallbacks.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PhotonView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/ServerSettings.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Utilities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Utilities.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Utilities/NestedComponentUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Utilities/NestedComponentUtilities.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbody2DView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbody2DView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbody2DView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbody2DView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformView.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformViewClassic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonTransformViewClassic.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Asteroid01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Asteroid01.fbx -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/LaserBolt.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/LaserBolt.fbx -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Spaceship.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Spaceship.fbx -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs/Bullet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs/Bullet.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Resources.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scenes.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Game.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Game/Bullet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Game/Bullet.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Lobby.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Lobby.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Textures.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/DemoHub-Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/DemoHub-Scene.unity -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/DemoHub-Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/DemoHub-Scene.unity.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor/PunStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor/PunStartup.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor/PunStartup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor/PunStartup.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts/DemoHubManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts/DemoHubManager.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts/ToDemoHubButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts/ToDemoHubButton.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/Gradient.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/Gradient.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/Gradient.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/toHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/toHub.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/toHub.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/toHub.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/toHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/toHub.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/toHub.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/toHub.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Black.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Black.mat -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Orange.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Orange.mat -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Red.mat -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Yellow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Yellow.mat -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Block.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Block.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Block.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Cluster.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Noise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Noise.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Noise.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Noise.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/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/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Resources.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts/SlotLanes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts/SlotLanes.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene.unity -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PhotonUnityNetworking.Demos.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PhotonUnityNetworking.Demos.asmdef -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Animator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Animator.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Resources.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms/CreateRoomUiForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms/CreateRoomUiForm.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms/LoadLevelUIForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms/LoadLevelUIForm.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms/UserIdUiForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms/UserIdUiForm.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Prefabs/Tab Toggle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Prefabs/Tab Toggle.prefab -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit-Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit-Scene.unity -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Controllers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Controllers.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Lists.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Lists.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/ScoreHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/ScoreHelper.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/ThirdParty.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/ThirdParty.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animator.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/Gradient.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/Gradient.mat -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models/Pointer.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models/Pointer.fbx -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models/Robot Kyle.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models/Robot Kyle.fbx -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs/UI.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Scripts/DocLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Scripts/DocLinks.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/3dText.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/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/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxBright.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxOrange.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxOrangeRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxOrangeRed.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxText.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxText.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxText.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxTextHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxTextHover.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Jura-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Jura-Medium.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/RoundedBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/RoundedBox.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Toggle.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Toggle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Toggle.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleHover.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOn.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOn.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOn.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOnHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOnHover.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof35.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof35.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof35.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof35.ttf.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof_tt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/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/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures/Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures/Gradient.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/WebRpcImplementationExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/WebRpcImplementationExample.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/WebRpcImplementationExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Demos/WebRpcImplementationExample.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIcon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIcon-128.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIcon-128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIcon-128.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp128.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp128.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp32.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp32.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp32.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp48.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp48.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp48.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp512.png -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp512.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp512.png.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Resources.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Resources/PhotonServerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Resources/PhotonServerSettings.asset -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Resources/PhotonServerSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/Resources/PhotonServerSettings.asset.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullArea.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullArea.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullArea.cs.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/StatesGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/StatesGui.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PunTeams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PunTeams.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonView.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonView.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room/CountdownTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room/CountdownTimer.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/TurnBased.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/TurnBased.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/EventSystemSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/EventSystemSpawner.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TabViewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TabViewManager.cs -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/changelog.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/changelog.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/changelog.txt.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/link.xml -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/link.xml.meta -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/readme.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Photon/PhotonUnityNetworking/readme.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/UnityPeerJS.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Plugins/UnityPeerJS.jslib -------------------------------------------------------------------------------- /Assets/Plugins/UnityPeerJS.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Plugins/UnityPeerJS.jslib.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/BulletProton.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/BulletProton.prefab -------------------------------------------------------------------------------- /Assets/Resources/BulletProton.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/BulletProton.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/PlayerPeerJS.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/PlayerPeerJS.prefab -------------------------------------------------------------------------------- /Assets/Resources/PlayerPeerJS.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/PlayerPeerJS.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/PlayerProton.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/PlayerProton.prefab -------------------------------------------------------------------------------- /Assets/Resources/PlayerProton.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/PlayerProton.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/SpriteRectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/SpriteRectangle.png -------------------------------------------------------------------------------- /Assets/Resources/SpriteRectangle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/SpriteRectangle.png.meta -------------------------------------------------------------------------------- /Assets/Resources/TestCube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/TestCube.prefab -------------------------------------------------------------------------------- /Assets/Resources/TestCube.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Resources/TestCube.prefab.meta -------------------------------------------------------------------------------- /Assets/RestClient.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient.meta -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene.meta -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Demo.unity -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Demo.unity.meta -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts.meta -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/MainScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/MainScript.cs -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/MainScript.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/MainScript.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/Model.meta -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model/Photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/Model/Photo.cs -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model/Photo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/Model/Photo.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/Model/Post.cs -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model/Post.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/Model/Post.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model/Todo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/Model/Todo.cs -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model/Todo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/Model/Todo.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/Model/User.cs -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model/User.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/DemoScene/Scripts/Model/User.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/Common.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/Common.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/Common.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/Extensions.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/Extensions.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/HttpBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/HttpBase.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/HttpBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/HttpBase.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/JsonHelper.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/JsonHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/JsonHelper.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/RequestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/RequestHelper.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/ResponseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/ResponseHelper.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/StaticCoroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/Helpers/StaticCoroutine.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/RestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/RestClient.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/RestClient.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/RestClient.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/RestClientPromise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/RestClientPromise.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/RestClientPromise.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/Proyecto26.RestClient/RestClientPromise.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/EnumerableExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/EnumerableExt.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/EnumerableExt.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/EnumerableExt.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Exceptions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Exceptions.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Exceptions/PromiseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Exceptions/PromiseException.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Exceptions/PromiseException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Exceptions/PromiseException.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Exceptions/PromiseStateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Exceptions/PromiseStateException.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Promise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Promise.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Promise.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Promise.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/PromiseHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/PromiseHelpers.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/PromiseHelpers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/PromiseHelpers.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/PromiseTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/PromiseTimer.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/PromiseTimer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/PromiseTimer.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Promise_NonGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Promise_NonGeneric.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Promise_NonGeneric.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Promise_NonGeneric.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Tuple.cs -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Tuple.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/Packages/RSG.Promise/Tuple.cs.meta -------------------------------------------------------------------------------- /Assets/RestClient/RestClient.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/RestClient.pdf -------------------------------------------------------------------------------- /Assets/RestClient/RestClient.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/RestClient/RestClient.pdf.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/GameplayProton.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scenes/GameplayProton.unity -------------------------------------------------------------------------------- /Assets/Scenes/GameplayProton.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scenes/GameplayProton.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/MenuProton.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scenes/MenuProton.unity -------------------------------------------------------------------------------- /Assets/Scenes/MenuProton.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scenes/MenuProton.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/PeerJSTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scenes/PeerJSTest.unity -------------------------------------------------------------------------------- /Assets/Scenes/PeerJSTest.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scenes/PeerJSTest.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/WebRTCTests 1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scenes/WebRTCTests 1.unity -------------------------------------------------------------------------------- /Assets/Scenes/WebRTCTests 1.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scenes/WebRTCTests 1.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Examples.meta -------------------------------------------------------------------------------- /Assets/Scripts/Examples/BulletNetworkProton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Examples/BulletNetworkProton.cs -------------------------------------------------------------------------------- /Assets/Scripts/Examples/BulletNetworkProton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Examples/BulletNetworkProton.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Examples/PlayerNetworkProton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Examples/PlayerNetworkProton.cs -------------------------------------------------------------------------------- /Assets/Scripts/Examples/PlayerNetworkProton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Examples/PlayerNetworkProton.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Core.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Core/UnityPeerJS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Core/UnityPeerJS.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Core/UnityPeerJS.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Core/UnityPeerJS.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/EntityIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/EntityIdentity.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/EntityIdentity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/EntityIdentity.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/EntityScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/EntityScore.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/EntityScore.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/EntityScore.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Launcher.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Launcher.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Launcher/ProtonLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Launcher/ProtonLauncher.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Launcher/ProtonLauncher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Launcher/ProtonLauncher.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/GenericDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/GenericDataManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/GenericDataManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/GenericDataManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/PeerJSEventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/PeerJSEventManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/PeerJSEventManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/PeerJSEventManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/ProtonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/ProtonManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/ProtonManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/ProtonManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/ProtonManager_backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/ProtonManager_backup.txt -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/ProtonManager_backup.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/ProtonManager_backup.txt.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/ReceiveData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/ReceiveData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/ReceiveData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/ReceiveData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/SendData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/SendData.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/SendData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/Managers/SendData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/PlayerPeerJS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/PlayerPeerJS.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/PlayerPeerJS.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/PlayerPeerJS.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/ProtonStatsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/ProtonStatsServer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/ProtonStatsServer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/ProtonStatsServer.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/RandomText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/RandomText.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/RandomText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/RandomText.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SignallingServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/SignallingServer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SignallingServer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/SignallingServer.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/SyncData.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData/SyncColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/SyncData/SyncColor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData/SyncColor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/SyncData/SyncColor.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData/SyncText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/SyncData/SyncText.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData/SyncText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/SyncData/SyncText.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData/SyncTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/SyncData/SyncTransform.cs -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData/SyncTransform.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Proton/SyncData/SyncTransform.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Utils.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utils/AudioUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Utils/AudioUtil.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/AudioUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Utils/AudioUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utils/CameraShake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Utils/CameraShake.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/CameraShake.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Utils/CameraShake.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Utils/MathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Utils/MathUtil.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/MathUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/Utils/MathUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/WebRTC.meta -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC/WebRTCManager2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/WebRTC/WebRTCManager2.cs -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC/WebRTCManager2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/WebRTC/WebRTCManager2.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC/WebRTCManager3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/WebRTC/WebRTCManager3.cs -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC/WebRTCManager3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/WebRTC/WebRTCManager3.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC/WebRTCMultiplePeers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/WebRTC/WebRTCMultiplePeers.cs -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC/WebRTCMultiplePeers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Scripts/WebRTC/WebRTCMultiplePeers.cs.meta -------------------------------------------------------------------------------- /Assets/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds.meta -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot.wav -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot.wav.meta -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot2.wav -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot2.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot2.wav.meta -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot3.wav -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot3.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot3.wav.meta -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot4.wav -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot4.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot4.wav.meta -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot5.wav -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot5.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/Sounds/laserShoot5.wav.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLCopyAndPaste.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLCopyAndPaste/Plugins.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Plugins/WebGLCopyAndPaste.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLCopyAndPaste/Plugins/WebGLCopyAndPaste.jslib -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Plugins/WebGLCopyAndPaste.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLCopyAndPaste/Plugins/WebGLCopyAndPaste.jslib.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLCopyAndPaste/Scripts.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scripts/WebGLCopyAndPaste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLCopyAndPaste/Scripts/WebGLCopyAndPaste.cs -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scripts/WebGLCopyAndPaste.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLCopyAndPaste/Scripts/WebGLCopyAndPaste.cs.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/favicon.ico -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/favicon.ico.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/favicon.ico.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/fullscreen-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/fullscreen-button.png -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/style.css -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/style.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/style.css.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-dark.png -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-dark.png.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-light.png -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-light.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-light.png.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/webgl-logo.png -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/webgl-logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/webgl-logo.png.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/index.html -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/index.html.meta -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/thumbnail.png -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Assets/WebGLTemplates/WebGLAndPeerJs/thumbnail.png.meta -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Gifs/4_players_com_delay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Gifs/4_players_com_delay.gif -------------------------------------------------------------------------------- /Gifs/sync_rot_pos_scale.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Gifs/sync_rot_pos_scale.gif -------------------------------------------------------------------------------- /Gifs/teste_2_jogadores_sem_delay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Gifs/teste_2_jogadores_sem_delay.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_WebGL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/BurstAotSettings_WebGL.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/README.md -------------------------------------------------------------------------------- /Tests/photon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Tests/photon.json -------------------------------------------------------------------------------- /Tests/proton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/Tests/proton.json -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /UserSettings/Layouts/CurrentMaximizeLayout.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/UserSettings/Layouts/CurrentMaximizeLayout.dwlt -------------------------------------------------------------------------------- /UserSettings/Layouts/default-2021.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/UserSettings/Layouts/default-2021.dwlt -------------------------------------------------------------------------------- /UserSettings/Search.settings: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WebGL/Build/WebGL.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/Build/WebGL.data -------------------------------------------------------------------------------- /WebGL/Build/WebGL.framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/Build/WebGL.framework.js -------------------------------------------------------------------------------- /WebGL/Build/WebGL.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/Build/WebGL.loader.js -------------------------------------------------------------------------------- /WebGL/Build/WebGL.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/Build/WebGL.wasm -------------------------------------------------------------------------------- /WebGL/StreamingAssets/UnityServicesProjectConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/StreamingAssets/UnityServicesProjectConfiguration.json -------------------------------------------------------------------------------- /WebGL/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/favicon.ico -------------------------------------------------------------------------------- /WebGL/TemplateData/fullscreen-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/fullscreen-button.png -------------------------------------------------------------------------------- /WebGL/TemplateData/progress-bar-empty-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/progress-bar-empty-dark.png -------------------------------------------------------------------------------- /WebGL/TemplateData/progress-bar-empty-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/progress-bar-empty-light.png -------------------------------------------------------------------------------- /WebGL/TemplateData/progress-bar-full-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/progress-bar-full-dark.png -------------------------------------------------------------------------------- /WebGL/TemplateData/progress-bar-full-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/progress-bar-full-light.png -------------------------------------------------------------------------------- /WebGL/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/style.css -------------------------------------------------------------------------------- /WebGL/TemplateData/unity-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/unity-logo-dark.png -------------------------------------------------------------------------------- /WebGL/TemplateData/unity-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/unity-logo-light.png -------------------------------------------------------------------------------- /WebGL/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/TemplateData/webgl-logo.png -------------------------------------------------------------------------------- /WebGL/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL/index.html -------------------------------------------------------------------------------- /WebGL_Photon/Build/WebGL_Photon.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/Build/WebGL_Photon.data -------------------------------------------------------------------------------- /WebGL_Photon/Build/WebGL_Photon.framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/Build/WebGL_Photon.framework.js -------------------------------------------------------------------------------- /WebGL_Photon/Build/WebGL_Photon.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/Build/WebGL_Photon.loader.js -------------------------------------------------------------------------------- /WebGL_Photon/Build/WebGL_Photon.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/Build/WebGL_Photon.wasm -------------------------------------------------------------------------------- /WebGL_Photon/StreamingAssets/UnityServicesProjectConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/StreamingAssets/UnityServicesProjectConfiguration.json -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/favicon.ico -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/fullscreen-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/fullscreen-button.png -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/progress-bar-empty-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/progress-bar-empty-dark.png -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/progress-bar-empty-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/progress-bar-empty-light.png -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/progress-bar-full-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/progress-bar-full-dark.png -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/progress-bar-full-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/progress-bar-full-light.png -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/style.css -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/unity-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/unity-logo-dark.png -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/unity-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/unity-logo-light.png -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/TemplateData/webgl-logo.png -------------------------------------------------------------------------------- /WebGL_Photon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/WebGL_Photon/index.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/HEAD/mkdocs.yml --------------------------------------------------------------------------------