├── Assets ├── 3ddata │ └── .keep ├── Scenes │ ├── Maps │ │ └── .keep │ └── UI.meta ├── Terrain │ └── Textures │ │ └── .keep ├── Cardboard │ ├── LICENSE │ ├── DemoScene │ │ ├── GroundPlane.png │ │ ├── GazePointer.mat.meta │ │ ├── GroundPlane.mat.meta │ │ ├── Teleport.cs.meta │ │ ├── GroundPlane.mat │ │ ├── GroundPlane.png.meta │ │ ├── Teleport.cs │ │ └── GazePointer.mat │ ├── Legacy │ │ ├── DemoScene │ │ │ ├── CardboardPointer.png │ │ │ ├── TeleportLegacyUI.cs.meta │ │ │ ├── CardboardPointer.png.meta │ │ │ └── TeleportLegacyUI.cs │ │ ├── Prefabs │ │ │ ├── CardboardGUI.prefab.meta │ │ │ └── CardboardMain.prefab.meta │ │ ├── DemoScene.meta │ │ ├── Prefabs.meta │ │ ├── Resources.meta │ │ ├── Scripts.meta │ │ ├── Resources │ │ │ ├── GUIScreen.shader.meta │ │ │ ├── SkyboxMesh.shader.meta │ │ │ ├── GUIScreen.shader │ │ │ └── SkyboxMesh.shader │ │ └── Scripts │ │ │ ├── CardboardOnGUI.cs.meta │ │ │ ├── SkyboxMesh.cs.meta │ │ │ ├── CardboardOnGUIMouse.cs.meta │ │ │ ├── StereoLensFlare.cs.meta │ │ │ ├── CardboardAndroidDevice.cs.meta │ │ │ ├── CardboardOnGUIWindow.cs.meta │ │ │ └── StereoLensFlare.cs │ ├── LICENSE.meta │ ├── README.meta │ ├── Prefabs │ │ ├── CardboardHead.prefab.meta │ │ ├── CardboardMain.prefab.meta │ │ └── CardboardAdapter.prefab.meta │ ├── Editor.meta │ ├── Legacy.meta │ ├── Prefabs.meta │ ├── Scripts.meta │ ├── DemoScene.meta │ ├── Resources.meta │ ├── Scripts │ │ ├── VRDevices.meta │ │ ├── Pose3D.cs.meta │ │ ├── Cardboard.cs.meta │ │ ├── CardboardEye.cs.meta │ │ ├── CardboardHead.cs.meta │ │ ├── CardboardProfile.cs.meta │ │ ├── CardboardUILayer.cs.meta │ │ ├── GazeInputModule.cs.meta │ │ ├── StereoController.cs.meta │ │ ├── VRDevices │ │ │ ├── VRDevice.cs.meta │ │ │ ├── iOSVRDevice.cs.meta │ │ │ ├── AndroidVRDevice.cs.meta │ │ │ ├── BaseVRDevice.cs.meta │ │ │ ├── AndroidBaseVRDevice.cs.meta │ │ │ ├── UnityEditorDevice.cs.meta │ │ │ └── AndroidVRDevice.cs │ │ ├── RadialUndistortionEffect.cs.meta │ │ └── Pose3D.cs │ ├── Resources │ │ ├── SolidColor.shader.meta │ │ ├── RadialUndistortionEffect.shader.meta │ │ └── SolidColor.shader │ ├── README │ └── Editor │ │ ├── CardboardEditor.cs.meta │ │ └── StereoControllerEditor.cs.meta ├── Materials │ ├── lineMat.jpg │ ├── LineRenderer.mat.meta │ ├── DrawLine.cs.meta │ ├── JPT01.mat.meta │ ├── Login.mat.meta │ ├── charSelectNewCharRenderer.mat.meta │ ├── charSelectNewCharTexture.renderTexture.meta │ ├── charSelectNewCharTexture.renderTexture │ ├── DrawLine.cs │ ├── LineRenderer.mat │ └── lineMat.jpg.meta ├── Plugins │ ├── iOS │ │ ├── libapi.a │ │ ├── libbase.a │ │ ├── libport.a │ │ ├── libtype.a │ │ ├── libvr.a │ │ ├── libdevice.a │ │ ├── libevent.a │ │ ├── libgflags.a │ │ ├── libiongfx.a │ │ ├── libcardboard.a │ │ ├── libcomposite.a │ │ ├── libdatatypes.a │ │ ├── libionbase.a │ │ ├── libionimage.a │ │ ├── libionmath.a │ │ ├── libionport.a │ │ ├── libionremote.a │ │ ├── libionstblib.a │ │ ├── libiontext.a │ │ ├── libionwebp.a │ │ ├── libionzlib.a │ │ ├── liblogging.a │ │ ├── libplatform.a │ │ ├── libprotobuf.a │ │ ├── librecorder.a │ │ ├── libsensors.a │ │ ├── libsoftware.a │ │ ├── libvrunity.a │ │ ├── libNimbusCore.a │ │ ├── libQuantumCore.a │ │ ├── libiongfxutils.a │ │ ├── libionjsoncpp.a │ │ ├── libionmongoose.a │ │ ├── libionopenctm.a │ │ ├── libionportgfx.a │ │ ├── libionprofile.a │ │ ├── libprotos_lib.a │ │ ├── libGoogleKitCore.a │ │ ├── libGoogleKitHUD.a │ │ ├── libNimbusModels.a │ │ ├── libevent_internal.a │ │ ├── libionanalytics.a │ │ ├── libionfreetype2.a │ │ ├── libionlodepnglib.a │ │ ├── liblogging_protos.a │ │ ├── libremote_assets.a │ │ ├── libProtocolBuffers.a │ │ ├── libcardboard_protos.a │ │ ├── libdevice_internal.a │ │ ├── libionimagecompression.a │ │ ├── libNimbusAttributedLabel.a │ │ ├── resources.bundle │ │ │ ├── qrSample.png │ │ │ ├── tickmarks.png │ │ │ ├── continueButton.png │ │ │ ├── cardboardLogotype.png │ │ │ ├── rotateInstructions.png │ │ │ ├── onboardingBackground.jpg │ │ │ ├── SyncConfigViewController~ipad.nib │ │ │ │ ├── objects.nib │ │ │ │ ├── runtime.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib.meta │ │ │ │ ├── runtime.nib.meta │ │ │ │ └── objects-8.0+.nib.meta │ │ │ ├── SyncConfigViewController~iphone.nib │ │ │ │ ├── objects.nib │ │ │ │ ├── runtime.nib │ │ │ │ ├── objects-8.0+.nib │ │ │ │ ├── objects.nib.meta │ │ │ │ ├── runtime.nib.meta │ │ │ │ └── objects-8.0+.nib.meta │ │ │ ├── SyncConfigViewController~ipad.nib.meta │ │ │ ├── SyncConfigViewController~iphone.nib.meta │ │ │ ├── qrSample.png.meta │ │ │ ├── tickmarks.png.meta │ │ │ ├── continueButton.png.meta │ │ │ ├── cardboardLogotype.png.meta │ │ │ ├── rotateInstructions.png.meta │ │ │ └── onboardingBackground.jpg.meta │ │ ├── libapi.a.meta │ │ ├── libvr.a.meta │ │ ├── libbase.a.meta │ │ ├── libdevice.a.meta │ │ ├── libevent.a.meta │ │ ├── libgflags.a.meta │ │ ├── libionbase.a.meta │ │ ├── libiongfx.a.meta │ │ ├── libionimage.a.meta │ │ ├── libionmath.a.meta │ │ ├── libionport.a.meta │ │ ├── libiontext.a.meta │ │ ├── libionwebp.a.meta │ │ ├── libionzlib.a.meta │ │ ├── liblogging.a.meta │ │ ├── libplatform.a.meta │ │ ├── libport.a.meta │ │ ├── libprotobuf.a.meta │ │ ├── librecorder.a.meta │ │ ├── libsensors.a.meta │ │ ├── libsoftware.a.meta │ │ ├── libtype.a.meta │ │ ├── libvrunity.a.meta │ │ ├── CardboardView.h.meta │ │ ├── CardboardView.mm.meta │ │ ├── libGoogleKitCore.a.meta │ │ ├── libGoogleKitHUD.a.meta │ │ ├── libNimbusCore.a.meta │ │ ├── libNimbusModels.a.meta │ │ ├── libQuantumCore.a.meta │ │ ├── libcardboard.a.meta │ │ ├── libcomposite.a.meta │ │ ├── libdatatypes.a.meta │ │ ├── libionanalytics.a.meta │ │ ├── libionfreetype2.a.meta │ │ ├── libiongfxutils.a.meta │ │ ├── libionjsoncpp.a.meta │ │ ├── libionlodepnglib.a.meta │ │ ├── libionmongoose.a.meta │ │ ├── libionopenctm.a.meta │ │ ├── libionportgfx.a.meta │ │ ├── libionprofile.a.meta │ │ ├── libionremote.a.meta │ │ ├── libionstblib.a.meta │ │ ├── libprotos_lib.a.meta │ │ ├── libremote_assets.a.meta │ │ ├── libProtocolBuffers.a.meta │ │ ├── libcardboard_protos.a.meta │ │ ├── libdevice_internal.a.meta │ │ ├── libevent_internal.a.meta │ │ ├── liblogging_protos.a.meta │ │ ├── CardboardAppController.h.meta │ │ ├── CardboardAppController.mm.meta │ │ ├── libNimbusAttributedLabel.a.meta │ │ ├── libionimagecompression.a.meta │ │ ├── resources.bundle.meta │ │ ├── CardboardView.h │ │ ├── CardboardAppController.h │ │ └── CardboardView.mm │ ├── JsonFx.Json.dll │ ├── Android │ │ ├── unityvractivity.jar │ │ ├── libs │ │ │ ├── x86 │ │ │ │ ├── libvrunity.so │ │ │ │ ├── libRenderingPlugin.so │ │ │ │ ├── libvrunity.so.meta │ │ │ │ └── libRenderingPlugin.so.meta │ │ │ ├── armeabi-v7a │ │ │ │ ├── libvrunity.so │ │ │ │ ├── libRenderingPlugin.so │ │ │ │ ├── libvrunity.so.meta │ │ │ │ └── libRenderingPlugin.so.meta │ │ │ ├── x86.meta │ │ │ └── armeabi-v7a.meta │ │ ├── AndroidManifest.xml.meta │ │ ├── libs.meta │ │ ├── unityvractivity.jar.meta │ │ └── AndroidManifest.xml │ ├── Legacy │ │ ├── Android │ │ │ ├── vrtoolkit.jar │ │ │ ├── unitycardboardactivity.jar │ │ │ ├── libprotobuf-java-2.6-nano.jar │ │ │ ├── AndroidManifest.xml.meta │ │ │ ├── vrtoolkit.jar.meta │ │ │ ├── unitycardboardactivity.jar.meta │ │ │ ├── libprotobuf-java-2.6-nano.jar.meta │ │ │ └── AndroidManifest.xml │ │ └── Android.meta │ ├── iOS.meta │ ├── Android.meta │ ├── Legacy.meta │ └── JsonFx.Json.dll.meta ├── Animation.meta ├── Editor.meta ├── Editor │ ├── LineRenderer.mat.meta │ ├── UtilWindow.cs.meta │ ├── RoseTerrainImporter.cs.meta │ ├── PreviewGUI.cs.meta │ ├── ROSEImport.cs.meta │ ├── objExporer.cs.meta │ ├── ROSEImportWindow.cs.meta │ ├── RoseNpcEditor.cs.meta │ ├── RoseMapObjectEditor.cs.meta │ ├── RoseMapObjectDataEditor.cs.meta │ ├── RoseNpcEditor.cs │ ├── RoseMapObjectEditor.cs │ ├── LineRenderer.mat │ ├── UtilWindow.cs │ └── PreviewGUI.cs ├── Renderers.meta ├── Scripts.meta ├── Shaders.meta ├── Renderers │ └── LineRenderer.prefab.meta ├── Scripts │ ├── Rose Formats.meta │ ├── StateMachines.meta │ ├── Utils.cs.meta │ ├── BoneNode.cs.meta │ ├── FileReader.cs.meta │ ├── FileWriter.cs.meta │ ├── RoseGalaxy.cs.meta │ ├── RoseMap.cs.meta │ ├── RosePatch.cs.meta │ ├── RosePlanet.cs.meta │ ├── RosePlayer.cs.meta │ ├── TestLine.cs.meta │ ├── FileHandler.cs.meta │ ├── Rose Formats │ │ ├── HIM.cs.meta │ │ ├── IFO.cs.meta │ │ ├── LIT.cs.meta │ │ ├── LTB.cs.meta │ │ ├── MOV.cs.meta │ │ ├── STB.cs.meta │ │ ├── STL.cs.meta │ │ ├── TIL.cs.meta │ │ ├── ZMD.cs.meta │ │ ├── ZMO.cs.meta │ │ ├── ZMS.cs.meta │ │ ├── ZON.cs.meta │ │ ├── ZSC.cs.meta │ │ ├── CHR.cs.meta │ │ ├── R2U.cs.meta │ │ ├── HIM.cs │ │ └── R2U.cs │ ├── StateMachines │ │ └── State.cs.meta │ ├── UI.meta │ ├── DataModels.meta │ ├── Network.meta │ ├── Player.meta │ ├── Network │ │ ├── Packets.meta │ │ ├── Crypto.cs.meta │ │ ├── UserManager.cs.meta │ │ ├── CharacterManager.cs.meta │ │ ├── IPacketManager.cs │ │ ├── IPacketManager.cs.meta │ │ ├── JSonConverters.cs.meta │ │ ├── NetworkManager.cs.meta │ │ ├── Packets │ │ │ ├── Packet.cs.meta │ │ │ ├── UserPacket.cs.meta │ │ │ ├── CharacterPacket.cs.meta │ │ │ └── Packet.cs │ │ ├── NetworkMonoBehaviour.cs.meta │ │ ├── NetworkMonoBehaviour.cs │ │ └── JSonConverters.cs │ ├── ScriptableObjects.meta │ ├── Cache.cs.meta │ ├── BoneDebug.cs.meta │ ├── JsonFxDemo.cs.meta │ ├── MapManager.cs.meta │ ├── RoseEnums.cs.meta │ ├── RoseNpc.cs.meta │ ├── RoseNpcData.cs.meta │ ├── UI │ │ ├── LoginUI.cs.meta │ │ ├── CharSelectUI.cs.meta │ │ ├── MessageBox.cs.meta │ │ ├── RegisterUI.cs.meta │ │ ├── registerGUI.cs.meta │ │ └── MessageBox.cs │ ├── CameraController.cs.meta │ ├── ResourceManager.cs.meta │ ├── RoseCharPartData.cs.meta │ ├── RoseCharacter.cs.meta │ ├── RoseMapObject.cs.meta │ ├── RoseSkeletonData.cs.meta │ ├── DataModels │ │ └── CharModel.cs.meta │ ├── Player │ │ ├── PlayerObject.cs.meta │ │ ├── PlayerController.cs.meta │ │ └── PlayerObject.cs │ ├── RoseMapObjectData.cs.meta │ ├── ScriptableObjects │ │ ├── BindPoses.cs.meta │ │ └── BindPoses.cs │ ├── RoseNpcData.cs │ ├── TestLine.cs │ ├── RoseCharPartData.cs │ ├── RoseSkeletonData.cs │ ├── RoseMapObjectData.cs │ ├── RoseNpc.cs │ ├── RosePlanet.cs │ ├── RoseGalaxy.cs │ ├── BoneDebug.cs │ ├── BoneNode.cs │ ├── RoseMap.cs │ ├── RoseMapObject.cs │ └── RoseEnums.cs ├── Shaders │ ├── Glow.shader.meta │ ├── TerrainShader.shader.meta │ ├── TreeWind.shader.meta │ ├── ObjectShader.shader.meta │ ├── TerrainShader2.shader.meta │ ├── StandardSpecular2.shader.meta │ ├── UnityStandardCore2.cginc.meta │ ├── UnityStandardInput2.cginc.meta │ ├── Glow.shader │ ├── ObjectShader.shader │ ├── TerrainShader.shader │ └── TerrainShader2.shader ├── GameData.meta ├── Materials.meta ├── NpcParts.meta ├── Npcs.meta ├── Plugins.meta ├── Prefabs.meta ├── Scenes.meta ├── Terrain.meta ├── UnityVS.meta ├── Cardboard.meta ├── MapObjects.meta └── Resources.meta ├── ProjectSettings ├── ProjectVersion.txt ├── NetworkManager.asset ├── TimeManager.asset ├── UnityAnalyticsManager.asset ├── UnityAdsSettings.asset ├── AudioManager.asset ├── EditorSettings.asset ├── EditorBuildSettings.asset ├── TagManager.asset ├── DynamicsManager.asset ├── Physics2DSettings.asset ├── GraphicsSettings.asset └── NavMeshAreas.asset └── README.md /Assets/3ddata/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Scenes/Maps/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Terrain/Textures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.2.1f1 2 | m_StandardAssetsVersion: 0 3 | -------------------------------------------------------------------------------- /Assets/Cardboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Cardboard/LICENSE -------------------------------------------------------------------------------- /Assets/Materials/lineMat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Materials/lineMat.jpg -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libapi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libapi.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libbase.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libbase.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libport.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libport.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libtype.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libtype.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libvr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libvr.a -------------------------------------------------------------------------------- /Assets/Plugins/JsonFx.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/JsonFx.Json.dll -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libdevice.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libevent.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libevent.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libgflags.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libgflags.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libiongfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libiongfx.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libcardboard.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libcardboard.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libcomposite.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libcomposite.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libdatatypes.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libdatatypes.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionbase.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionbase.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionimage.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionimage.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionmath.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionmath.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionport.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionport.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionremote.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionremote.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionstblib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionstblib.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libiontext.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libiontext.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionwebp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionwebp.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionzlib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionzlib.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/liblogging.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/liblogging.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libplatform.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libplatform.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libprotobuf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libprotobuf.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/librecorder.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/librecorder.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libsensors.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libsensors.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libsoftware.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libsoftware.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libvrunity.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libvrunity.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libNimbusCore.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libNimbusCore.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libQuantumCore.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libQuantumCore.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libiongfxutils.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libiongfxutils.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionjsoncpp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionjsoncpp.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionmongoose.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionmongoose.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionopenctm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionopenctm.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionportgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionportgfx.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionprofile.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionprofile.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libprotos_lib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libprotos_lib.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libGoogleKitCore.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libGoogleKitCore.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libGoogleKitHUD.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libGoogleKitHUD.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libNimbusModels.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libNimbusModels.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libevent_internal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libevent_internal.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionanalytics.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionanalytics.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionfreetype2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionfreetype2.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionlodepnglib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionlodepnglib.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/liblogging_protos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/liblogging_protos.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libremote_assets.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libremote_assets.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libProtocolBuffers.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libProtocolBuffers.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libcardboard_protos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libcardboard_protos.a -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libdevice_internal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libdevice_internal.a -------------------------------------------------------------------------------- /Assets/Cardboard/DemoScene/GroundPlane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Cardboard/DemoScene/GroundPlane.png -------------------------------------------------------------------------------- /Assets/Plugins/Android/unityvractivity.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/Android/unityvractivity.jar -------------------------------------------------------------------------------- /Assets/Plugins/Legacy/Android/vrtoolkit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/Legacy/Android/vrtoolkit.jar -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionimagecompression.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libionimagecompression.a -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libvrunity.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/Android/libs/x86/libvrunity.so -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libNimbusAttributedLabel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/libNimbusAttributedLabel.a -------------------------------------------------------------------------------- /Assets/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b10655d7f2694134a85dec4645ab9f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19fc12f51d829c54c99c50a840b8cd0a 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Editor/LineRenderer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0404883d4d0c44dc6a81fb92a675234a 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/qrSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/qrSample.png -------------------------------------------------------------------------------- /Assets/Renderers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce0f9594d04c746ac9e1e6da5f9b5c4d 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 575f3b8d4a70c514eaa1670c039b0891 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14a0561c5a87cc04290d4108e66304fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Materials/LineRenderer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b05242a8824e4d7ca7daff1f5a64289 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/tickmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/tickmarks.png -------------------------------------------------------------------------------- /Assets/Renderers/LineRenderer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f917205c05bf54d05880caeb7c45e9c8 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libvrunity.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/Android/libs/armeabi-v7a/libvrunity.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libRenderingPlugin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/Android/libs/x86/libRenderingPlugin.so -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/DemoScene/CardboardPointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Cardboard/Legacy/DemoScene/CardboardPointer.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/continueButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/continueButton.png -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a38ede7f5ffe484459cc1e215ec3d259 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Scripts/StateMachines.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 361a8b31dfe5249978271e5c66d0f9e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Shaders/Glow.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94b9d99cf669d433dad15b55e9b4aeeb 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Legacy/Android/unitycardboardactivity.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/Legacy/Android/unitycardboardactivity.jar -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/cardboardLogotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/cardboardLogotype.png -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/rotateInstructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/rotateInstructions.png -------------------------------------------------------------------------------- /Assets/Plugins/Legacy/Android/libprotobuf-java-2.6-nano.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/Legacy/Android/libprotobuf-java-2.6-nano.jar -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/onboardingBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/onboardingBackground.jpg -------------------------------------------------------------------------------- /Assets/Shaders/TerrainShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b660c43838b9c84b8532b780023788e 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libRenderingPlugin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/Android/libs/armeabi-v7a/libRenderingPlugin.so -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib/objects.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib/runtime.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib/objects.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib/runtime.nib -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib/objects-8.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib/objects-8.0+.nib -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib/objects-8.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osROSE/UnityRose/HEAD/Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib/objects-8.0+.nib -------------------------------------------------------------------------------- /Assets/Cardboard/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae7648825cc5969419e5321bc85b32a9 3 | timeCreated: 1433854208 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/README.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 385b3aafb00fca545876471ae98e7475 3 | timeCreated: 1433854208 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd68fb3a6de3f46a0a12cae74673a609 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Editor/UtilWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f26eb41a2527047f394aa0712d292d1a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Materials/DrawLine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a35127a47091459e92db02cb575383d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Materials/JPT01.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 594c4dd1d25e7e84f83bab25716e43d9 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Login.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11eefae7a55238040ae1fcfb082feb45 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/BoneNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bf5865f7561e432086083a9f53ce0a2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/FileReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92ef6b2325e3cc14592adf89619a1498 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/FileWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: affa8cbfd914bb348bca83804be3199c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseGalaxy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c97e840958e721048a4fc96ac21f173a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseMap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb72395ae87e38a49859e34e9765c270 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/RosePatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7edcd8c5ba238af49a1201ebc4e9df30 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/RosePlanet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d240df9ebf3ec64081c384ce97fcb8f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/RosePlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20235fac32cac45ee8691c33b85c7fd7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/TestLine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4911d4d78f5eb4a4c87a7f6c5d6d41ae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /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: .0199999996 7 | Maximum Allowed Timestep: .333333343 8 | m_TimeScale: 1 9 | -------------------------------------------------------------------------------- /Assets/Scripts/FileHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19d647b8c6a93ba40bd86d72f689f1fa 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Editor/RoseTerrainImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b1571d757fc9cd49accea0444e06530 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/HIM.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce28bbf6523b3ba429bafb7831d59c50 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/IFO.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecaa51e362a99d5458182b9dc309b40e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/LIT.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8bf8d67169cb7a41ac11bec96c87b89 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/LTB.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dc5f5058d7a4e54e845e96375f2e808 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/MOV.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0858cb4ed9663954f90ad335023e7d94 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/STB.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e3186587a39cec45942a3f0d504296d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/STL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afbc438eb10a34e4ba554e3106dfc504 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/TIL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5b0f922424fbb64a957c692c1b65e05 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/ZMD.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0e1642f1e0a34a83bc3f4a7e72d1e70 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/ZMO.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3eaca8fe0b884208ba7b73008b61056 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/ZMS.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d45b84756eb852b4ea390751221f4ddd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/ZON.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 935d7b28acf900148854694a501b64a8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/ZSC.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 826c4f6a8ba39b34891ddad6c1d54c10 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/StateMachines/State.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1a38b6422f994e83ba0dea4a87d147e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/GameData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7dc14efda732ea45a6bc5251d9fb9eb 3 | folderAsset: yes 4 | timeCreated: 1443811126 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6997552f9f8844a69a9852e47914bc29 3 | folderAsset: yes 4 | timeCreated: 1434084883 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/NpcParts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a51c36bd4a196a4d8e684546967ab73 3 | folderAsset: yes 4 | timeCreated: 1443806981 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Npcs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91395e18706904c4d992312375a619f4 3 | folderAsset: yes 4 | timeCreated: 1443809729 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76b7be7901d8a214e88a34fba56b3089 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f9bb350bfb20cf48a3935d604ecd086 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c869d6096c8d59c44b07f5f9334c6c49 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1019a8b9d80dcf488d8559ff62f4cae 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Terrain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d956aae5f87234b49b5325f3c454fd80 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UnityVS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02fe78e962405814a83b8ba6c9471d32 3 | folderAsset: yes 4 | timeCreated: 1435724328 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2354e56ff2e5097478b37856cc8d1af1 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/DemoScene/GazePointer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba84dc68f3b22ee48aa7d89a8b93e353 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/DemoScene/GroundPlane.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10d2f601c2f49ad4e95b9885e7d3a999 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/CardboardHead.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4a777ffe8c1a5341b40deab57398375 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/CardboardMain.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f76884ff9ad3604b9cf7935862de103 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MapObjects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9af40046ba917304cb0ae482456946bd 3 | folderAsset: yes 4 | timeCreated: 1443802713 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials/charSelectNewCharRenderer.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e9158381ee719d4fbe3c84ab838ef14 3 | timeCreated: 1435514741 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 491a9b47c2d17924f845837c95d12f45 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a952b53abf906354aa41d9d96cd0d4fd 3 | folderAsset: yes 4 | timeCreated: 1434901971 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scenes/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8bb9d98f29d64f42bb81fde7d97751e 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f737f188c7c47b34a84ca04dba55f3a3 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97a7eddccc0669c428f70c8609972513 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b18dae9f201d3747a2a7fb869029259 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Prefabs/CardboardGUI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30c4f37a16262ac45a87447888637dfa 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb876d915b4c0c24fa6551faaf5aa37f 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Prefabs/CardboardAdapter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 908ae4b227e1b46469ab0d864b95103b 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee4d2b06886e7a5439800d799f3fd745 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 973a0aa4fe9bcbf439468ffcaa4d7937 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Legacy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7855b4feb31aa64183b7414b8b806db 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Legacy/Android/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50e9ea4d58f3e314d90ab68c3a18b037 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/DataModels.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c911728db27714b4d86047c4b0b03136 3 | folderAsset: yes 4 | timeCreated: 1434224548 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Network.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8c707dc0cdf4c43ac6950ce035b283 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e33067075651d5141a66a4b075b9496e 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/DemoScene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 458642d25cf1e4c42982bc980d0e8339 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Prefabs/CardboardMain.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92e499a73777ee14bb6dec7100fc69b1 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b719c4b2619a5474d9ca28bf9203a498 3 | folderAsset: yes 4 | timeCreated: 1433854208 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Materials/charSelectNewCharTexture.renderTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f91d45de4a2943439149f0f5dcb8590 3 | timeCreated: 1435514756 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 427ea66c97afcef45b0800700ef7db6a 3 | folderAsset: yes 4 | timeCreated: 1433854210 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Legacy/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6da897bb0434e664284a8b5b94afa76e 3 | folderAsset: yes 4 | timeCreated: 1433854211 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/Packets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5fa9e576d6a18548bfabfef9b428a3c 3 | folderAsset: yes 4 | timeCreated: 1433854213 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/DemoScene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db758d58b9dd1284eb4db8245da7670b 3 | folderAsset: yes 4 | timeCreated: 1433854213 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1902f70d2d8198e4f81255122fb5c941 3 | folderAsset: yes 4 | timeCreated: 1433854209 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b30ada3a8891eb54aadca1f9744732dd 3 | folderAsset: yes 4 | timeCreated: 1433854212 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf7b981b447251f4dacf81a0977364d8 3 | folderAsset: yes 4 | timeCreated: 1433854213 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/VRDevices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f62eae588917ace4997af4838d567ea6 3 | folderAsset: yes 4 | timeCreated: 1433854214 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8745a17886178fd4490c612a392266a9 3 | folderAsset: yes 4 | timeCreated: 1433854224 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/ScriptableObjects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f599a963f87acd409d4851d8c44ca23 3 | folderAsset: yes 4 | timeCreated: 1435031998 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/TreeWind.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c5aa39ee3a90ff4daca464d45448c1b 3 | timeCreated: 1443917564 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 232669234ce580c4ab212a58b5be2797 3 | folderAsset: yes 4 | timeCreated: 1433854216 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/ObjectShader.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b1dd92c9a30af3499b3477c9703827c 3 | timeCreated: 1433854659 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/TerrainShader2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a2f28740a358df4c88ce210e8718139 3 | timeCreated: 1433854660 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/StandardSpecular2.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66d46a07ba09f83409ff77f967539178 3 | timeCreated: 1433854660 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/UnityStandardCore2.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40da32ab5190e84b945e34c8ce6ee8d 3 | timeCreated: 1433854659 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Shaders/UnityStandardInput2.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f13f6ce45d1c66142a3f18535b534160 3 | timeCreated: 1433854659 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/SolidColor.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48b5d0ce7ed9ff14ab444c7c684a8af1 3 | timeCreated: 1433854660 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib/objects.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5c9fc72e06436246a8693500d1bd19a 3 | timeCreated: 1433854282 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib/runtime.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c676e1b459bbe544bb9d10df2397ca31 3 | timeCreated: 1433854282 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/UnityAnalyticsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!303 &1 4 | UnityAnalyticsManager: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_InitializeOnStartup: 1 8 | m_TestMode: 0 9 | m_TestEventUrl: 10 | m_TestConfigUrl: 11 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Resources/GUIScreen.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8649f947357e4f34d9f6d921ff82fae4 3 | timeCreated: 1433854660 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Resources/SkyboxMesh.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5bf24c99c7176e42abbe39fecafd3d4 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib/objects-8.0+.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45b7918e160191d4fb61e448c633a54e 3 | timeCreated: 1433854245 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib/objects.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ff6c682d73123142bbe2b7e39a00ea5 3 | timeCreated: 1433854235 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib/runtime.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dad1c9f6c91a3744a1a255bbfcc19ac 3 | timeCreated: 1433854260 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/README: -------------------------------------------------------------------------------- 1 | Cardboard SDK for Unity 2 | 3 | This SDK provides Android and iOS developers with the easiest way to add 4 | Cardboard VR Toolkit support to their Unity projects. 5 | 6 | Please visit https://developers.google.com/cardboard/unity for the latest 7 | version of this SDK. 8 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib/objects-8.0+.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e65f44acc4400c438999a578d1374b0 3 | timeCreated: 1433854265 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/RadialUndistortionEffect.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7637d98c230c584ebbe84d55cb15bba 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~ipad.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 996fc41489d224c43b13f7fc4ceb5be3 3 | folderAsset: yes 4 | timeCreated: 1433854225 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle/SyncConfigViewController~iphone.nib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa63a2d47a370cd41bda0f76518f5de1 3 | folderAsset: yes 4 | timeCreated: 1433854232 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!292 &1 4 | UnityAdsSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_InitializeOnStartup: 1 8 | m_TestMode: 0 9 | m_EnabledPlatforms: 4294967295 10 | m_IosGameId: 11 | m_AndroidGameId: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Cache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fec5821b6b3da24d85f6e9f39e72e6a 3 | timeCreated: 1434751518 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/PreviewGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b0514964dd171f4585f977697096478 3 | timeCreated: 1443795259 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/ROSEImport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a498856739534a4bb5c016dee06ade2 3 | timeCreated: 1443718619 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/objExporer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f23fd12c838985f4b87a7da541fa423b 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/BoneDebug.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47bc878e45aff9c4189f8f21b6801749 3 | timeCreated: 1443808354 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/JsonFxDemo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9a3a2252c6b6af46a6e11f812214190 3 | timeCreated: 1434221302 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/MapManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f8c127f1a9403645a2c0da4645bec87 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseEnums.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26d480a75aa7df747a86e1c35bf269ea 3 | timeCreated: 1434294839 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseNpc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46228b1e6720dba45b235b9614c5fa17 3 | timeCreated: 1443806200 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseNpcData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c7cc67b50b578d4fb2de80b806c110f 3 | timeCreated: 1443804127 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/LoginUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58320d77a9e5a8345a369773fa96d28f 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/Pose3D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 864e1194ecc11954992f8d6674b6a849 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/ROSEImportWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0eb0d6ec593dcb4197c71bada8a7c64 3 | timeCreated: 1443714283 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/RoseNpcEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e78001207f86caa459362ce7742af79a 3 | timeCreated: 1443807175 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/CameraController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e25c74a0bc7025849a7ac5b74ebe1c13 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/Crypto.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 427d80e1e2122b34f92ea71d585d858c 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/ResourceManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f7ded928d116da418a38c03c940ce98 3 | timeCreated: 1434239112 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/CHR.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7ce9ced4a351684babca7281e2b9f40 3 | timeCreated: 1443802699 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Rose Formats/R2U.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e78991c4d0c99746954f2b9d41a5ff3 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseCharPartData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22abcb56fd5cf424b9ec2f0c7f4534f2 3 | timeCreated: 1443801224 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseCharacter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74fde1b433e8e5448a4e895b63a423c2 3 | timeCreated: 1443806126 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseMapObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4399e2713b391a4ca64adc569e09e70 3 | timeCreated: 1443719873 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseSkeletonData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 598d15ecb3549f74b98c00c6fce9f676 3 | timeCreated: 1443808232 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/CharSelectUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04e9c8bae1aacfc4892aa010ea75c7a1 3 | timeCreated: 1434221301 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/MessageBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e55bf71a35beb54b9c11a0fe6c65e94 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/RegisterUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 446d7016ecb10264482288fbe76c4dc6 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/registerGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1a4bd321eab16b48aecf267612157fb 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/DemoScene/Teleport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba68c389f99b1b54096c1eaa63a18582 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/Cardboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0e45c866c25a0a4b8433fe6a4b436eb 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/RoseMapObjectEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 456c1646074c0204faf85db08b2bf02e 3 | timeCreated: 1443807157 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/DataModels/CharModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff655399ff34ac64fa9302c46f9eb6c0 3 | timeCreated: 1434224551 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/UserManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44ce3f5775938d84b9919114743c1dc7 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Player/PlayerObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4adf276d6bca9d64baf406d8109deb4d 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseMapObjectData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2ce42bbc3b37cc4d9325234d2906153 3 | timeCreated: 1443719885 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Editor/CardboardEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa19cf3c96fcce94cbd0cf8978b63e7a 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/CardboardEye.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a22694890b350a94299c810770f7538b 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/CardboardHead.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b256b3ba00dacd04eb8f2b1a49cf1232 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/CardboardProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf64492f134b4b9488f062ed171dfcaf 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/CardboardUILayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edfd564f6a934fb46b1d4d4cc0836035 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/GazeInputModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d774f7d1ac2691845b6464453812123d 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/StereoController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c33e678a64290842bc4b2be9cb2eb09 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Editor/RoseMapObjectDataEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae290211c3163b7478f860e71f7b6cb1 3 | timeCreated: 1443719958 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/CharacterManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2179d28b48b2f794387ee3930769b798 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/IPacketManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Network.Packets; 3 | 4 | namespace Network 5 | { 6 | public interface IPacketManager 7 | { 8 | void registerCallback(int operation, Action callback); 9 | void handlePacket(int operation, string packet); 10 | object Convert(int operation, string packet); 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/IPacketManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5183b92240aab3440b8c7774a33b06f2 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/JSonConverters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63c908f2b03caf940ad9901e5bfd05e5 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/NetworkManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c49e4e7c343f6e4693581143f3e8a45 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/Packets/Packet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa56334c4094e1e498aa4d4854d18f96 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/Packets/UserPacket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7ae7b1e81b2c874ea6bb12e4e2c3a95 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Player/PlayerController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5af8769d419bb7a4896ba79cbe939124 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Editor/StereoControllerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bed70ac9c5f28c64b9f5c7e951ee1e4d 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Scripts/CardboardOnGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b8801d8df76e5643b7ac7dc0b094779 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Scripts/SkyboxMesh.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12f70a4263173cc42b4d0a33314de1ea 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/VRDevices/VRDevice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b37dba2cd01aa2547a5aab75b7ba24b0 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/VRDevices/iOSVRDevice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 352b75d9b392f5c4499713e849e1c2f0 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/NetworkMonoBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9ebe6f0349c95241a44618946517f9b 3 | timeCreated: 1435667266 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/Packets/CharacterPacket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a42035f61b8a041498df1998ae052c20 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/ScriptableObjects/BindPoses.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4cce669541d6d64598be2b8ea191eed 3 | timeCreated: 1435032020 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/DemoScene/TeleportLegacyUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f2ad1e79cdcbc1479560bd7a0b1293b 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Scripts/CardboardOnGUIMouse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 849322490bbabe447b9f7fd13a340f95 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Scripts/StereoLensFlare.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da4199bc021210449a5bae9cb88d74e0 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/RadialUndistortionEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b5f7ef1aa5141f4ebcc0eaab9261122 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/VRDevices/AndroidVRDevice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f797a1f898ce274d8c16bcfc783f663 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/VRDevices/BaseVRDevice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 836e22eeba476b849a1d73aa175b4277 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseNpcData.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections.Generic; 3 | 4 | [System.Serializable] 5 | public class RoseNpcData : ScriptableObject 6 | { 7 | public RoseSkeletonData skeleton; 8 | public List parts = new List(); 9 | public List animations = new List(); 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Scripts/CardboardAndroidDevice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87c8c70abf7c4f149add3c533f41675c 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Legacy/Scripts/CardboardOnGUIWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b15fe8aecb4de141b6e4c63a716cbe7 3 | timeCreated: 1433854342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/VRDevices/AndroidBaseVRDevice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd82abea2cda88c448d4daf05fa4ccbc 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Cardboard/Scripts/VRDevices/UnityEditorDevice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cbaaa7ee3f95cb44a2879818bebca2b 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_DisableAudio: 0 15 | -------------------------------------------------------------------------------- /Assets/Scripts/TestLine.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class TestLine : MonoBehaviour { 5 | 6 | // Use this for initialization 7 | void Start () { 8 | 9 | } 10 | 11 | // Update is called once per frame 12 | void Update () { 13 | Debug.DrawLine(new Vector3(0f,0f,0f), new Vector3(100f,100f,100f), Color.green, 2f, false); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/Scripts/ScriptableObjects/BindPoses.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | namespace UnityRose { 5 | 6 | [System.Serializable] 7 | public class BindPoses : ScriptableObject { 8 | [SerializeField] 9 | public Matrix4x4[] bindPoses; 10 | [SerializeField] 11 | public string[] boneNames; 12 | [SerializeField] 13 | public Transform[] boneTransforms; 14 | } 15 | } -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libapi.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11f7ebb28c744164aaa7019eb23e3d3b 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libvr.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93e4e405570b573499cf0782a1959972 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libbase.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e437555e13aff5408a3c5d723103671 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libdevice.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52878af882807ba4ca10d40c05a5b6b6 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libevent.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b248b3acf1518b4db0dcafd150c48e2 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libgflags.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c268fd1318e16c74295d531498addaef 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionbase.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 318149a06154e9741b333070bd148165 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libiongfx.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c27c71835c3bd44fbbb46d89c6fa978 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionimage.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a56ceaddedc6f5a4889b9aedce727570 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionmath.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ede47ce902b058498b055bda3e035e7 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionport.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 617ecc29e6e95a64481ca3b2da9bfa06 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libiontext.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15ee485643c235a4483ede0dcf2aa3da 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionwebp.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42bef34837379124f86891afe94634f8 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionzlib.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d2873f8daaa66441838f5edff77b8b3 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/liblogging.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d2018ce515de8f438e12c21ee963846 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libplatform.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52c689b0a367828479b796c080c0ef16 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libport.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92d8ccbb247692d4ca61bd913ed4b209 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libprotobuf.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af11ae70293cec14cbfd8a7978ef4134 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/librecorder.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d80b421b56ea28b45a719899dd28ee6a 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libsensors.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a0cc9b642b7b5046810fa9416c72fec 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libsoftware.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c938673caa6771144980a4a5e468d18b 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libtype.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e69cd8c048783ae4fb8e89f20836aa46 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libvrunity.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63974602fe8edec4c9d28dfdd3ca2ab3 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardView.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04c3096631f76a94c82582de4d91793e 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardView.mm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a60ea2afc43083f469252ddf321335fa 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libGoogleKitCore.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52cbb941a16333f48b469f2e131ae84f 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libGoogleKitHUD.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfd915cc1f43c794b9f096b102c86746 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libNimbusCore.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acde89383f65a624fb681151638aef0e 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libNimbusModels.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a37354ab30a44b943a4d9f6f90f8334d 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libQuantumCore.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b0e052fc9edb844ba803ebc647b62d5 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libcardboard.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e445806dbb97b7345ab78e9b4cc5bbc4 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libcomposite.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f6d2c09dfa6162439972fb21a12111c 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libdatatypes.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21777a8e98f6d9c429897c803e28e239 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionanalytics.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e50313fba24cb740be07fbe6e17a05a 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionfreetype2.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e62d70a1affdac45971897dba55bdbf 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libiongfxutils.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93bf2563d892781428a83894f1c60e18 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionjsoncpp.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f70d41c558997034e9549ed9b2af8de6 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionlodepnglib.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f07bca6b6b0b944fb55bc0bd1e3e554 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionmongoose.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3751623e2a8c704eb6cd2d2e45b49b5 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionopenctm.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb24799a06239f4469cd17f12767bc6d 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionportgfx.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b83b6505660cd6e49b896504484fee67 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionprofile.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3435a174e9d52447b48e6b0f40f6605 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionremote.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60c275546449a574b9a739c281e6bda5 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionstblib.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98213583fe6b9b249b82c9146a723c71 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libprotos_lib.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a365f78911411c4fafce094f12c98fd 3 | timeCreated: 1433854661 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libremote_assets.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fb4ec3ca672d444487dcd4da5e959dd 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/unityvractivity.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c82df713cdee6d14d9288cc9253f6b24 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libProtocolBuffers.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 778ac2a984c3d0c4c9569e343013393f 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libcardboard_protos.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29d6ad00830b9f4489b01af383793c1d 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libdevice_internal.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ef1d89381fefe24faee697301b667b2 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libevent_internal.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd11e6409450b7a4d8855f4c8e8c2ce5 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/liblogging_protos.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3edc0f35d5e3580448727553827bd6ea 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Editor/RoseNpcEditor.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEditor; 3 | using System.Collections; 4 | 5 | [CustomEditor(typeof(RoseNpc))] 6 | public class RoseNpcEditor : Editor 7 | { 8 | 9 | public override void OnInspectorGUI() 10 | { 11 | DrawDefaultInspector(); 12 | if (GUI.changed) 13 | { 14 | (target as RoseNpc).UpdateModels(); 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libvrunity.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73a8f8848cc64824eb5becb99dfccf9e 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/Legacy/Android/vrtoolkit.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b90421bfb848f34c88d7722784ea60e 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardAppController.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27b7a46626498c34ca03aeae355cee30 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/CardboardAppController.mm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5464c21869f28aa439402166a7632582 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libNimbusAttributedLabel.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d02977b21f075f4dab72b68636ebf48 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/libionimagecompression.a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2848e00c704bcd34c8dbb5ee2a059c54 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libvrunity.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be314a0f1114fb448a1d032d8bf4548d 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/libRenderingPlugin.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81973dbe6f4de164f9aef358c9b6af22 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/Legacy/Android/unitycardboardactivity.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 840aea4eea802dc4888fb4206808262c 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/iOS/resources.bundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b860d57d5f8f84f4097879bba6a1a184 3 | folderAsset: yes 4 | timeCreated: 1433854213 5 | licenseType: Free 6 | PluginImporter: 7 | serializedVersion: 1 8 | iconMap: {} 9 | executionOrder: {} 10 | isPreloaded: 0 11 | platformData: 12 | Any: 13 | enabled: 1 14 | settings: {} 15 | userData: 16 | assetBundleName: 17 | assetBundleVariant: 18 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/libRenderingPlugin.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d33d223195dd01447a70f86d6950a564 3 | timeCreated: 1433854663 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Plugins/Legacy/Android/libprotobuf-java-2.6-nano.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a942f77c611e3c479238bbbd5fec5ca 3 | timeCreated: 1433854662 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Editor/RoseMapObjectEditor.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEditor; 3 | using System.Collections; 4 | 5 | [CustomEditor(typeof(RoseMapObject))] 6 | public class RoseMapObjectEditor : Editor 7 | { 8 | 9 | public override void OnInspectorGUI() 10 | { 11 | DrawDefaultInspector(); 12 | if (GUI.changed) 13 | { 14 | (target as RoseMapObject).UpdateModels(); 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_WebSecurityEmulationEnabled: 0 10 | m_WebSecurityEmulationHostUrl: http://www.mydomain.com/mygame.unity3d 11 | m_DefaultBehaviorMode: 0 12 | m_SpritePackerMode: 2 13 | m_SpritePackerPaddingPower: 1 14 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseCharPartData.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections.Generic; 3 | 4 | [System.Serializable] 5 | public class RoseCharPartData : ScriptableObject 6 | { 7 | [System.Serializable] 8 | public class Model 9 | { 10 | public Mesh mesh; 11 | public Material material; 12 | public short boneIndex; // -1 skinned, 0 - 1000 character bones, 1000+ dummy bones 13 | } 14 | 15 | public List models = new List(); 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/JsonFx.Json.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 598455d152062a449a8d64fdfbbf8cd3 3 | timeCreated: 1433854344 4 | licenseType: Free 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | Editor: 15 | enabled: 0 16 | settings: 17 | DefaultValueInitialized: true 18 | userData: 19 | assetBundleName: 20 | assetBundleVariant: 21 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseSkeletonData.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections.Generic; 3 | 4 | [System.Serializable] 5 | public class RoseSkeletonData : ScriptableObject 6 | { 7 | [System.Serializable] 8 | public class Bone 9 | { 10 | public string name; 11 | public Vector3 translation; 12 | public Quaternion rotation; 13 | public int parent; 14 | } 15 | 16 | public List bones = new List(); 17 | public List dummies = new List(); 18 | 19 | } 20 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Scenes/Maps/charSelect.unity 10 | - enabled: 1 11 | path: Assets/Scenes/Maps/junon/zantCity.unity 12 | - enabled: 1 13 | path: Assets/Scenes/UI/registrationScene.unity 14 | - enabled: 1 15 | path: Assets/Scenes/UI/loginScene.unity 16 | - enabled: 1 17 | path: Assets/Scenes/Maps/junon/junonPolis.unity 18 | -------------------------------------------------------------------------------- /Assets/Scripts/Network/NetworkMonoBehaviour.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections.Generic; 3 | using System; 4 | 5 | public class NetworkMonoBehaviour : MonoBehaviour { 6 | 7 | protected Queue funcQueue; 8 | 9 | // Use this for initialization 10 | protected void Init () { 11 | funcQueue = new Queue(); 12 | } 13 | 14 | // Update is called once per frame 15 | protected void ProcessPackets () { 16 | if (funcQueue != null) 17 | while (funcQueue.Count > 0) 18 | funcQueue.Dequeue().Invoke(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseMapObjectData.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections.Generic; 3 | 4 | [System.Serializable] 5 | public class RoseMapObjectData : ScriptableObject 6 | { 7 | [System.Serializable] 8 | public class SubObject 9 | { 10 | public Mesh mesh; 11 | public Material material; 12 | public AnimationClip animation; 13 | public Vector3 position; 14 | public Quaternion rotation; 15 | public Vector3 scale; 16 | public int parent; 17 | public int colMode; 18 | } 19 | 20 | public List subObjects = new List(); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: 7 | - MainPlayer 8 | layers: 9 | - Default 10 | - TransparentFX 11 | - Ignore Raycast 12 | - 13 | - Water 14 | - UI 15 | - 16 | - 17 | - Floor 18 | - MapObjects 19 | - Tree 20 | - Players 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | - 41 | m_SortingLayers: 42 | - name: Default 43 | uniqueID: 0 44 | locked: 0 45 | -------------------------------------------------------------------------------- /Assets/Materials/charSelectNewCharTexture.renderTexture: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!84 &8400000 4 | RenderTexture: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_Name: charSelectNewCharTexture 9 | m_ImageContentsHash: 10 | serializedVersion: 2 11 | Hash: 00000000000000000000000000000000 12 | m_Width: 1024 13 | m_Height: 1024 14 | m_AntiAliasing: 1 15 | m_DepthFormat: 2 16 | m_ColorFormat: 0 17 | m_MipMap: 0 18 | m_GenerateMips: 1 19 | m_SRGB: 0 20 | m_TextureSettings: 21 | m_FilterMode: 1 22 | m_Aniso: 0 23 | m_MipBias: 0 24 | m_WrapMode: 1 25 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | m_Gravity: {x: 0, y: -9.81000042, z: 0} 7 | m_DefaultMaterial: {fileID: 0} 8 | m_BounceThreshold: 2 9 | m_SleepThreshold: .00499999989 10 | m_DefaultContactOffset: .00999999978 11 | m_SolverIterationCount: 6 12 | m_RaycastsHitTriggers: 1 13 | m_EnableAdaptiveForce: 0 14 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 15 | -------------------------------------------------------------------------------- /Assets/Materials/DrawLine.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | [ExecuteInEditMode] 5 | public class DrawLine : MonoBehaviour { 6 | 7 | private LineRenderer lineRenderer; 8 | 9 | public Transform p0; 10 | public Transform p1; 11 | // Use this for initialization 12 | void Start () { 13 | lineRenderer = GetComponent(); 14 | lineRenderer.SetPosition(0, p0.position); 15 | lineRenderer.SetPosition(1, p1.position); 16 | lineRenderer.SetWidth(.02f, 0.02f); 17 | } 18 | 19 | // Update is called once per frame 20 | void Update () { 21 | lineRenderer.SetPosition(0, p0.position); 22 | lineRenderer.SetPosition (1, p1.position); 23 | } 24 | 25 | void OnGUI() 26 | { 27 | lineRenderer.SetPosition(0, p0.position); 28 | lineRenderer.SetPosition (1, p1.position); 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /Assets/Scripts/RoseNpc.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class RoseNpc : RoseCharacter 5 | { 6 | public RoseNpcData data; 7 | 8 | public void UpdateModels() 9 | { 10 | parts.Clear(); 11 | for (var i = 0; i < data.parts.Count; ++i) 12 | { 13 | parts.Add(data.parts[i]); 14 | } 15 | 16 | skeleton = data.skeleton; 17 | 18 | UpdateData(); 19 | 20 | var animator = gameObject.GetComponent (); 21 | if (animator == null) { 22 | animator = gameObject.AddComponent (); 23 | } 24 | for (var i = 0; i < data.animations.Count; ++i) { 25 | var anim = data.animations[i]; 26 | if (anim != null) { 27 | animator.AddClip(anim, anim.name); 28 | if (animator.clip == null) { 29 | animator.clip = anim; 30 | } 31 | } 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Assets/Cardboard/DemoScene/GroundPlane.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 3 6 | m_ObjectHideFlags: 0 7 | m_PrefabParentObject: {fileID: 0} 8 | m_PrefabInternal: {fileID: 0} 9 | m_Name: GroundPlane 10 | m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0} 11 | m_ShaderKeywords: [] 12 | m_CustomRenderQueue: -1 13 | m_SavedProperties: 14 | serializedVersion: 2 15 | m_TexEnvs: 16 | data: 17 | first: 18 | name: _MainTex 19 | second: 20 | m_Texture: {fileID: 2800000, guid: ff3cadc67cdc94ee899baae423db68a6, type: 3} 21 | m_Scale: {x: 50, y: 50} 22 | m_Offset: {x: 0, y: 0} 23 | m_Floats: {} 24 | m_Colors: 25 | data: 26 | first: 27 | name: _Color 28 | second: {r: 1, g: 1, b: 1, a: 1} 29 | -------------------------------------------------------------------------------- /Assets/Cardboard/Resources/SolidColor.shader: -------------------------------------------------------------------------------- 1 | // Copyright 2015 Google Inc. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | Shader "Cardboard/SolidColor" { 16 | Properties { 17 | _Color ("Main Color", COLOR) = (1,1,1,1) 18 | } 19 | SubShader { 20 | Pass { Color [_Color] } 21 | } 22 | } -------------------------------------------------------------------------------- /Assets/Scripts/UI/MessageBox.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | using System.Collections; 4 | using UnityEngine.UI; 5 | 6 | namespace UI 7 | { 8 | public class MessageBox 9 | { 10 | public static void Show(GameObject messagebox, string message, string title, Action callback) { 11 | if(!messagebox){ 12 | return; 13 | } 14 | 15 | Button btn = messagebox.transform.Find("TextBox/DissmisButton").gameObject.GetComponent