├── .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 /Assets/ExemploPhoton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ddef441ae3be344184f4fb0d096d148 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75aabb16b5af9874d9dfed8904746eee 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources/Bullet.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0216aa64e7324448bfd1ae6e2a1e223 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccb072963b2a9c646a2102a2f769db1c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Resources/Rotator.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03a8aa99105435644a69b69929c54cba 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b2aa49c382ab1443ab885041a1292e8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scenes/Gameplay.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f05acf5aae45f704eb9d5e3bb6e98b3f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scenes/Menu.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cda990e2423bbf4892e6590ba056729 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d04617d8ac2b11b409ed42f079306765 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4b96cbb579638c4bb272eb26480de8b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Bullet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da739eac02a075244af6e0f5fce37227 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Health.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a596770df920de34c816f2d83e13d985 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Network.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 830071cc97f781449b71652885cb46b7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Player.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8486a5e0786a6034cad4faa355628c40 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/ExemploPhoton/Scripts/PUN/Score.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bae2f15e035c8204c943d205780957f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec023e8bb30db08469699098ded2e5b6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Player.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc451b418f4971d46a87f3df6086e3af 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98951132346795f438babe7a3183da43 3 | folderAsset: yes 4 | timeCreated: 1523536679 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea05e6479d592944d955c2a5e1a6d6f1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af83a98aaa4f7b64eb7fcec95ee7b1ed 3 | folderAsset: yes 4 | timeCreated: 1523525757 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatChannel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35b2a4878e5e99e438c97fbe8dbbd863 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 692e391fa2a297c45b3d530aa85be610 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatDisconnectCause.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b90b85043f1857f43b94fd00edfc1ef1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatEventCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 188e4a680bce12d4cbad8d57a24f7d44 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatOperationCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c90a2a73f3ce648409739c724d3e6cef 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatParameterCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7a17b60c85fb30448492e397c58c7ce 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatPeer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f712805dec728943a668b3bf19dc422 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f482d8c4fe7ade4cbb08eb4a2d83b39 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/ChatUserStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7db67e7f5face2e42b6daafcaf4e6c82 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/IChatClientListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bab7c8053b486e34aa0d4ca99dcbec80 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/PhotonChat.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08a110bd598f7604f9519c2d7e1fb3cc 3 | timeCreated: 1537459565 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Code/changes-chat.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5c3dda6f11fe7845989297c8a603dc2 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 801c62f7d03cb463ba20067deb330234 3 | folderAsset: yes 4 | timeCreated: 1537874612 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aab6e4c105054f7e91af2cf027064d1 3 | folderAsset: yes 4 | timeCreated: 1538395282 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e3a46219ebf94310a9f347733f88f31 3 | folderAsset: yes 4 | timeCreated: 1537874626 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChannelSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48caa72710147fc4f9389b0b5ec6137d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatAppIdCheckerUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4eb1284704a754507acb17b07b888086 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/ChatGui.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02d148d0890b2d44dbdf7f1c1b39a499 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/DemoChat-Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec07267f6a28fb044ac89845274e79af 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c33037d6755b1134db073d59feb6f7d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Editor/ChatEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ef7cc863c103cf44930b0411a10ad1f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c73bd05f7e3a006418e6398b47511e49 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/Gradient.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a983204b184909dbc74e32573b95605f1e1f901f720a3cdbdb427270de717ba8 3 | size 105386 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/Jura-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonChat/Demos/DemoChat/Files/Jura-Medium.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/OutlinedSquaredBox.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e44bbba210f6d998fb784329cc7edc1862bad3d36bc07110436b25a03dd97409 3 | size 1259 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/PunIcon-White-129.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8f9eab48d9897cdd434dae3fda2fa5e2137304fd4e9b4b42ee5f0b607917418 3 | size 15252 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof35.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof35.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/Files/eurof_tt.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e96690bd3586cf643a223def4feaa4d4 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/FriendItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 660b16ba396d0465b98be14947420288 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonChat/Demos/DemoChat/NamePickGui.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 696a5174ff5e707479b3540eb56d14b7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee1734b1a7bac244bb5f15ecd778b5f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 887ac71c799552346b6cf7654fb699cb 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:586d30f870fab65a24cb0b294c310f4f6add1f42503d7530f64f9b75adfec6e9 3 | size 174080 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Metro/Photon3Unity3D.pri.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3439a9e4030efca45b6cc06240106c02 3 | timeCreated: 1460035811 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f9ea3f1bd25869ed42585dcfffb8976a3e0d20b1b87f2457b6c04b8874366e9 3 | size 226304 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/Photon3Unity3D.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d4f08d435c4b6343969d8af249460ff 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | TextScriptImporter: 9 | userData: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f243ce0406bd1c40a9ff5fc2d78d905 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/SocketWebTcp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac953d6a57a9ea94e96ec689598995d5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/WebSocket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1bad04f7805f764dba77f0d4518e0f0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README: -------------------------------------------------------------------------------- 1 | 2 | UPDATED: WebSocket/websocket-sharp.dll from our own Git Fork. Commit: 77f74bd 3 | forked from https://github.com/sta/websocket-sharp.git 4 | 5 | websocket-sharp is provided under The MIT License as mentioned here: https://github.com/sta/websocket-sharp#license -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.README.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e262c2b04eaa8440987b50a91e86674 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/WebSocket/websocket-sharp.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e57b964eeb264945c4c133912a61fbbbb793d697b5cf76a5c4ac97341a2659b2 3 | size 244736 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/changes-library.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8040d310df77714a90a561261bfb2cb 3 | timeCreated: 1557919981 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beb9d2a25c882b54ab2fd9adaec2b53c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.deps.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a966b98b651e18748abf2829786b5899 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e9aae4ce9a47c27cb6d9d1d8ed5dca6f5e5b29755cea628270f544041738e25 3 | size 232960 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonLibs/netstandard2.0/Photon3Unity3D.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7015e500cd5b71244af56448dfb59804 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonNetworking-Documentation.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonNetworking-Documentation.chm -------------------------------------------------------------------------------- /Assets/Photon/PhotonNetworking-Documentation.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6923098d409554f57bedd5a4fa66e3ad 3 | timeCreated: 1527163075 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonNetworking-Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonNetworking-Documentation.pdf -------------------------------------------------------------------------------- /Assets/Photon/PhotonNetworking-Documentation.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c285a840e88d74462a18710772dc4bfb 3 | timeCreated: 1527163075 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b54c221855bde4a4ba511877e7b6b904 3 | folderAsset: yes 4 | timeCreated: 1505899913 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 028784b24103cfd46a9d2eadba4c285f 3 | folderAsset: yes 4 | timeCreated: 1523525776 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c0464991e33a70498abdd85c150cc59 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/FriendInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94ba1138c322ea04c8c37cfbcf87f468 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/LoadbalancingPeer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35c989013c977244186e524a4c90dcee 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonPingClasses.cs: -------------------------------------------------------------------------------- 1 | // this file is no longer used. it can be deleted safely. -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PhotonRealtime", 3 | "references": [], 4 | "includePlatforms": [], 5 | "excludePlatforms": [] 6 | } -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/PhotonRealtime.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 831409e8f9d13b5479a3baef9822ad34 3 | timeCreated: 1537459565 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Player.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3e4b5bebc687044b9c6c2803c36be3d 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RegionHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 207807222df026f40ac3688a3a051e38 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Room.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17568a7a5552c09428dd48e73548b8b8 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/RoomInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71760b65ad7d5b842942c797a0366fa7 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/SupportLogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b61c60d38639484ebbd7f2100dd3d08 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa14aa576f7e18f4bb6c4c93368a235d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a02814c0303a60f488813e6111993aaa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/Unity/Editor/PhotonEditorUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 607340ca505d53d4f8e785423fac7964 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Code/changes-realtime.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 530dcba8d8fbbc24a8894ca925cadd8a 3 | timeCreated: 1558358700 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5456c843f3eadef4f86166dc7f3ab583 3 | folderAsset: yes 4 | timeCreated: 1523527335 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32dc3abb17a2b434a9b7b347bdbea7b3 3 | folderAsset: yes 4 | timeCreated: 1513266233 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/DemoLoadBalancing-Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a73b0cac1a73cc346aaeb5f8dd0b53f1 3 | timeCreated: 1513264275 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/Jura-Medium-LB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonRealtime/Demos/DemoLoadBalancing/Jura-Medium-LB.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2b6672cc770a19438ff06fcb2637630 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a312e4dbb5268d4e859200f68478e0c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/CustomTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab517bd36a2b2504b83979fcad45d4a2 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e14293cef01c2f742a605d63babcb803 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIcon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35e98c5bbec048032e58b63a61604040f634cd45b3dcfda1155e97a9d27a4345 3 | size 131 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/CopyIconPro.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fbc38e3d14aafa44df46efaf11e2398a34565f380467e0b13d78d7901b164b2e 3 | size 3340 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d2cadb1ccf05074e8ce96b1393846cf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PhotonUnityNetworking.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4025d00f1ce60da4ea2d0830acf5ebfb 3 | timeCreated: 1537863428 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunGradient.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bba688f9ce9614337f41308348201da7bebfd76a3fd7f1b201f6d4ea66f36dc 3 | size 308 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc3284eace5a64d4bb516df7d7effdb9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/PunSceneSettingsFile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0aacb83307022d449e90a09d28222ae 3 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62126d9bb7b8eb64ea07a039d902d0ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2fbd2e43c3dfae4d9830e9921238cf5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ReordableList/ReorderableListResources.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60c609ded101b0a468fb5cf27b31cf27 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/ServerSettingsInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21239ba77ac4b534f958e8617ef13ede 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/Views.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6024eaa234f94341af9e45cc99285c7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonAnimatorViewEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3f61bade114730459f7ad45f5f292c1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonRigidbody2DViewEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a82e8e86b9eecb40ac3f6ebc949f6ef 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonRigidbodyViewEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bcfebc9a2f1074488adedd1fe84e6c9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/Views/PhotonTransformViewClassicEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22292ca8ffb574945bedfaf49266672e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Editor/help.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63cdf020b5d541e715d4a8a0032c16aa1d6ca9fe170de04aebea233f919b6c8d 3 | size 3379 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Enums.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7962bbdaba2a4940b1341d755abd40d 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38ae0eecc6fe5d340b82bb221198aa89 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 177bddf229f8d8445a70c0652f03b7df 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetwork.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88e11b3353de7e94d84b1ec5adbdd15e 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonNetworkPart.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbf2b3734a024f842bd50f8738feb400 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonStreamQueue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 006991e32d9020c4d896f161318a2bc0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PhotonUnityNetworking", 3 | "references": [ 4 | "PhotonRealtime" 5 | ], 6 | "optionalUnityReferences": [], 7 | "includePlatforms": [], 8 | "excludePlatforms": [], 9 | "allowUnsafeCode": false 10 | } -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PhotonUnityNetworking.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57c32fc907df0f54e8e6e8f0d2488336 3 | timeCreated: 1537459565 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/PunClasses.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40f16a0227e5c14293e269c875c0f9b 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d67e11e5c968e60489b4eeec4d85e165 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a724ff00b77e85d44a2af6baf46fc6a2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonAnimatorView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b8c4a61274f60b4ea5fb4299cfdbf14 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbody2DView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e7cb724808c322458aa4d15f5035fa9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Code/Views/PhotonRigidbodyView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64179f3720bbfe947b7724caa67b7c1d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb8ec42b3fa78bd4f9a20b7de289d9cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 836b5819c0347f0458f3e374fa3c2230 3 | folderAsset: yes 4 | timeCreated: 1508416790 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb89ce1e7485b214d8f27d2f3901474c 3 | folderAsset: yes 4 | timeCreated: 1505213271 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials/FlyerAsteroid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 968fc57e6928a5448ae7d0644246d534 3 | timeCreated: 1505213348 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials/FlyerPlayership.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99fced4bc2985174cac8512dc765d2bc 3 | timeCreated: 1505213348 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials/ParticleAfterburner.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc1a05fba9a6af241a25a35b4caf5e27 3 | timeCreated: 1505213349 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials/WhiteSmooth.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b05171e12835ff84fb155f51d69d7c31 3 | timeCreated: 1505213348 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Materials/WhiteUnlit.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 073b1ee561def20429e655b5c8893ad4 3 | timeCreated: 1505213348 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffc8b1d9f846b0f4d9e60bafe6e61a83 3 | folderAsset: yes 4 | timeCreated: 1505213276 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Asteroid01.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a608fa35f2753b21b0fd0060430f562d66dcc55b65f022b8c70fbff4d1891e3 3 | size 23152 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/FlyerAsteroidB.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0497982b579b64bd46694ff9bddf1d20486f6f15ce4727ef0168b4c92060270b 3 | size 25408 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/LaserBolt.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22b5607e6adea6b46aa217d1e3b4f4f272998f1947dd1cfe09767630807ab9e3 3 | size 18560 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b0355c289df177488ae398e713b4769 3 | folderAsset: yes 4 | timeCreated: 1505213298 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Materials/Asteroid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be2c382f522695c4fa3947ac8e1d4457 3 | timeCreated: 1505213349 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Materials/FlyerAsteroid1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 294f02eac9561704ebe4baa5b1bc4163 3 | timeCreated: 1505302910 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Materials/SpaceshipGlow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 609dbe3d30c4bf84ca15ce89479d7919 3 | timeCreated: 1505213348 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Materials/SpaceshipHull.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de6b3d1666741b24597a4349a143eeb7 3 | timeCreated: 1505213349 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Models/Spaceship.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fcc22370915c4c803648b979e29da55ca94eee9d5f49e6c52534c8936a544a6 3 | size 22848 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bec40e338146dc14592b49339a98d089 3 | folderAsset: yes 4 | timeCreated: 1505378214 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs/Bullet.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5624ee9da9d10514ea7b808e83979c85 3 | timeCreated: 1505221345 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs/PlayerListEntry.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d68bf8413681d9b4aa7328277e632e3f 3 | timeCreated: 1505379840 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs/PlayerOverviewEntry.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f03d1c686a26a1d4da99a4186b0bb1ab 3 | timeCreated: 1505982913 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Prefabs/RoomListEntry.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03c5e15309335324fba99d68e38cb08b 3 | timeCreated: 1505378968 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a944631b9e05c542937258f0681e963 3 | folderAsset: yes 4 | timeCreated: 1505218998 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Resources/BigAsteroid.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15f43343ba0a60e47a63d28496373c3f 3 | timeCreated: 1505221098 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Resources/SmallAsteroid.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18a79aea49b60d342b7a672b7a34edbe 3 | timeCreated: 1505221248 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Resources/Spaceship.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 775dd0a15ad25a544b33ad40ef0da1f0 3 | timeCreated: 1505220991 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93a466838cecd764a94035c8b6f1596b 3 | folderAsset: yes 4 | timeCreated: 1505212609 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scenes/DemoAsteroids-GameScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98efc37d6307844488eb3e4247dde7e9 3 | timeCreated: 1505212676 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scenes/DemoAsteroids-LobbyScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8a9d1312a49dc8488a9b32d83d659c7 3 | timeCreated: 1505212662 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ae075de96c44c449ad885c6e84ffb5c 3 | folderAsset: yes 4 | timeCreated: 1505219105 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d3277e3b6ea2fa4885437f70ca2497c 3 | folderAsset: yes 4 | timeCreated: 1505225963 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Scripts/Lobby.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7087de22e901cb24d91f7c256e564de6 3 | folderAsset: yes 4 | timeCreated: 1505225982 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc9f7bb3bfb617048b28071ed312932e 3 | folderAsset: yes 4 | timeCreated: 1505213282 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Textures/FlyerAsteroidEmissive.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e2b60f7fec25009a3aab0fb7b0a339fb01389e53ce62dc9dcabca0e198f26fe 3 | size 18876 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Textures/FlyerPlayershipAlbedo.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3571d2155e4402aa5b3aada13ad1fc073b08e7fc8c4334da9df6f9971bb15299 3 | size 19664 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Textures/FlyerPlayershipEmission.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bf2a8e2c33c00f30d942ee055d09148f0368473506773079f187eee77b23fd8 3 | size 22192 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoAsteroids/Textures/FlyerPlayershipOcclusion.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e874efdcd7125fdc7791997249cc7e52f831c1ec2d25c8a56dc96d88e3045dcc 3 | size 179804 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76393d857f3f83e4eac6e8fe98f97c3d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/DemoHub-Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dfd47dc8b9484dd79d8636d8603a9e5 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 857fb0c989c46264a8568187f4ef7fac 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor/PunDemos.DemoHubEditor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PunDemos.DemoHubEditor", 3 | "references": [ 4 | "PhotonUnityNetworking", 5 | "PhotonRealtime" 6 | ], 7 | "includePlatforms": [ 8 | "Editor" 9 | ], 10 | "excludePlatforms": [] 11 | } -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor/PunDemos.DemoHubEditor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9a89c21e4f5b294eb31fb8166e13303 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Editor/PunStartup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bafe5c223c99ab44a5f70010efdae47 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8b3e10be8e7cbb4a887448e72c0c02a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts/DemoHubManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed6ca7d1055974cc7847025558e8a903 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Scripts/ToDemoHubButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f877c2f2d403a4d4f975fb1fd64fe7e8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf88f7f45947fce43aece510bff3df94 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/Gradient.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a983204b184909dbc74e32573b95605f1e1f901f720a3cdbdb427270de717ba8 3 | size 105386 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/OutlinedSquaredBox.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e44bbba210f6d998fb784329cc7edc1862bad3d36bc07110436b25a03dd97409 3 | size 1259 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/PunIcon-White-129.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8f9eab48d9897cdd434dae3fda2fa5e2137304fd4e9b4b42ee5f0b607917418 3 | size 15252 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/Sprites/toHub.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65b33731b066a1776b523656f88ab07752b4123d12a28acb4eecaf72c8a36b8e 3 | size 1871 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoHub/toHub.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65b33731b066a1776b523656f88ab07752b4123d12a28acb4eecaf72c8a36b8e 3 | size 1871 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5be0f48c310a256419f65a4919c8ea94 3 | folderAsset: yes 4 | timeCreated: 1521730220 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26fec7636ebd7ae43a99e2c187ed6500 3 | folderAsset: yes 4 | timeCreated: 1524052388 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Black.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1598ff147655ecb4893e78f88baa9475 3 | timeCreated: 1524052433 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/LightGreen.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd644746d7159df42b0c206b559af881 3 | timeCreated: 1524052433 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Orange.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09adc4af150569a4cb996354c367b8c8 3 | timeCreated: 1524052433 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Red.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad7ce727a68a61f4897679b81da7b344 3 | timeCreated: 1524052433 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Materials/Yellow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90623549d4482f042ade35d8a0758e35 3 | timeCreated: 1524052433 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Procedural-Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1fad393017993c4893877b645062417 3 | timeCreated: 1521730297 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66ccfe3c456c20c4f9de20d08685de69 3 | folderAsset: yes 4 | timeCreated: 1521730244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f596cf04a966f2c4f99e675fea04c8a0 3 | folderAsset: yes 4 | timeCreated: 1505306596 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbdd20181375f86428af8f3a57e6735f 3 | folderAsset: yes 4 | timeCreated: 1505306496 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Copyrights.txt: -------------------------------------------------------------------------------- 1 | https://kenney.nl/terms-of-service -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Copyrights.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 386ff113c810b4ecfb823874aeb6fb97 3 | timeCreated: 1529322828 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50f8c03879c2eb04d962d57f6a8b831a 3 | folderAsset: yes 4 | timeCreated: 1505306496 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 936c39e82305d734a8b9d5b1dd50ed71 3 | folderAsset: yes 4 | timeCreated: 1505306496 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be4d31381de87b440b448169c5c404d2 3 | folderAsset: yes 4 | timeCreated: 1505306496 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8fffc43e3e50674e971d47c073367c0 3 | folderAsset: yes 4 | timeCreated: 1505306496 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/Textures/tankco.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5776f42219fcc4ccb4c7a12613751c19de4bfbdf5d49e223093e05d33630694a 3 | size 5516 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/billboardLower.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b027a68bd26c60467232eff44c464e677d3c5cadda0c110d3364a66d5b9523f 3 | size 22525 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/flagGreen.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6eb39b60c1803bbd15d28b1aa4ef2000d331211dab18b4d902b0866e1340d34 3 | size 18772 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/rail.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:499d740454f2e4878d25c41cdf4090a5acd564e4258a9946b1111f04fd46dec1 3 | size 18785 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/roadCornerSmall.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97fd3f286aac8a90ac34065dca767fcac0a0c99b158ba03f62f8e3cca656051d 3 | size 38416 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/roadCornerSmallBorder.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e3351b37e30dcda7622a47f6486a3f9dbfbbe0264817a7471fbe8f433f3974b 3 | size 21798 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/roadRampLongCurvedWall.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de20a34ecb387755c3f235f64536897c7e148535b803c1e23705078010f9264a 3 | size 76385 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/roadStart.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d82ab28b66e7933f79c06f2286d157b6f584f6a4e955b6424f3ae6ba5b34f85 3 | size 34263 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/roadStartPositions.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b47acb802ac31e029273d87ca3bd82247bde4cdaebc363ccc9d168a734e9f9c8 3 | size 18227 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/roadStraight.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57a70bbbaddfa3a0f44c11395a7978292b6b60e3d22a534b02e9682347a974a2 3 | size 13895 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Racing Kit/Models/roadStraightBridgeStart.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1d25c8bb1acc2aac8eb11722f05c8623dd946934b8867d79f5e94e237c5169c 3 | size 17767 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe4d3272b8eadde48bb30e60838d60c0 3 | folderAsset: yes 4 | timeCreated: 1505306496 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95ac6b2ddc0b178448b5cb43bdefc865 3 | folderAsset: yes 4 | timeCreated: 1505306496 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/11 - Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7d67d7d7ddb88542b23886a4b496c77 3 | timeCreated: 1447099478 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/13 - Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b957742c5b9bfd441b9b330c8b55d0c5 3 | timeCreated: 1446052884 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/13 - Default22662.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d91274cc4a876a439f75445704f421b 3 | timeCreated: 1447000286 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/13 - Default54.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 831e4ea6beda02947bdca5aeb8543156 3 | timeCreated: 1447000285 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/20 - Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e1a4e79a3548164da24123dbb0f3566 3 | timeCreated: 1446041123 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/22 - Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86080a783905b5740ad2b81f63a2c650 3 | timeCreated: 1446052890 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/24 - Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c14837dfa515883428e5652d93e80c72 3 | timeCreated: 1446052884 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/No Name.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a773bd7a075f9534e9c9ed1eb6e9a30f 3 | timeCreated: 1446052883 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/car.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c282d31bf082fca4a822239b62ff8257 3 | timeCreated: 1447339251 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/ground_green.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fef45cc204351a9458f02ad7c0243f18 3 | timeCreated: 1447099478 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/ground_green232.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd4000dd854ad0e40ba2a59fab94cad1 3 | timeCreated: 1446818813 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/insides_2.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cc3c2bbff5d71d45ab82bdd222f75c3 3 | timeCreated: 1446818813 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/insides_3.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdcec2345c1d1af4da10b1c5d9cbff65 3 | timeCreated: 1447000293 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/leaves_palm_243.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fe15af0e28a31a43bf683296709c6b0 3 | timeCreated: 1446816986 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/roof.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ede00b712b6fb134282e1efba44fefd8 3 | timeCreated: 1446052893 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/tank.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 479cbf10a2ba803449168e0148bcdbb5 3 | timeCreated: 1447101578 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Materials/windows_2.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db1318ffb13bfef419a8dad09473425d 3 | timeCreated: 1446820451 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b61dc31d0efd4334fb27e47ed08e6851 3 | folderAsset: yes 4 | timeCreated: 1505306496 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Models/bush1.FBX: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15eacba35efe4418c7d07713c2f7ecb5bf79c18db06394e757b83e54102b559b 3 | size 39295 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Models/car_1.FBX: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef97d12607eeac167621c43c999668ed3be029c70adaf8dbc3751bff7cd02faf 3 | size 359489 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Models/car_3.FBX: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93f97d78d93ce2f11db5db55ab06fc804f8503018d51bbd83f0741d019c19a90 3 | size 331378 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Models/car_4.FBX: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed71bb3dcd1a89acd5dfec2d87247d554748366574b94147fa02ec0ddbbc0e72 3 | size 311440 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Models/hamvee.FBX: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:208100c40a5b415c8ec2030082943f4b37f4095121e3d3651cb2f7d64149fe23 3 | size 320796 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Models/tree_1.FBX: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b8c0c53f51f69041258b14ce364ed61358a1cec0750e1c1a10798459b36c059 3 | size 113386 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Kenney Assets/Stylized city/Models/tree_6.FBX: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b99b76c97af7fdc6e58b2f9717bda2a117d7d809bc8b2d77d2ec579d46d26c5 3 | size 112264 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50f8208451d3ed4409db37ac905dea56 3 | folderAsset: yes 4 | timeCreated: 1505307338 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Prefabs/SlotCar_A.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4910a004464ca4efa808af20d2eb1e15 3 | timeCreated: 1505307421 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Prefabs/SlotCar_B.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71e3000ee30414d368eeee6d87961b6d 3 | timeCreated: 1505307453 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Prefabs/SlotCar_C.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fd2963e35ed24ba89705127fca0fba1 3 | timeCreated: 1505307466 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Prefabs/SlotCar_D.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9db296b8bb78143c1a5f7fa8f611967e 3 | timeCreated: 1505741548 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c65d62bd709896e4f8984164b2d42853 3 | folderAsset: yes 4 | timeCreated: 1505308577 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Resources/Player Controller.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9248d8e58293473bb27cf2f5505f88b 3 | timeCreated: 1505308581 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81a8e7e851879f549963fd39b6c01587 3 | folderAsset: yes 4 | timeCreated: 1505306695 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts/BezierCurve.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 459d76155d5c0d94ea6ece7fac829714 3 | folderAsset: yes 4 | timeCreated: 1505221813 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts/BezierCurve/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d748ea8848c248e449a5ca71e00d9bce 3 | folderAsset: yes 4 | timeCreated: 1504880005 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/Scripts/BezierCurve/Editor/PunDemos.DemoSlotcarEditor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66eabdb1ed6f5d041a6906290472e432 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b9a49bdbbe544cdeaf23d958e5296f8 3 | folderAsset: yes 4 | timeCreated: 1529318862 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 711b38c07f2cf904f81b3422c67f1825 3 | timeCreated: 1504790617 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene/LightingData.asset -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene/LightingData.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c8e0d280c24c4aba81a4294e87548ec 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 25800000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/DemoSlotRacer/SlotCar-Scene/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dd9fcb4e7c43f12d33e09fba2174c03082b1d1470eebb81006fb45ce1128861 3 | size 133553 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PhotonUnityNetworking.Demos.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35cc2632df2760540bcc67312740008b 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f09d91478c1216438bf6766ec098a5d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Animator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31f7bd43c723b64449fa0af0b5f275ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Animator/Kyle Robot.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b222757b9e3844209748206173481c3 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c9c717351b4c854d907ad85549efdd1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Materials/Red Beam.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 409bf720e9924426b9f253cf037a8f4e 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Materials/UnitTextureGreen12x.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c13ddd2bc8fa4e85943376cf7c8bf7d 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Materials/UnitTextureRed12x.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f171282ef46c4fbea54d9ab581fcb83 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Materials/UnitTextureYellow12x.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ceba02e8dfaf34474b36fe43b51b69db 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb03de2d6ee429e41a45bd16bf8caf87 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Prefabs/Demo Intro UI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f773d1fa10a4f4e0d88490eab5d5b46d 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Prefabs/Game Manager.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7fe671fa5d4d4772a4b20715fb9b0ff 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Prefabs/Player UI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e41946a981c3b444a84d15eb7c608ca4 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Prefabs/Quit Room Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b19bb80838bcf4457bf6f50a19c5593b 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c743072c0da989e4ea65fce150e9faa6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Resources/My Robot Kyle -done-.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe764102aa5aa431795da15fa2dec0e2 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2e133c321fc868409cc3a12da290c3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes/PunBasics-Launcher.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bff77b01b50254edbb6edeeaba5ae8b3 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes/PunBasics-Room for 1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b8561c6e396849a5ba48c3eb9524049 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes/PunBasics-Room for 2.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 764428c63577f4580af4ce54ca9f4b1b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes/PunBasics-Room for 3.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e07afcca5bf1a41f5bd28f498656b7b8 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scenes/PunBasics-Room for 4.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7a7f9734636d415ca84ef3aaf7680f6 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08e23bebf2a53eb488ac85b9cb4b41fd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts/GameManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4433564e76b1940028e7e531f171050d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts/Launcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4796bc1963eb34e1fa021b0a45b29df4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts/LoaderAnime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df9597db7c55c44e885b8f74697d5ba0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts/PlayerAnimatorManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 507e5741cec8a42dc964c8e0a4b55bd6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts/PlayerManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98fac77b304554f238a61572f5720187 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts/PlayerNameInputField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c22ee30e9b2b34fe38b62e48c7d79dfa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunBasics-Tutorial/Scripts/PlayerUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dba1a179e553446f0a08606778f559f1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09ab33cdd6af1144ea9ca35ac9f5b719 3 | folderAsset: yes 4 | timeCreated: 1511871151 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Forms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8206eb39e85921d48879ad858b40a7ee 3 | folderAsset: yes 4 | timeCreated: 1511957079 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8701c2a6e3904e649bf803cefc241114 3 | folderAsset: yes 4 | timeCreated: 1519212764 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Prefabs/Help Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf998ac0cf60141c597aecb3a8ffad74 3 | timeCreated: 1519212767 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Prefabs/Tab Toggle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 192c18d73e55e466d89edd9bc2ab936d 3 | timeCreated: 1520344180 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/PunCockpit-Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d6d60c803e244e51ba945a84b88757d 3 | timeCreated: 1511870912 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2a025fd6ea894647ad6404f32fa2b5e 3 | folderAsset: yes 4 | timeCreated: 1524225548 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Autonomous UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 474af3605718d36449f5dbe2c9ecdb8c 3 | folderAsset: yes 4 | timeCreated: 1515418582 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Autonomous UI/CurrentRoom.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44872d445f2594fbeb2bd8fba90f1f08 3 | folderAsset: yes 4 | timeCreated: 1559569017 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Autonomous UI/Generic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6ff6c1b4167dd340a8b3aaae892b377 3 | folderAsset: yes 4 | timeCreated: 1519216796 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Controllers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 901592418674487429f301516272f6b6 3 | folderAsset: yes 4 | timeCreated: 1516282208 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/Lists.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d9560529ca07d147b217827aa339f0b 3 | folderAsset: yes 4 | timeCreated: 1511958157 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/PropertyFields.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 738dd6f6259233a4fb0d3e871097dacf 3 | folderAsset: yes 4 | timeCreated: 1521549690 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/ReadOnlyProperties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418caa004faab434da814c76a8704dd8 3 | folderAsset: yes 4 | timeCreated: 1524135954 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/PunCockpit/Scripts/ThirdParty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7a13965037324ac4be99d4b5a939725 3 | folderAsset: yes 4 | timeCreated: 1529324336 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01a8ebbcaee32cd4c883b944fe77e0b9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f24b3374a6f3eb0489f0bd60a499688d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidCrouch.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cdcfc34fcf178fe9a20f60265f9504ada6978a58260eeff20b08138182f41fd5 3 | size 5422240 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidIdle.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55c5d08704969f926602ba46de9370d2e02f70fb456a0691290e63991f0a7fef 3 | size 1411008 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidIdleJumpUp.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5b4bd552a135146187d011c68c617554076e73cef41592313d665f794b67492 3 | size 467824 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidJumpAndFall.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff1d45c9ae4b5d5eb6cf9cce87116f5dabdb28b72a4b1bb275e5efce6b3cf2e0 3 | size 957744 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidMidAir.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89fab31bc5b8423573432171d65e97d20b788933164958474c7698a8091d8437 3 | size 654976 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidRun.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0370d1e2f887533d3c306fbfb325e3a52019c7316b9aa0475d4b9f8bfc8b7886 3 | size 972704 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidRunTurn.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3488e1ef8e517e8c2de02c68cdc37b582c29fa417ea8705b385569601d499a1 3 | size 657424 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidRunTurnSharp.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bf3450e2d88dbfbd15eb39ed65d7d5644ce7d97dc6eedc0d5bd987748ee4ead 3 | size 534944 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidStandTurn.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4912bc19915b2e63f808a5f15020978126ea6043b75cd52b93d84d10d51523a1 3 | size 1130880 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidWalk.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ceab209964e2f0226100d065e8c2995d452e713ef5d3578b36292895f2affeae 3 | size 732176 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidWalkTurn.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff13e179c16459d94eb102fd6ed6da40793ea6ceb356e24d6f254d94146fc180 3 | size 657216 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/HumanoidWalkTurnSharp.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81eab5c1bc5be00f37375b30b8b5239210cf5dc3badedffca850a68383bccde7 3 | size 630256 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35cca3de5691d944fb610576a516bb70 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/Materials/EyesMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce5a83fcea7762541ba43ca5bd854dae 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/Materials/SkinMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37d0d4d178b5dbf449ff0814718dc354 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/Materials/SuitMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed4e4079e2e99084d8d914283565fc5c 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/Materials/TeethMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17dd34e8a826d0641a0e0f43da1e03a0 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animations/Materials/TongueMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28498b9ebcb776a46b3c9479a664bfc7 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2801ac353257134459299cec1ea2273d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Animator/ThirdPersonAnimatorController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2cf68ff4b1ffda45a77f7307dd789b9 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12e34119f8e2e904c9e1e637277bb7eb 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/Gradient.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32e7ed8e6b80b884bbed8260b788648b 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/PlayerDiamond.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c597444fc6a08854d89baeeff4ba511d 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/Robot_Color.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aa851515cd3747d6b3b3e461199a2ed 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/UnitCircleMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb6c12085a6b0a5429029fcd6478a816 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/UnitCircleTexture.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80114bc117609cd4e9c988f8692e7a68 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/UnitTextureBlue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1401c9e6acd739e49a9caa91ab07ac7a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/UnitTextureBlue12x.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c676d877ef241ab4686e2f237b1e2f13 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Materials/UnitTextureRed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c506c95d32f3494e9453ef5c0124b0e 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa329cda4378e445abea9a25d5c7ffe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models/Pointer.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a863b5772f15e8ce78dbc4b75ee070f6806423590f5852fca3daae96cd95234b 3 | size 11068 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Models/Robot Kyle.fbx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aaeb728d9ac4859e3c40a41095574db56aae99dbe1f323ff93d31f2ac1443523 3 | size 330704 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94d57f1478b3a8949843d3d4a2b7f8df 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs/PointerPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c6977a9ecda14e4e96ea3a71c749c2c 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cade2e8c1ac9f408322245e2d17cf1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs/UI/Button Regular.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 395d3cc3d7cf0014a870fee72cbd3490 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs/UI/Toggle Regular.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82b2227f60269dd46b9a921faca9dc1f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Prefabs/UI/Tooltip.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87d5aa043215a47cba8b74ae3490a936 3 | timeCreated: 1495711075 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c090c203f75e9334d810615c9d92bb82 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b88345814cbcf34c97ce101e4f5d8a6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:859642a215280b0b087a6e0b803d251650cc4ce99f212a77bda8e3cf87b6b16f 3 | size 956 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxOrange.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e841fd19da0a05057014c1113297a354d7b6e6a467e2a571d601d4d3497d847 3 | size 956 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxOrangeRed.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5542701b3b84d06615f69faa1958d13fd594917cc13f6a588e6b3cd8c76674e 3 | size 956 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxText.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04bfc08b58e63c4d9a93360b08db6779e81173ed0064bfad44257b893d7ccc04 3 | size 973 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/BoxTextHover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5950e7fa661d76be5e40ba85514ae5f183212e9d9ef9c7162632b60c1a244ac 3 | size 973 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/DropDown Arrow.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:700dbd34fe301fb4af3f7ae3403a773e4a7efba465e482e31699dae2ae9f35bb 3 | size 408 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/DropDown CheckMark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:962153ef40e5e37eba11b6e23957869b1971ea7b9084cce9c9e70c1abf245afd 3 | size 677 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Jura-Flat-Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c190da5d14d0e904ba512abe82018576 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Jura-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Jura-Medium.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Orbitron Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Orbitron Black.ttf -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/RoundedBox.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b37292bd364998dd11ecf4c79373e13df982965c5e2e810eb4f9631b17290848 3 | size 1082 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/Toggle.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8699f32dbafb3dab65176a815fc7f5858b425e80c95b37207c6f05c739b66aa7 3 | size 996 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleHover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c719e34cc365ff3ab6f60706d8ce34583d082e17be4871fa403ad8deee7dfb9 3 | size 996 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b87a02782e6fe6a28d2436e9b43f5ae0ad9940b9156b172a4957e77380870dd2 3 | size 1009 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/ToggleOnHover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd6980e304e6ad2994ddb6bf3d5c595f7f62b5ec149d0fc03672e0ccadda08d6 3 | size 1009 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof35.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Skin/eurof35.ttf -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15ea5c1da8ad3e14490043dddecfa93d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures/Gradient.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a983204b184909dbc74e32573b95605f1e1f901f720a3cdbdb427270de717ba8 3 | size 105386 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures/Robot_Color.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4cdcdf0692a2c01b090a6fe5d217b9863cfdcc896c74c3081fedfb615883bb4b 3 | size 3139373 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures/Robot_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3471a651e271f91097da2e161a43f936c3a037aea53f8d39e66a8c42e5338e41 3 | size 3965125 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures/UnitCircleTexture.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68a47c25592fe59b9ac9c073c96a986f37b2e103edd838bbd66ab012b2b911d6 3 | size 17729 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures/UnitTexture.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:143e61787dcff9d5055cff0db2980fb8c82ed014a338d1bc2ee8de588e7ce972 3 | size 3304 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures/UnitTextureBlue.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9307578f8144208984a8fe1d01da8c5d0d9691c59130b036aee0ac490995b8e 3 | size 17886 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Demos/Shared Assets/Textures/UnitTextureRed.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e13a6813c50ed3b4e7b0a0a66461c397d500214fcc83e7cec4a52bf79729c77 3 | size 17572 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebc245e9a162d7749b96acd14e6d473e 3 | folderAsset: yes 4 | timeCreated: 1525338830 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIcon-128.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb63c20966c16dcb3736dc8686fcab6c1c2ec87a8f046d26025f0e9a1ca872b0 3 | size 35046 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp128.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4ee2cd4ba333f4eb7e5fe9ec5faa0aa5369a63a522c4649bc5b5a9d1f53eb77 3 | size 6645 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp32.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:133d4e6d39f106c22d5da86c63449fe93c88719453dcafe645c484940a0b849d 3 | size 1691 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp48.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d7db6541fb472abde2ce0f561f049a871fecf00877df62f7aed48f418c81f61 3 | size 2464 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Icons/PunIconApp512.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56fcaa02587e52fc757e98236ed59258b5428f01589f396a66656489ea114c6e 3 | size 41877 4 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8029a7f79171524793a8925f8ce7886 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/Resources/PhotonServerSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36850f17c20673646b7d4735ede4c0e1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c9485e879b69bf48bbc3ea64a71dbb2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 404d7999c3b78454798028d2efcb9336 3 | folderAsset: yes 4 | timeCreated: 1529327267 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullArea.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfb1c264fdc576442b2f42c998bed4a2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/CullingHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84db789113d4b01418c1becb128c4561 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcede10f4c76b443483f21320fee20e5 3 | folderAsset: yes 4 | timeCreated: 1529329408 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/Editor/CullAreaEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abadaa451a7bff0489078ed9eec61133 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Culling/Editor/PhotonUnityNetworking.Utilities.Culling.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06dafbbe6b7b3a84f84213f47aabe7f0 3 | timeCreated: 1537459565 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72b80dd954bc647c4a2a924b87762f92 3 | folderAsset: yes 4 | timeCreated: 1529327208 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Debugging/PointedAtGameObjectInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6262dd9a9b078c4e8cbd47495aa6d23 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94d453efd58794348867b36584d05a1e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1d46a1c486645945a3667d8bbe2d2e7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor/PlayerNumberingInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6590f39353bf4efdb3b14691166135f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/Editor/PunTeamsInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dcadaf22424c4f5d82f4d48c3b8097f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PunPlayerScores.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b4df3943860f1d45bfe232053a58d80 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonPlayer/PunTeams.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6587c8104d7524f4280d0a68dd779f27 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonUnityNetworking.Utilities.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a738238285a7a8246af046cbf977522f 3 | timeCreated: 1537459565 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 199121930ec5d4aa9bb53d836180b74f 3 | folderAsset: yes 4 | timeCreated: 1529327582 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/PhotonView/SmoothSyncMovement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35144820bcc25444bb8f0fd767d9423e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e10fe700b1a744ec78575843923fe6d7 3 | folderAsset: yes 4 | timeCreated: 1529327245 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/ConnectAndJoinRandom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c1b84a427010e0469ce0df07ab64dbc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/MoveByKeys.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99b4daedc5e674a429acdf1e77da6a55 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnClickDestroy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dab7328ba500e944a99d62065fba6c0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnClickInstantiate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b79a9b62449de940a073364858c3f9b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnEscapeQuit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fbabafd914a48f4eb6108d8d8f43d29 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnJoinedInstantiate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed3b5dcba7bf9114cb13fc59e0a71f55 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Prototyping/OnStartDelete.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8d56a54ae062da4a87516fb994f4e30 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/Room.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e3b3d6025e4b41fca914dca9dcc718d 3 | folderAsset: yes 4 | timeCreated: 1529328285 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/TurnBased.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2edc8c63e86d94f6990d3f7e7e90066a 3 | folderAsset: yes 4 | timeCreated: 1529327659 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/TurnBased/PunTurnManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a1b3bda60e9e804f87fd1e5d20a885a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 665e986f9b37c294d96c166a76e618d3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/ButtonInsideScrollList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0e8b381f2c05442ca5c01638958156a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TextButtonTransition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d234639538a34b8d9e3cc6362a7afd0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/UtilityScripts/UI/TextToggleIsOnTransition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec99d371d7c8e44899ce4b834dfd4d6a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/changelog.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 612a7d8fb44bb994d90d9c0fa1408703 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cecd4a32eba31cd4393c185e20824bfc 3 | TextScriptImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/Photon/PhotonUnityNetworking/readme.txt -------------------------------------------------------------------------------- /Assets/Photon/PhotonUnityNetworking/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d90864ccbf99d4a449c87472b0a181e8 3 | labels: 4 | - ExitGames 5 | - PUN 6 | - Photon 7 | - Networking 8 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d42d041fc50f144897661bbe7624b79 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c38c30a7733fa8e4896a81cede7cf282 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/BulletProton.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10c8218fa6a22b040ac3621b232cc80f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/PlayerPeerJS.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3902269ac48df714d89c2c8854719286 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/PlayerProton.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b07c59923ec6a664bad8248658145dab 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Resources/SpriteRectangle.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44f9592db7d11d11ed58c7cad12e35925d9974d6576fb0951b4fa0cd7c6eaf10 3 | size 2097 4 | -------------------------------------------------------------------------------- /Assets/Resources/TestCube.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33f0efb5745d28d4781782c225c09d36 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/RestClient.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae6f9020d7540e04ab80e24249b46b39 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a10827858b48c42b149ac9f4bd2033 3 | folderAsset: yes 4 | timeCreated: 1509415555 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Demo.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ac2984141c33e84691447d0423d8044 3 | timeCreated: 1509410070 4 | licenseType: Store 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a4a8a106e84a9b419871a8f516b8edf 3 | folderAsset: yes 4 | timeCreated: 1509410070 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/RestClient/DemoScene/Scripts/Model.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59b224f75a257a8499679ad0491b5ef5 3 | folderAsset: yes 4 | timeCreated: 1509415641 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/RestClient/Packages.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 745690b7cc0ad3b40827b0a0ec814fca 3 | folderAsset: yes 4 | timeCreated: 1509411502 5 | licenseType: Store 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 635ebf53860f2423fa32b3ab9cbc16a7 3 | folderAsset: yes 4 | timeCreated: 1548213766 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/RestClient/Packages/Proyecto26.RestClient/Helpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ad9b2bb061b34d0cbc89846acac21e9 3 | folderAsset: yes 4 | timeCreated: 1561241146 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6ef2f4633f014a7ebe279813337eb85 3 | folderAsset: yes 4 | timeCreated: 1556043578 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/RestClient/Packages/RSG.Promise/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99f26a5b7f4724f56aa016db0144bd9e 3 | folderAsset: yes 4 | timeCreated: 1556043578 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/RestClient/RestClient.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/RestClient/RestClient.pdf -------------------------------------------------------------------------------- /Assets/RestClient/RestClient.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 475015657fb064908b91cc94e2364d3d 3 | timeCreated: 1545279230 4 | licenseType: Store 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 131a6b21c8605f84396be9f6751fb6e3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/GameplayProton.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80a4f1b1560c8c74598a7e1847515058 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/MenuProton.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3eb1b1229f70704699c1a27220d8f29 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/PeerJSTest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73dd55e69a5699547af09787294a411e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/WebRTCTests 1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50b08af6c067b5d46a78400d23c3d4df 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 663c944f5ea7e8b459a696ad20f71b52 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1108c7095026e7348b0f52fe8a6b6b8f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a9592c7d33f45a4b82b19cbdf94de88 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7df0ed9dbba144a468dbcd579b9276bc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Core/UnityPeerJS.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d57a080782a5a5846b0a6b9a5b5ac6d9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/EntityIdentity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bb8adfb2f8f7e846bbc75d526f12cc1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/EntityScore.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c54c66fffa93fb24882bad3d0b85dc50 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Launcher.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ecf99c539c742c4f9f84bea296c4974 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f5426671e8fbf846af4c45484acce54 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/ProtonManager_backup.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 473740352199f2f4a927be0e9cc0fb34 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/Managers/SendData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 110fff0ba70ed1f4f9fdfa6450d90039 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/PlayerPeerJS.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3da90ec6d8bd1e47bd25c55b6a9fa30 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/ProtonStatsServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49551aa0c3e9e044380ae2ff6e1f3fc1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/RandomText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1142702bcb049e94f9b2e9ea8864c3f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SignallingServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dceff61799999f4c83e4d30878f5587 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e61f5dca9db3bc84896f2e5139147929 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData/SyncColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07ad298b1d0f052459d0a34db827e9f0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Proton/SyncData/SyncText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2646deec746b7947a7a2b66332d2f85 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0980ed81551350d4e86dfb6c3544fc31 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Utils/AudioUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aaacb40eabd3c948aaf19b45d0fa0ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utils/CameraShake.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58a477fea7c673b4e9ad12b0249a3b96 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Utils/MathUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f82c2ebfa01561c4ea77f84e2246110e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b02dfb58944538c438e7df01a9d8d5bf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC/WebRTCManager2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0c9c0b3d0c3e6a468d45d24a69880f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC/WebRTCManager3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9716b601c0fb52e4d9a37422143b9952 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/WebRTC/WebRTCMultiplePeers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 510133f9a1080e24b9d7789fb5d0aeb0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ad7f4e04ff9e3c448ce3ba8d8c2d357 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f10df4ab12a0a30a08cac603923774e5a378e9dc63fc79f4af967f6b258ef196 3 | size 7866 4 | -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot2.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ded0a4e7bc7e98564ad771330be1350ad2340746dd89b6847fc0b6de734f22f 3 | size 13868 4 | -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot3.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44ca7fb9a6eb9bd8f87f22fb7c7296ba72369ecb4b67a3eb2290eee80b085e7c 3 | size 16593 4 | -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot4.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:379ae585d5aa0e83c8e0b2cda41094a1501d141ed7e21f92682d515c2bc06752 3 | size 4523 4 | -------------------------------------------------------------------------------- /Assets/Sounds/laserShoot5.wav: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c18c5b46ae2f68af492120160ac5cd16d04e38fbad31da5cc80942a214cc58ef 3 | size 2979 4 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54d1bd14bd3ca042bd867b519fee8cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7e8f5a82a3a134e91c54efd2274ea9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8d251f9af63b746bf2f7ffe00ebb9b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab70aee4d56447429c680537fbf93ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e59c59b81ab47f9b6ec5781fa725d2c 3 | timeCreated: 1484171296 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243e06394e614e5d99fab26083b707fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 731f1baa9d144a9897cb1d341c2092b8 3 | folderAsset: yes 4 | timeCreated: 1442040525 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e73a58f6e2794ae7b1b7e50b7fb811b0 3 | timeCreated: 1484172806 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e498d1c8094910479dc3e1b768306a4 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79459efec17a4d00a321bdcc27bbc385 3 | timeCreated: 1484172856 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f586378b4e144a9851e7b34d9b748ee 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- 1 | )]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fade42e8bc714b018fac513c043d323b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d82c1b31c7e74239bff1220585707d2b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512a49d95c0c4332bdd98131869c23c9 3 | folderAsset: yes 4 | timeCreated: 1441876896 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c41005c129ba4d66911b75229fd70b45 3 | timeCreated: 1480316912 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aecb92fff08436c8303b10eab8da368 3 | folderAsset: yes 4 | timeCreated: 1441876950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f952c082cb03451daed3ee968ac6c63e 3 | timeCreated: 1432805430 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5b5dff67a942289a9defa416b206f3 3 | timeCreated: 1436653997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9f693669af91aa45ad615fc681ed29f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48bb5f55d8670e349b6e614913f9d910 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e3b057af24249748ff873be7fafee47 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128e987d567d4e2c824d754223b3f3b0 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd89cf5b9246416f84610a006f916af7 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14eb328de4b8eb245bb7cea29e4ac00b 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1ede39bf3643ee8e493720e4259791 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a02a7d8c237544f1962732b55a9aebf1 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d12adcee749c344b8117cf7c7eb912 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe393ace9b354375a9cb14cdbbc28be4 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85187c2149c549c5b33f0cdb02836b17 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7ada0af4f174f0694ca6a487b8f543d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68e6db2ebdc24f95958faec2be5558d6 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf81c85f95fe47e1a27f6ae460cf182c 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407bc68d299748449bbf7f48ee690f8d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c334973cef89a9840b0b0c507e0377ab 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3997e2241185407d80309a82f9148466 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d930090c0cd643c7b55f19a38538c162 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0603b6d5186471b96c778c3949c7ce2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- 1 | This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ 2 | 3 | Please visit their website to view the complete set of their emojis and review their licensing terms. -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381dcb09d5029d14897e55f98031fca5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f05276190cf498a8153f6cbe761d4e6 3 | timeCreated: 1480316860 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a87b965a701de3dc31d7401e542b1fc946587f912c51d7a26e46ade9f098bd1a 3 | size 112319 4 | -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ecd8986aa00a5c4aa39f66642d81997 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0b33e66342fb174c98b0645384186d4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 778b2fd8714c2cb4eade5a16d45a54ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6d980c2e7e7e0e4ba94441eeb0a592e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fea6251532647254781b815a14560d29 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c749e68722a3b448bd503d6e836a65a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/favicon.ico -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/favicon.ico.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5047a8e082110e044bb88a157f44bfc4 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/fullscreen-button.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21221581673a54b8139d408d4a3f8d2b879e86827d4b6fc53b995ff7a99ee3e9 3 | size 175 4 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/fullscreen-button.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 588463dec2eef324b89f42a44e70acc6 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/progress-bar-empty-dark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbee7131afe8a3365906240d89184dc86234c119467f390bc4bc6802328fdb4d 3 | size 96 4 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/progress-bar-empty-dark.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82d4e1ba81f98b241aad5fe248ebef97 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/progress-bar-empty-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:143696c060ad43d6c30f19ff5f49000927a139a2a1e4c9f45fafaa2b90d7d2be 3 | size 109 4 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/progress-bar-empty-light.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9ab0171298974841bbbbbbd32bfcf9a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/progress-bar-full-dark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3306a6244dcb3926fca38a28e3ced589df8ff1beed955eb17c0bbf01c918bc62 3 | size 74 4 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/progress-bar-full-dark.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72aa8de306d86e64fabbd50a2cf76354 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/progress-bar-full-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12395ea785480c5cdf12fade6e6cbf49666d5bb1cef7240c113dbcba6bdc5c87 3 | size 84 4 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/progress-bar-full-light.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6038115ecd1af2e499cd799ce13e8a85 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/style.css.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3aefa2843a16f946a724e58f0c00bc4 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-dark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1b72d26c096487dabc948b54bc203f8dac7ed4e3f5733918798e858acb4b159 3 | size 3042 4 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-dark.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a234b7b40562d3948ac3bd1f804d5e4c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:002990aea0d946833cadc1519d5b7e50a4570bd537a0517dd79a59d3eec84da7 3 | size 3077 4 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/unity-logo-light.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 918babc6c1960c7488cfe144c0c39f2e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b30c3af2a4538c6edf5f2411953760641dfa257f2a4cc5b88d671aa243b1f12f 3 | size 2947 4 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/TemplateData/webgl-logo.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93c1ad8ddd48adc448de7cfe9da3a254 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/index.html.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1b7c80f82b52864cb8fe137557f6c91 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/thumbnail.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5b442bd5fe5283a1a0283408fe87df270e58d7b52171e1ffb7042350b96eaf0 3 | size 5256 4 | -------------------------------------------------------------------------------- /Assets/WebGLTemplates/WebGLAndPeerJs/thumbnail.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ee84db25807f1145ba030ff36dd4438 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- 1 | cff-version: 1.2.0 2 | message: "If you use this software, please cite it as below." 3 | authors: 4 | - family-names: Borges 5 | given-names: Rodrigo 6 | title: "Proton Unity" 7 | version: 0.0.1 8 | date-released: 2023-01-22 -------------------------------------------------------------------------------- /Gifs/4_players_com_delay.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1b1db0979031cf7ecef012c8f91e1c4fa7fad0f911ece2c04fd099a073bf6b9 3 | size 19871866 4 | -------------------------------------------------------------------------------- /Gifs/sync_rot_pos_scale.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe2c2c65850fe19b9bf67874e9ee197400a9f573f751d2eb028aa7285f9afae 3 | size 5481473 4 | -------------------------------------------------------------------------------- /Gifs/teste_2_jogadores_sem_delay.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9027450295b7b165812f2afba55b104c453cda5cc4e8b79706713ca5546528d8 3 | size 10890917 4 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "Version": 4, 4 | "DisabledWarnings": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.3.13f1 2 | m_EditorVersionWithRevision: 2021.3.13f1 (9e7d58001ecf) 3 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/ProjectSettings/boot.config -------------------------------------------------------------------------------- /UserSettings/Search.settings: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /WebGL/Build/WebGL.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/WebGL/Build/WebGL.data -------------------------------------------------------------------------------- /WebGL/Build/WebGL.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/WebGL/Build/WebGL.wasm -------------------------------------------------------------------------------- /WebGL/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/WebGL/TemplateData/favicon.ico -------------------------------------------------------------------------------- /WebGL/TemplateData/fullscreen-button.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21221581673a54b8139d408d4a3f8d2b879e86827d4b6fc53b995ff7a99ee3e9 3 | size 175 4 | -------------------------------------------------------------------------------- /WebGL/TemplateData/progress-bar-empty-dark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbee7131afe8a3365906240d89184dc86234c119467f390bc4bc6802328fdb4d 3 | size 96 4 | -------------------------------------------------------------------------------- /WebGL/TemplateData/progress-bar-empty-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:143696c060ad43d6c30f19ff5f49000927a139a2a1e4c9f45fafaa2b90d7d2be 3 | size 109 4 | -------------------------------------------------------------------------------- /WebGL/TemplateData/progress-bar-full-dark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3306a6244dcb3926fca38a28e3ced589df8ff1beed955eb17c0bbf01c918bc62 3 | size 74 4 | -------------------------------------------------------------------------------- /WebGL/TemplateData/progress-bar-full-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12395ea785480c5cdf12fade6e6cbf49666d5bb1cef7240c113dbcba6bdc5c87 3 | size 84 4 | -------------------------------------------------------------------------------- /WebGL/TemplateData/unity-logo-dark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1b72d26c096487dabc948b54bc203f8dac7ed4e3f5733918798e858acb4b159 3 | size 3042 4 | -------------------------------------------------------------------------------- /WebGL/TemplateData/unity-logo-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:002990aea0d946833cadc1519d5b7e50a4570bd537a0517dd79a59d3eec84da7 3 | size 3077 4 | -------------------------------------------------------------------------------- /WebGL/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b30c3af2a4538c6edf5f2411953760641dfa257f2a4cc5b88d671aa243b1f12f 3 | size 2947 4 | -------------------------------------------------------------------------------- /WebGL_Photon/Build/WebGL_Photon.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/WebGL_Photon/Build/WebGL_Photon.data -------------------------------------------------------------------------------- /WebGL_Photon/Build/WebGL_Photon.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/WebGL_Photon/Build/WebGL_Photon.wasm -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrigocborges/protonunity/e13af3291ffeb7414b25c02368c933680e12c785/WebGL_Photon/TemplateData/favicon.ico -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/fullscreen-button.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21221581673a54b8139d408d4a3f8d2b879e86827d4b6fc53b995ff7a99ee3e9 3 | size 175 4 | -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/progress-bar-empty-dark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbee7131afe8a3365906240d89184dc86234c119467f390bc4bc6802328fdb4d 3 | size 96 4 | -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/progress-bar-empty-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:143696c060ad43d6c30f19ff5f49000927a139a2a1e4c9f45fafaa2b90d7d2be 3 | size 109 4 | -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/progress-bar-full-dark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3306a6244dcb3926fca38a28e3ced589df8ff1beed955eb17c0bbf01c918bc62 3 | size 74 4 | -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/progress-bar-full-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12395ea785480c5cdf12fade6e6cbf49666d5bb1cef7240c113dbcba6bdc5c87 3 | size 84 4 | -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/unity-logo-dark.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1b72d26c096487dabc948b54bc203f8dac7ed4e3f5733918798e858acb4b159 3 | size 3042 4 | -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/unity-logo-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:002990aea0d946833cadc1519d5b7e50a4570bd537a0517dd79a59d3eec84da7 3 | size 3077 4 | -------------------------------------------------------------------------------- /WebGL_Photon/TemplateData/webgl-logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b30c3af2a4538c6edf5f2411953760641dfa257f2a4cc5b88d671aa243b1f12f 3 | size 2947 4 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: Documentação Proton Unity 2 | theme: 3 | name: readthedocs 4 | highlightjs: true 5 | markdown_extensions: 6 | - markdown_include.include: 7 | base_path: . 8 | - admonition --------------------------------------------------------------------------------