├── ProjectSettings ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── NetworkManager.asset ├── TimeManager.asset ├── EditorBuildSettings.asset ├── AudioManager.asset ├── EditorSettings.asset ├── DynamicsManager.asset ├── UnityConnectSettings.asset └── TagManager.asset ├── Assets ├── uMMORPG │ ├── Documentation.pdf │ ├── Textures │ │ ├── Icons │ │ │ ├── gold.png │ │ │ ├── trash.png │ │ │ ├── uMMORPG.png │ │ │ ├── item_bow.png │ │ │ ├── button_quit.png │ │ │ ├── item_cleaver.png │ │ │ ├── item_shield.png │ │ │ ├── item_sword.png │ │ │ ├── skill_heal.png │ │ │ ├── button_quests.png │ │ │ ├── button_skills.png │ │ │ ├── button_character.png │ │ │ ├── button_crafting.png │ │ │ ├── button_equipment.png │ │ │ ├── item_potion_mana.png │ │ │ ├── item_potion_vigor.png │ │ │ ├── skill_healthaura.png │ │ │ ├── skill_preciseshot.png │ │ │ ├── skill_stronghit.png │ │ │ ├── status_murderer.png │ │ │ ├── status_offender.png │ │ │ ├── button_skills_gray.png │ │ │ ├── item_potion_health.png │ │ │ ├── skill_attack_archer.png │ │ │ ├── button_inventory_big.png │ │ │ └── skill_attack_warrior.png │ │ ├── indicator.psd │ │ ├── Materials │ │ │ └── indicator.mat.meta │ │ ├── Icons.meta │ │ ├── MinimapTexture.renderTexture.meta │ │ ├── Materials.meta │ │ └── MinimapTexture.renderTexture │ ├── Plugins │ │ ├── sqlite_x64 │ │ │ └── sqlite3.dll │ │ ├── sqlite_x86 │ │ │ └── sqlite3.dll │ │ ├── sqlite_common │ │ │ ├── System.Data.dll │ │ │ ├── Mono.Data.Sqlite.dll │ │ │ ├── System.Data.dll.meta │ │ │ └── Mono.Data.Sqlite.dll.meta │ │ ├── sqlite_android_x86 │ │ │ └── libsqlite3.so │ │ ├── sqlite_android_arm-v7a │ │ │ └── libsqlite3.so │ │ ├── sqlite_x64.meta │ │ ├── sqlite_x86.meta │ │ ├── sqlite_common.meta │ │ ├── sqlite_android_x86.meta │ │ └── sqlite_android_arm-v7a.meta │ ├── Scenes │ │ ├── World │ │ │ ├── Terrain_Trees.asset │ │ │ ├── NavMesh.asset.meta │ │ │ └── Terrain_Trees.asset.meta │ │ ├── World.unity.meta │ │ └── World.meta │ ├── Models │ │ ├── Items │ │ │ ├── Sword │ │ │ │ ├── Materials │ │ │ │ │ ├── sword.png │ │ │ │ │ ├── Sword.mat.meta │ │ │ │ │ └── unnamed.mat.meta │ │ │ │ └── Materials.meta │ │ │ ├── Bow │ │ │ │ ├── Materials │ │ │ │ │ ├── archerbow.png │ │ │ │ │ └── white.archerbow.mat.meta │ │ │ │ └── Materials.meta │ │ │ ├── Shield │ │ │ │ ├── Materials │ │ │ │ │ ├── shield.png │ │ │ │ │ ├── Shield.mat.meta │ │ │ │ │ └── unnamed.mat.meta │ │ │ │ └── Materials.meta │ │ │ ├── Cleaver │ │ │ │ ├── Materials │ │ │ │ │ ├── cleaver.png │ │ │ │ │ └── cleaver.mat.meta │ │ │ │ └── Materials.meta │ │ │ ├── Bow.meta │ │ │ ├── Shield.meta │ │ │ ├── Sword.meta │ │ │ └── Cleaver.meta │ │ ├── Entities │ │ │ ├── Archer │ │ │ │ ├── Materials │ │ │ │ │ ├── eye.png │ │ │ │ │ ├── base.hairJ.png │ │ │ │ │ ├── base.headA.png │ │ │ │ │ ├── starterHunterBow.feetA.png │ │ │ │ │ ├── starterHunterBow.handsA.png │ │ │ │ │ ├── starterHunterBow.outfitC.png │ │ │ │ │ ├── eye.mat.meta │ │ │ │ │ ├── eyebrow.mat.meta │ │ │ │ │ ├── feetA.mat.meta │ │ │ │ │ ├── hairJ.mat.meta │ │ │ │ │ ├── handsA.mat.meta │ │ │ │ │ ├── headA.mat.meta │ │ │ │ │ └── outfitC.mat.meta │ │ │ │ ├── Controller.controller.meta │ │ │ │ └── Materials.meta │ │ │ ├── Warrior │ │ │ │ ├── Materials │ │ │ │ │ ├── eye.png │ │ │ │ │ ├── feet.png │ │ │ │ │ ├── hair.png │ │ │ │ │ ├── hands.png │ │ │ │ │ ├── head.png │ │ │ │ │ ├── eyebrow.png │ │ │ │ │ ├── outfit.png │ │ │ │ │ ├── eye.mat.meta │ │ │ │ │ ├── eyebrow.mat.meta │ │ │ │ │ ├── feet.mat.meta │ │ │ │ │ ├── feetA.mat.meta │ │ │ │ │ ├── hair.mat.meta │ │ │ │ │ ├── hairF.mat.meta │ │ │ │ │ ├── hands.mat.meta │ │ │ │ │ ├── handsA.mat.meta │ │ │ │ │ ├── head.mat.meta │ │ │ │ │ ├── headG.mat.meta │ │ │ │ │ ├── outfit.mat.meta │ │ │ │ │ ├── outfitC.mat.meta │ │ │ │ │ └── unnamed.mat.meta │ │ │ │ ├── Controller.controller.meta │ │ │ │ └── Materials.meta │ │ │ ├── Alchemist │ │ │ │ ├── Materials │ │ │ │ │ ├── eye.png │ │ │ │ │ ├── beard.png │ │ │ │ │ ├── feet.png │ │ │ │ │ ├── hands.png │ │ │ │ │ ├── head.png │ │ │ │ │ ├── outfit.png │ │ │ │ │ ├── beard.mat.meta │ │ │ │ │ ├── eye.mat.meta │ │ │ │ │ ├── feet.mat.meta │ │ │ │ │ ├── hands.mat.meta │ │ │ │ │ ├── head.mat.meta │ │ │ │ │ ├── eyebrow.mat.meta │ │ │ │ │ └── outfit.mat.meta │ │ │ │ ├── Controller.controller.meta │ │ │ │ └── Materials.meta │ │ │ ├── Skeleton │ │ │ │ ├── Materials │ │ │ │ │ ├── skeleton.png │ │ │ │ │ └── skeleton.mat.meta │ │ │ │ ├── Controller.controller.meta │ │ │ │ └── Materials.meta │ │ │ ├── Archer.meta │ │ │ ├── Skeleton.meta │ │ │ ├── Warrior.meta │ │ │ └── Alchemist.meta │ │ ├── Environment │ │ │ ├── Temple │ │ │ │ ├── Temple_Normal.png │ │ │ │ ├── Temple_Diffuse.png │ │ │ │ ├── Materials │ │ │ │ │ └── fullMat.mat.meta │ │ │ │ └── Materials.meta │ │ │ ├── Tent │ │ │ │ ├── Materials │ │ │ │ │ ├── tent.png │ │ │ │ │ └── tent.mat.meta │ │ │ │ └── Materials.meta │ │ │ ├── Fence │ │ │ │ ├── Materials │ │ │ │ │ ├── fence.png │ │ │ │ │ └── fence.mat.meta │ │ │ │ └── Materials.meta │ │ │ ├── Campfire │ │ │ │ ├── Materials │ │ │ │ │ ├── campfire.png │ │ │ │ │ └── campfire.mat.meta │ │ │ │ └── Materials.meta │ │ │ ├── Fence.meta │ │ │ ├── Tent.meta │ │ │ ├── Campfire.meta │ │ │ └── Temple.meta │ │ ├── Projectiles │ │ │ ├── Arrow │ │ │ │ ├── Materials │ │ │ │ │ ├── arrow.png │ │ │ │ │ └── white.archerbow.mat.meta │ │ │ │ └── Materials.meta │ │ │ └── Arrow.meta │ │ ├── Items.meta │ │ ├── Entities.meta │ │ ├── Environment.meta │ │ └── Projectiles.meta │ ├── Fonts │ │ ├── ubuntu-font-family-0.83 │ │ │ ├── Ubuntu-B.ttf │ │ │ ├── Ubuntu-BI.ttf │ │ │ ├── Ubuntu-C.ttf │ │ │ ├── Ubuntu-L.ttf │ │ │ ├── Ubuntu-LI.ttf │ │ │ ├── Ubuntu-M.ttf │ │ │ ├── Ubuntu-MI.ttf │ │ │ ├── Ubuntu-R.ttf │ │ │ ├── Ubuntu-RI.ttf │ │ │ ├── UbuntuMono-B.ttf │ │ │ ├── UbuntuMono-R.ttf │ │ │ ├── UbuntuMono-BI.ttf │ │ │ ├── UbuntuMono-RI.ttf │ │ │ ├── copyright.txt │ │ │ ├── TRADEMARKS.txt │ │ │ ├── FONTLOG.txt.meta │ │ │ ├── LICENCE.txt.meta │ │ │ ├── README.txt.meta │ │ │ ├── CONTRIBUTING.txt.meta │ │ │ ├── LICENCE-FAQ.txt.meta │ │ │ ├── TRADEMARKS.txt.meta │ │ │ ├── copyright.txt.meta │ │ │ ├── Ubuntu-B.ttf.meta │ │ │ ├── Ubuntu-C.ttf.meta │ │ │ ├── UbuntuMono-RI.ttf.meta │ │ │ ├── Ubuntu-MI.ttf.meta │ │ │ ├── UbuntuMono-BI.ttf.meta │ │ │ ├── Ubuntu-BI.ttf.meta │ │ │ ├── UbuntuMono-B.ttf.meta │ │ │ ├── README.txt │ │ │ ├── Ubuntu-LI.ttf.meta │ │ │ ├── UbuntuMono-R.ttf.meta │ │ │ ├── Ubuntu-RI.ttf.meta │ │ │ ├── Ubuntu-L.ttf.meta │ │ │ ├── CONTRIBUTING.txt │ │ │ └── Ubuntu-M.ttf.meta │ │ └── ubuntu-font-family-0.83.meta │ ├── Documentation.pdf.meta │ ├── Prefabs │ │ ├── Indicator.prefab.meta │ │ ├── UI │ │ │ ├── Dragee.prefab.meta │ │ │ ├── ToolTip.prefab.meta │ │ │ ├── SlotBuff.prefab.meta │ │ │ ├── SlotChat.prefab.meta │ │ │ ├── SlotLoot.prefab.meta │ │ │ ├── SlotNpcQuest.prefab.meta │ │ │ ├── SlotQuest.prefab.meta │ │ │ ├── SlotSkill.prefab.meta │ │ │ ├── SlotSkillbar.prefab.meta │ │ │ ├── SlotEquipment.prefab.meta │ │ │ ├── SlotInventory.prefab.meta │ │ │ ├── SlotItemMallItem.prefab.meta │ │ │ ├── SlotNpcTrading.prefab.meta │ │ │ ├── SlotPlayerTrading.prefab.meta │ │ │ ├── SlotCharacterSelection.prefab.meta │ │ │ ├── SlotCraftingIngredient.prefab.meta │ │ │ ├── SlotCraftingResult.prefab.meta │ │ │ └── SlotItemMallCategory.prefab.meta │ │ ├── DamagePopup.prefab.meta │ │ ├── Environment │ │ │ ├── Temple.prefab.meta │ │ │ ├── campfire.prefab.meta │ │ │ ├── tent.prefab.meta │ │ │ ├── fenceClosed.prefab.meta │ │ │ └── fenceOpen.prefab.meta │ │ ├── ItemModels │ │ │ ├── White Bow.prefab.meta │ │ │ ├── Dark Sword.prefab.meta │ │ │ ├── Desert Cleaver.prefab.meta │ │ │ └── Sun Shield.prefab.meta │ │ ├── Projectiles │ │ │ └── Arrow.prefab.meta │ │ ├── Entities │ │ │ ├── Npcs │ │ │ │ └── Alchemist.prefab.meta │ │ │ ├── Players │ │ │ │ ├── Archer.prefab.meta │ │ │ │ └── Warrior.prefab.meta │ │ │ ├── Monsters │ │ │ │ └── Skeleton.prefab.meta │ │ │ ├── Npcs.meta │ │ │ ├── Players.meta │ │ │ └── Monsters.meta │ │ ├── UI.meta │ │ ├── Entities.meta │ │ ├── Environment.meta │ │ ├── ItemModels.meta │ │ └── Projectiles.meta │ ├── Fonts.meta │ ├── Models.meta │ ├── Plugins.meta │ ├── Prefabs.meta │ ├── Resources.meta │ ├── Scenes.meta │ ├── Scripts.meta │ ├── Textures.meta │ ├── Scripts │ │ ├── _OnGUI.meta │ │ ├── _UI.meta │ │ ├── DestroyAfter.cs │ │ ├── ItemDropChance.cs │ │ ├── _UI │ │ │ ├── UITextCopyName.cs │ │ │ ├── UIQuestSlot.cs │ │ │ ├── UIBuffs.cs.meta │ │ │ ├── UIChat.cs.meta │ │ │ ├── UILogin.cs.meta │ │ │ ├── UILoot.cs.meta │ │ │ ├── UIPopup.cs.meta │ │ │ ├── UIQuests.cs.meta │ │ │ ├── UISkills.cs.meta │ │ │ ├── UITarget.cs.meta │ │ │ ├── UIUtils.cs.meta │ │ │ ├── UIWindow.cs.meta │ │ │ ├── UIBuffSlot.cs.meta │ │ │ ├── UICrafting.cs.meta │ │ │ ├── UIEquipment.cs.meta │ │ │ ├── UIHealthMana.cs.meta │ │ │ ├── UIInventory.cs.meta │ │ │ ├── UIItemMall.cs.meta │ │ │ ├── UILootSlot.cs.meta │ │ │ ├── UIMinimap.cs.meta │ │ │ ├── UINpcDialogue.cs.meta │ │ │ ├── UINpcQuests.cs.meta │ │ │ ├── UINpcTrading.cs.meta │ │ │ ├── UIQuestSlot.cs.meta │ │ │ ├── UIRespawn.cs.meta │ │ │ ├── UIShortcuts.cs.meta │ │ │ ├── UIShowToolTip.cs.meta │ │ │ ├── UISkillSlot.cs.meta │ │ │ ├── UISkillbar.cs.meta │ │ │ ├── UICharacterInfo.cs.meta │ │ │ ├── UIDragAndDropable.cs.meta │ │ │ ├── UIEquipmentSlot.cs.meta │ │ │ ├── UIExperienceBar.cs.meta │ │ │ ├── UIInventorySlot.cs.meta │ │ │ ├── UIItemMallSlot.cs.meta │ │ │ ├── UIKeepInScreen.cs.meta │ │ │ ├── UINpcQuestSlot.cs.meta │ │ │ ├── UINpcTradingSlot.cs.meta │ │ │ ├── UIPlayerTrading.cs.meta │ │ │ ├── UISkillbarSlot.cs.meta │ │ │ ├── UITextCopyName.cs.meta │ │ │ ├── UICharacterCreation.cs.meta │ │ │ ├── UICharacterSelection.cs.meta │ │ │ ├── UIPlayerTradeRequest.cs.meta │ │ │ ├── UIPlayerTradingSlot.cs.meta │ │ │ ├── UICharacterSelectionSlot.cs.meta │ │ │ ├── UICraftingIngredientSlot.cs.meta │ │ │ ├── UINpcQuestSlot.cs │ │ │ ├── UIBuffSlot.cs │ │ │ ├── UINpcTradingSlot.cs │ │ │ ├── UICraftingIngredientSlot.cs │ │ │ ├── UICharacterSelectionSlot.cs │ │ │ ├── UIItemMallSlot.cs │ │ │ ├── UIEquipmentSlot.cs │ │ │ ├── UIPlayerTradingSlot.cs │ │ │ ├── UIInventorySlot.cs │ │ │ ├── UILootSlot.cs │ │ │ ├── UISkillbarSlot.cs │ │ │ ├── UISkillSlot.cs │ │ │ ├── UIExperienceBar.cs │ │ │ ├── UIPopup.cs │ │ │ ├── UIRespawn.cs │ │ │ └── UIHealthMana.cs │ │ ├── DefaultVelocity.cs │ │ ├── Chat.cs.meta │ │ ├── Entity.cs.meta │ │ ├── Item.cs.meta │ │ ├── Monster.cs.meta │ │ ├── Npc.cs.meta │ │ ├── Player.cs.meta │ │ ├── Quest.cs.meta │ │ ├── Skill.cs.meta │ │ ├── Utils.cs.meta │ │ ├── AggroArea.cs.meta │ │ ├── CameraMMO.cs.meta │ │ ├── CopyPosition.cs.meta │ │ ├── Database.cs.meta │ │ ├── DestroyAfter.cs.meta │ │ ├── Extensions.cs.meta │ │ ├── FaceCamera.cs.meta │ │ ├── ItemTemplate.cs.meta │ │ ├── NetworkName.cs.meta │ │ ├── NetworkTime.cs.meta │ │ ├── Projectile.cs.meta │ │ ├── DefaultVelocity.cs.meta │ │ ├── EquipmentLocation.cs.meta │ │ ├── ItemDropChance.cs.meta │ │ ├── NavmeshPathGizmo.cs.meta │ │ ├── NetworkManagerMMO.cs.meta │ │ ├── NetworkMessages.cs.meta │ │ ├── NpcQuestIndicator.cs.meta │ │ ├── PlayerDndHandling.cs.meta │ │ ├── PlayerNameColor.cs.meta │ │ ├── QuestTemplate.cs.meta │ │ ├── RecipeTemplate.cs.meta │ │ ├── SkillTemplate.cs.meta │ │ ├── TextMeshCopyName.cs.meta │ │ ├── TextMeshCopyText.cs.meta │ │ ├── TextMeshFadeAlpha.cs.meta │ │ ├── _OnGUI │ │ │ └── GUIConsole.cs.meta │ │ ├── NetworkNavMeshAgent.cs.meta │ │ ├── TextMeshCopyText.cs │ │ ├── NetworkProximityCheckerCustom.cs.meta │ │ ├── TextMeshCopyName.cs │ │ ├── EquipmentLocation.cs │ │ ├── FaceCamera.cs │ │ ├── CopyPosition.cs │ │ ├── NpcQuestIndicator.cs │ │ ├── PlayerNameColor.cs │ │ ├── TextMeshFadeAlpha.cs │ │ ├── NavmeshPathGizmo.cs │ │ └── AggroArea.cs │ └── Resources │ │ ├── Items [keep them all in one folder, use no subfolders] │ │ ├── White Bow.asset.meta │ │ ├── Dark Sword.asset.meta │ │ ├── Desert Cleaver.asset.meta │ │ ├── Health Potion.asset.meta │ │ ├── Mana Potion.asset.meta │ │ ├── Sun Shield.asset.meta │ │ └── Vigor Potion.asset.meta │ │ ├── Recipes [keep them all in one folder, use no subfolders] │ │ ├── Vigor Potion.asset.meta │ │ └── Vigor Potion.asset │ │ ├── Items [keep them all in one folder, use no subfolders].meta │ │ ├── Quests [keep them all in one folder, use no subfolders] │ │ ├── Beginners Journey.asset.meta │ │ └── Find the Cleaver.asset.meta │ │ ├── Quests [keep them all in one folder, use no subfolders].meta │ │ ├── Recipes [keep them all in one folder, use no subfolders].meta │ │ ├── Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders] │ │ ├── Blessing.asset.meta │ │ ├── Murderer.asset.meta │ │ ├── Offender.asset.meta │ │ ├── Strong Hit.asset.meta │ │ ├── Health Aura.asset.meta │ │ ├── Precise Shot.asset.meta │ │ ├── Normal Attack (Archer).asset.meta │ │ ├── Normal Attack (Skeleton).asset.meta │ │ └── Normal Attack (Warrior).asset.meta │ │ └── Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders].meta ├── Standard Assets │ ├── ParticleSystems │ │ ├── Textures │ │ │ ├── Spark.png │ │ │ ├── ParticleBokeh.png │ │ │ ├── ParticleFlare.png │ │ │ ├── ParticleCloudBlack.png │ │ │ ├── ParticleCloudWhite.png │ │ │ ├── ParticleFirecloud.png │ │ │ ├── ParticleFlamesSheet.png │ │ │ ├── ParticleFireballSheet.png │ │ │ ├── SplashesFineParticle.png │ │ │ ├── SplashesLargeParticle.png │ │ │ └── ParticleFlameLickSheet.png │ │ ├── Materials │ │ │ ├── ParticleFlames.mat.meta │ │ │ ├── ParticleGlow.mat.meta │ │ │ ├── ParticleSpark.mat.meta │ │ │ ├── ParticleSpray.mat.meta │ │ │ ├── ParticleSteam.mat.meta │ │ │ ├── ParticleAfterburner.mat.meta │ │ │ ├── ParticleDuststorm.mat.meta │ │ │ ├── ParticleFireball.mat.meta │ │ │ ├── ParticleFirecloud.mat.meta │ │ │ ├── ParticleFirework.mat.meta │ │ │ ├── ParticleFlameLicks.mat.meta │ │ │ ├── ParticleSmokeBlack.mat.meta │ │ │ ├── ParticleSmokeMobile.mat.meta │ │ │ ├── ParticleSmokeVertlit.mat.meta │ │ │ ├── ParticleSmokeWhite.mat.meta │ │ │ ├── ParticleSplashes.mat.meta │ │ │ ├── ParticleSteamMobile.mat.meta │ │ │ └── ParticleWaterSpray.mat.meta │ │ ├── ParticleSystemsGuidelines.txt.meta │ │ ├── Prefabs │ │ │ └── FireMobile.prefab.meta │ │ ├── Shaders │ │ │ ├── PriorityParticleAdd.shader.meta │ │ │ ├── PriorityParticleAddSoft.shader.meta │ │ │ └── PriorityParticleAlpha.shader.meta │ │ ├── Materials.meta │ │ ├── Prefabs.meta │ │ ├── Scripts.meta │ │ ├── Shaders.meta │ │ ├── Textures.meta │ │ └── Scripts │ │ │ ├── ParticleSystemMultiplier.cs.meta │ │ │ └── ParticleSystemMultiplier.cs │ ├── Prototyping │ │ ├── Textures │ │ │ ├── GridEmissive.png │ │ │ ├── SwatchMauveAlbedo.png │ │ │ ├── SwatchNavyAlbedo.png │ │ │ ├── SwatchOrangeAlbedo.png │ │ │ ├── SwatchPinkDAlbedo.png │ │ │ ├── SwatchTealAlbedo.png │ │ │ ├── SwatchWhiteAlbedo.png │ │ │ ├── SwatchYellowAlbedo.png │ │ │ ├── SwatchNavyDarkAlbedo.png │ │ │ └── SwatchTurquoiseAlbedo.png │ │ ├── Materials │ │ │ ├── NavyGrid.mat.meta │ │ │ ├── PinkGrid.mat.meta │ │ │ ├── NavySmooth.mat.meta │ │ │ ├── PinkSmooth.mat.meta │ │ │ ├── YellowGrid.mat.meta │ │ │ └── YellowSmooth.mat.meta │ │ ├── Models │ │ │ ├── BlockPrototype04x04x04.fbx │ │ │ ├── CubePrototype02x02x02.fbx │ │ │ ├── CubePrototype04x04x04.fbx │ │ │ ├── CubePrototype08x08x08.fbx │ │ │ ├── FloorPrototype04x01x04.fbx │ │ │ ├── FloorPrototype08x01x08.fbx │ │ │ ├── FloorPrototype64x01x64.fbx │ │ │ ├── HousePrototype16x16x24.fbx │ │ │ ├── RampPrototype04x02x02.fbx │ │ │ ├── StepsPrototype04x02x02.fbx │ │ │ ├── WallPrototype08x08x01.fbx │ │ │ ├── JoinMidPrototype04x06x01.fbx │ │ │ ├── PickupPrototype01x01x01.fbx │ │ │ ├── PillarPrototype01x02x01.fbx │ │ │ ├── PillarPrototype02x08x02.fbx │ │ │ ├── PlatformPrototype02x01x02.fbx │ │ │ ├── PlatformPrototype04x01x04.fbx │ │ │ ├── PlatformPrototype08x01x08.fbx │ │ │ ├── JoinInnerPrototype01x06x01.fbx │ │ │ └── JoinOuterPrototype02x06x02.fbx │ │ ├── Prefabs │ │ │ ├── PickupPrototype.prefab.meta │ │ │ ├── BlockPrototype04x04x04.prefab.meta │ │ │ ├── CubePrototype02x02x02.prefab.meta │ │ │ ├── CubePrototype04x04x04.prefab.meta │ │ │ ├── CubePrototype08x08x08.prefab.meta │ │ │ ├── FloorPrototype04x01x04.prefab.meta │ │ │ ├── FloorPrototype08x01x08.prefab.meta │ │ │ ├── FloorPrototype64x01x64.prefab.meta │ │ │ ├── HousePrototype16x16x24.prefab.meta │ │ │ ├── PillarPrototype01x02x01.prefab.meta │ │ │ ├── PillarPrototype02x08x02.prefab.meta │ │ │ ├── RampPrototype04x02x02.prefab.meta │ │ │ ├── StepsPrototype04x02x02.prefab.meta │ │ │ ├── WallPrototype08x08x01.prefab.meta │ │ │ ├── JoinInnerPrototype01x06x01.prefab.meta │ │ │ ├── JoinMidPrototype04x06x01.prefab.meta │ │ │ ├── JoinOuterPrototype02x06x02.prefab.meta │ │ │ ├── PlatformPrototype02x01x02.prefab.meta │ │ │ ├── PlatformPrototype04x01x04.prefab.meta │ │ │ └── PlatformPrototype08x01x08.prefab.meta │ │ ├── Shaders │ │ │ └── WorldCoordDiffuse.shader.meta │ │ ├── Materials.meta │ │ ├── Models.meta │ │ ├── Prefabs.meta │ │ ├── Shaders.meta │ │ └── Textures.meta │ ├── Environment │ │ ├── SpeedTree │ │ │ ├── Broadleaf_modified │ │ │ │ ├── BroadleafBark.tga │ │ │ │ ├── Broadleaf_Mobile.spm │ │ │ │ ├── BroadleafBark_Normal.tga │ │ │ │ ├── Broadleaf_Mobile_Atlas.tga │ │ │ │ ├── Broadleaf_Mobile Materials │ │ │ │ │ ├── Billboard.mat.meta │ │ │ │ │ ├── LOD2 │ │ │ │ │ │ ├── Leaves_1.mat.meta │ │ │ │ │ │ └── Branches_0.mat.meta │ │ │ │ │ ├── LOD0 │ │ │ │ │ │ ├── Branches_0.mat.meta │ │ │ │ │ │ └── Leaves_1.mat.meta │ │ │ │ │ ├── LOD1 │ │ │ │ │ │ ├── Branches_0.mat.meta │ │ │ │ │ │ └── Leaves_1.mat.meta │ │ │ │ │ ├── LOD0.meta │ │ │ │ │ ├── LOD1.meta │ │ │ │ │ └── LOD2.meta │ │ │ │ ├── Broadleaf_Mobile_Atlas_Normal.tga │ │ │ │ ├── Broadleaf_Mobile_LOD2.prefab.meta │ │ │ │ └── Broadleaf_Mobile Materials.meta │ │ │ └── Broadleaf_modified.meta │ │ └── SpeedTree.meta │ ├── Environment.meta │ ├── Prototyping.meta │ └── ParticleSystems.meta ├── uMMORPG.meta └── Standard Assets.meta ├── .gitattributes └── .gitignore /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.0f3 2 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Documentation.pdf -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/gold.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/indicator.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/indicator.psd -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/trash.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/uMMORPG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/uMMORPG.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/item_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/item_bow.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_x64/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Plugins/sqlite_x64/sqlite3.dll -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_x86/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Plugins/sqlite_x86/sqlite3.dll -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/button_quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/button_quit.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/item_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/item_cleaver.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/item_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/item_shield.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/item_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/item_sword.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/skill_heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/skill_heal.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Scenes/World/Terrain_Trees.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Scenes/World/Terrain_Trees.asset -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/button_quests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/button_quests.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/button_skills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/button_skills.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/button_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/button_character.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/button_crafting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/button_crafting.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/button_equipment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/button_equipment.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/item_potion_mana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/item_potion_mana.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/item_potion_vigor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/item_potion_vigor.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/skill_healthaura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/skill_healthaura.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/skill_preciseshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/skill_preciseshot.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/skill_stronghit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/skill_stronghit.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/status_murderer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/status_murderer.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/status_offender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/status_offender.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Sword/Materials/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Items/Sword/Materials/sword.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_common/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Plugins/sqlite_common/System.Data.dll -------------------------------------------------------------------------------- /Assets/uMMORPG/Scenes/World.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a11831025daca24449ab977327654930 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/button_skills_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/button_skills_gray.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/item_potion_health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/item_potion_health.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/skill_attack_archer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/skill_attack_archer.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Archer/Materials/eye.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Warrior/Materials/eye.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Bow/Materials/archerbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Items/Bow/Materials/archerbow.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Shield/Materials/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Items/Shield/Materials/shield.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_android_x86/libsqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Plugins/sqlite_android_x86/libsqlite3.so -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/button_inventory_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/button_inventory_big.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons/skill_attack_warrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Textures/Icons/skill_attack_warrior.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/Spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/Spark.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-B.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-BI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-BI.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-C.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-C.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-L.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-L.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-LI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-LI.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-M.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-M.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-MI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-MI.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-R.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-RI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-RI.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Alchemist/Materials/eye.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Warrior/Materials/feet.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/hair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Warrior/Materials/hair.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Warrior/Materials/hands.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Warrior/Materials/head.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Temple/Temple_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Environment/Temple/Temple_Normal.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Tent/Materials/tent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Environment/Tent/Materials/tent.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Cleaver/Materials/cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Items/Cleaver/Materials/cleaver.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_common/Mono.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Plugins/sqlite_common/Mono.Data.Sqlite.dll -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/GridEmissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/GridEmissive.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-B.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-R.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/beard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Alchemist/Materials/beard.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Alchemist/Materials/feet.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Alchemist/Materials/hands.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Alchemist/Materials/head.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Alchemist/Materials/outfit.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/eyebrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Warrior/Materials/eyebrow.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Warrior/Materials/outfit.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Fence/Materials/fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Environment/Fence/Materials/fence.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Temple/Temple_Diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Environment/Temple/Temple_Diffuse.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Projectiles/Arrow/Materials/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Projectiles/Arrow/Materials/arrow.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_android_arm-v7a/libsqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Plugins/sqlite_android_arm-v7a/libsqlite3.so -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-BI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-BI.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-RI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-RI.ttf -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/base.hairJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Archer/Materials/base.hairJ.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/base.headA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Archer/Materials/base.headA.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Skeleton/Materials/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Skeleton/Materials/skeleton.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/ParticleBokeh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/ParticleBokeh.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/ParticleFlare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/ParticleFlare.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/SwatchMauveAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/SwatchMauveAlbedo.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/SwatchNavyAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/SwatchNavyAlbedo.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/SwatchOrangeAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/SwatchOrangeAlbedo.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/SwatchPinkDAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/SwatchPinkDAlbedo.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/SwatchTealAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/SwatchTealAlbedo.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/SwatchWhiteAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/SwatchWhiteAlbedo.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/SwatchYellowAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/SwatchYellowAlbedo.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Campfire/Materials/campfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Environment/Campfire/Materials/campfire.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Materials/NavyGrid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76ff537c8e1a84345868e6aeee938ab3 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Materials/PinkGrid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c19a618a0bd9844583b91dca0875a34 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/BlockPrototype04x04x04.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/BlockPrototype04x04x04.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/CubePrototype02x02x02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/CubePrototype02x02x02.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/CubePrototype04x04x04.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/CubePrototype04x04x04.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/CubePrototype08x08x08.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/CubePrototype08x08x08.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/FloorPrototype04x01x04.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/FloorPrototype04x01x04.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/FloorPrototype08x01x08.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/FloorPrototype08x01x08.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/FloorPrototype64x01x64.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/FloorPrototype64x01x64.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/HousePrototype16x16x24.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/HousePrototype16x16x24.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/RampPrototype04x02x02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/RampPrototype04x02x02.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/StepsPrototype04x02x02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/StepsPrototype04x02x02.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/WallPrototype08x08x01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/WallPrototype08x08x01.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/SwatchNavyDarkAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/SwatchNavyDarkAlbedo.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/ParticleCloudBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/ParticleCloudBlack.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/ParticleCloudWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/ParticleCloudWhite.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/ParticleFirecloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/ParticleFirecloud.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/ParticleFlamesSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/ParticleFlamesSheet.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Materials/NavySmooth.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1032d41f900276c40a9dd24f55b7d420 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Materials/PinkSmooth.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fed4e78bda2b3de45954637fee164b8c 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Materials/YellowGrid.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82096aab38f01cb40a1cbf8629a810ba 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Materials/YellowSmooth.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e1d36c4bbd37d54f9ea183e4f5fd656 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/JoinMidPrototype04x06x01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/JoinMidPrototype04x06x01.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/PickupPrototype01x01x01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/PickupPrototype01x01x01.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/PillarPrototype01x02x01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/PillarPrototype01x02x01.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/PillarPrototype02x08x02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/PillarPrototype02x08x02.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/PlatformPrototype02x01x02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/PlatformPrototype02x01x02.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/PlatformPrototype04x01x04.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/PlatformPrototype04x01x04.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/PlatformPrototype08x01x08.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/PlatformPrototype08x01x08.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures/SwatchTurquoiseAlbedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Textures/SwatchTurquoiseAlbedo.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleFlames.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bfa2f095c911d649bf4cb92a55ac974 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleGlow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c10b1630d5621ec48a17223c3c102023 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleSpark.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f63c576739a709747a1a571260d4fabd 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleSpray.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3062613153ea47f42a262f065fec69d1 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleSteam.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60d4adad90a8b164abbb7d8ff5b4118a 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/ParticleSystemsGuidelines.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2909cb28371e6664b88130f37d454605 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Prefabs/FireMobile.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b99a0a5998b2736429fd2a2fd1d01c5e 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/ParticleFireballSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/ParticleFireballSheet.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/SplashesFineParticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/SplashesFineParticle.png -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/SplashesLargeParticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/SplashesLargeParticle.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/JoinInnerPrototype01x06x01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/JoinInnerPrototype01x06x01.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models/JoinOuterPrototype02x06x02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Prototyping/Models/JoinOuterPrototype02x06x02.fbx -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/PickupPrototype.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c02747e7134ef1948a039c94a8f33c5b 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleAfterburner.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89ff19d667a6a5d4bb76df1fcb718402 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleDuststorm.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7911795df27dd464190eed77dda90191 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleFireball.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26ea534dcd83fe14c9173a52e151cce8 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleFirecloud.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77d08210df254d845885518314593544 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleFirework.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f3080141f1f64197825663e067f94f8 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleFlameLicks.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30289309b0c21224ea5b6fcc73b07d59 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleSmokeBlack.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc626cffedc907848a7b47b87aa5e34f 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleSmokeMobile.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 473d6d3ec0d161b4a85e466c8c6da3fb 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleSmokeVertlit.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 225843b6084e75440a6ea970a17c93aa 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleSmokeWhite.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c50d77affeb31e14c9c062c282f13fc8 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleSplashes.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff6663d927968dc4482d24a8495316de 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleSteamMobile.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed1b89d39279f564ea077ad8e46f3595 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials/ParticleWaterSpray.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09a99b10658931c46a438c586a49ec65 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures/ParticleFlameLickSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/ParticleSystems/Textures/ParticleFlameLickSheet.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/BlockPrototype04x04x04.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab33e6080ae416b4d899f39fa8951b98 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/CubePrototype02x02x02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b127815fd0f2074eae3a0c6a4786d0b 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/CubePrototype04x04x04.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d2e4237b4429b34fae4c9eb3cd9efd5 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/CubePrototype08x08x08.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90d8e09703679534295bd2cacb73d6de 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/FloorPrototype04x01x04.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4620f3c93dca8c94c9124d8ba443f43e 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/FloorPrototype08x01x08.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 584a8ef4749c89745b7ae07f3ba7617f 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/FloorPrototype64x01x64.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3681543e5b0f59742b73073cb379cdc6 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/HousePrototype16x16x24.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5862bbfe91a75054ca72c13b555b6ac5 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/PillarPrototype01x02x01.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88b5bfec6f1bd17439b2f4339902dca6 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/PillarPrototype02x08x02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44884af1ac1d64d42902da40268ba120 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/RampPrototype04x02x02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e11ef4f39bc65e44a4b0755ecac6ea1 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/StepsPrototype04x02x02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d85d3a32fb6157d488e31edf82b7b1c4 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/WallPrototype08x08x01.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93e86b57e56570d46814839867bf9a52 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/starterHunterBow.feetA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Archer/Materials/starterHunterBow.feetA.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/starterHunterBow.handsA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Archer/Materials/starterHunterBow.handsA.png -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/starterHunterBow.outfitC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/uMMORPG/Models/Entities/Archer/Materials/starterHunterBow.outfitC.png -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/JoinInnerPrototype01x06x01.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ae7f9f9eacff4142b21eb85ae606fdc 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/JoinMidPrototype04x06x01.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04a24b5e91096bd4e8ae6fba35c4dbf8 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/JoinOuterPrototype02x06x02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b321aed21e0872743a175d8dbbe12ac8 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/PlatformPrototype02x01x02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45635d5190a12bc4884469b7dcafa846 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/PlatformPrototype04x01x04.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 831c1389ceffed84d947c9aa3fc86ac2 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs/PlatformPrototype08x01x08.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f114e6b62ad5134b9ba4e0a01ddc050 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/BroadleafBark.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/BroadleafBark.tga -------------------------------------------------------------------------------- /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/Standard Assets/Prototyping/Shaders/WorldCoordDiffuse.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406a976191e8366459222b654c60e1f8 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile.spm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile.spm -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Shaders/PriorityParticleAdd.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cd052ce7ea5a2f438f599e02de6a390 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/copyright.txt: -------------------------------------------------------------------------------- 1 | Copyright 2010,2011 Canonical Ltd. 2 | 3 | This Font Software is licensed under the Ubuntu Font Licence, Version 4 | 1.0. https://launchpad.net/ubuntu-font-licence 5 | 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/BroadleafBark_Normal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/BroadleafBark_Normal.tga -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Shaders/PriorityParticleAddSoft.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 694eef9939f180440a9d0891272eddba 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Shaders/PriorityParticleAlpha.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc4347574b823934ba11785e25895920 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile_Atlas.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile_Atlas.tga -------------------------------------------------------------------------------- /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/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/Billboard.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c1755df5f552e843b9f8485f72e71f8 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/LOD2/Leaves_1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f568ca8b20ae095418f3e2a3b341d8f6 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Documentation.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dddda54c7506c4312ba206c2d5a32867 3 | timeCreated: 1449166406 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/LOD2/Branches_0.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd764ab8662bea6468202df8741bcfd3 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile_Atlas_Normal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BanaanaaHammock/uMMORPG-2/HEAD/Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile_Atlas_Normal.tga -------------------------------------------------------------------------------- /Assets/uMMORPG.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a37ce772ebae4349850a6a94d6bf169 3 | folderAsset: yes 4 | timeCreated: 1450866508 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/TRADEMARKS.txt: -------------------------------------------------------------------------------- 1 | Ubuntu and Canonical are registered trademarks of Canonical Ltd. 2 | 3 | The licence accompanying these works does not grant any rights 4 | under trademark law and all such rights are reserved. 5 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Indicator.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95fc72c38103b4c928f9e12db60c9f8e 3 | timeCreated: 1455790892 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/Dragee.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3cde8f814cb343c3be7c1a26745221c 3 | timeCreated: 1453141268 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/ToolTip.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f234d5ec9358c46668b3c1b044ba66b8 3 | timeCreated: 1453139038 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/DamagePopup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e81ebbaa55e254e31b9909cef04e3855 3 | timeCreated: 1472652680 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotBuff.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1050e929fd77c454784d7914631e03a0 3 | timeCreated: 1471442796 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotChat.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cd8c9ec0051d4ea0b9a0eda4eb4dc6f 3 | timeCreated: 1453120466 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotLoot.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21f06ce3de05548839d41be86c65384c 3 | timeCreated: 1471452795 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotNpcQuest.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d79077bcc9be4eb9abb9d3b62647b94 3 | timeCreated: 1473340140 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotQuest.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 523341064aa6a4650bc512fe93752b72 3 | timeCreated: 1473333986 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotSkill.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 499615dc942954df3a501059adab9262 3 | timeCreated: 1471447221 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotSkillbar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292df92c92a7b438992fb0d7a2551615 3 | timeCreated: 1471445286 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scenes/World/NavMesh.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d619783ccdfd4921b58a13cdede38ea 3 | timeCreated: 1484152976 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Standard Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 238dd03b79f3e954192b0124bd2eca00 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0e99855ca31649f8977a9ab6144b20b 3 | folderAsset: yes 4 | timeCreated: 1480368911 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f715ef0eccc93640bb3cd931edffd92 3 | folderAsset: yes 4 | timeCreated: 1447751943 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0a8419fcccc849a1b22e3450e9ed8f4 3 | folderAsset: yes 4 | timeCreated: 1485344269 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 153c69f1d8c93354e88128ee182af25c 3 | folderAsset: yes 4 | timeCreated: 1439656986 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Environment/Temple.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc47fc9d53ba2408fa39f1bedc7d97b6 3 | timeCreated: 1483815885 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Environment/campfire.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3100c82437c454b91b7d8bb56ae2004a 3 | timeCreated: 1449170777 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Environment/tent.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2009974b441cb4829b4857956f47ad05 3 | timeCreated: 1449171104 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/ItemModels/White Bow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc4770faca127481a9e26e78f01c6dee 3 | timeCreated: 1455880841 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Projectiles/Arrow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 844bd8bb1d18e4982923e610290fc1a1 3 | timeCreated: 1455899200 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotEquipment.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc39d3162d66c470fa525e646b286bee 3 | timeCreated: 1471464835 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotInventory.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe25bab38867c41dd8562025769a8b9c 3 | timeCreated: 1471444766 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotItemMallItem.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 452c0ae85b57b400dbacd2f9743b8daa 3 | timeCreated: 1486391109 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotNpcTrading.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc446906f45fd4f8fb9703ad2051a076 3 | timeCreated: 1471461088 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotPlayerTrading.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8feede7fef4084a2d8d89e270679e970 3 | timeCreated: 1471457717 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ba95745c9263487fad18ce81fa7e2c3 3 | folderAsset: yes 4 | timeCreated: 1466417599 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0bd1441fa2d24285ac695bc2df707a3 3 | folderAsset: yes 4 | timeCreated: 1445869535 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scenes/World/Terrain_Trees.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e311c680e2e2f443cbe21dbc57b2da07 3 | timeCreated: 1448287260 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb10b9e4d44daa540a938708d0d986dd 3 | folderAsset: yes 4 | timeCreated: 1439655973 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0742fcfcbfaeb4456934af3a6c14f6ed 3 | folderAsset: yes 4 | timeCreated: 1445869546 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Materials/indicator.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de0f65ef389694731b0ce411b8fa244a 3 | timeCreated: 1455790837 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/FONTLOG.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f52318e603f7f478493449e6be37ee5b 3 | timeCreated: 1475525178 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/LICENCE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eec5dfcaebe9444fe99b5aea1d7da2c3 3 | timeCreated: 1475525178 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa759aa6f91c744ecb42b31ece704b6f 3 | timeCreated: 1475525178 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/eye.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cd91ee276e1bdb44863e26de32c762a 3 | timeCreated: 1455668282 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a54adacd9b934c97a485bc873052680 3 | folderAsset: yes 4 | timeCreated: 1449056950 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Shield/Materials/Shield.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b0a49f9d3f455c429c88cf5baf4ecc8 3 | timeCreated: 1447458648 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Sword/Materials/Sword.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d28b53e38da1a646882274da174b494 3 | timeCreated: 1447465619 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Sword/Materials/unnamed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c4478ebd8cac4aaba7e76f0d435a7d8 3 | timeCreated: 1449060597 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Entities/Npcs/Alchemist.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb6bfdff94d0eda49a166f395852564f 3 | timeCreated: 1453406504 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Entities/Players/Archer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb4d93658e2654e8c9448f27a17f0f9e 3 | timeCreated: 1455538130 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Entities/Players/Warrior.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0d8d3ee1a9d34deab41d803ad7a6ddf 3 | timeCreated: 1453640126 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Environment/fenceClosed.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b09b3578674cc41d5956f30f6526a4ca 3 | timeCreated: 1449170881 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Environment/fenceOpen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 831f2e338e4164665a5ff7159765cb9f 3 | timeCreated: 1449171000 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/ItemModels/Dark Sword.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1db45b1b0f94ff4182e4d2481cc8528 3 | timeCreated: 1447753367 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/ItemModels/Desert Cleaver.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b3f38e6c8f3c4452842f2b599acdd24 3 | timeCreated: 1448273369 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/ItemModels/Sun Shield.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a42b6ee2317c0646bc568ee47058786 3 | timeCreated: 1447753363 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b2c7c784a4574c7fbf1bc998c6a4c03 3 | folderAsset: yes 4 | timeCreated: 1472850085 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotCharacterSelection.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86be6d253bb284fe3b6c87145c739ca9 3 | timeCreated: 1471461454 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotCraftingIngredient.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2df70ab9569e4a3caf749ef389fd4dc 3 | timeCreated: 1484601815 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotCraftingResult.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c0d26fac4e634980916e3501b389ef6 3 | timeCreated: 1484601419 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/UI/SlotItemMallCategory.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5366cd841abb54e3cb2f47b3bbb7311d 3 | timeCreated: 1486391109 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scenes/World.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9380c3ed1b9e45f687566ca43bcd663 3 | folderAsset: yes 4 | timeCreated: 1448278854 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_OnGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ae6f9aee8d5a4154a75a0dae9641529 3 | folderAsset: yes 4 | timeCreated: 1472658771 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3854b29df59b414283b06ac00fcc15c 3 | folderAsset: yes 4 | timeCreated: 1472221727 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 635e2204cbec54503903656c9783d317 3 | folderAsset: yes 4 | timeCreated: 1442929366 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/MinimapTexture.renderTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bca4ffb4e36be4f78bb5aa9a310912aa 3 | timeCreated: 1445338439 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ca8c4e270f964e0da9f731d7d34b123 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 153c77e0022ff3148beba89b18de3476 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/CONTRIBUTING.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 739ad7c4978a945b1ba2fc9e217b05d4 3 | timeCreated: 1475525178 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/LICENCE-FAQ.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62303ca1afa1a41f5b5285163d4e8893 3 | timeCreated: 1475525178 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/TRADEMARKS.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0043724408c1d4560a00a331dc66f579 3 | timeCreated: 1475525178 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/copyright.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ace9d5d40cad47bf91a94a74c7707fc 3 | timeCreated: 1475525178 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a68b1a9c411334fba870916341cc41d6 3 | folderAsset: yes 4 | timeCreated: 1449057001 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/beard.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c17ef1c9d6ccc2340b71bb91ffe9ef3c 3 | timeCreated: 1448229929 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/eye.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17fe00f239292474186d37ea759e6498 3 | timeCreated: 1447458659 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/feet.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe4aa3660573a9d41a123bd5709d9ca7 3 | timeCreated: 1448229929 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/hands.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bfa17c9e7b03bd439691fee6f6af8b9 3 | timeCreated: 1448229929 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/head.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac35ed223c5034946a95c7040c90a082 3 | timeCreated: 1448229930 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Controller.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c79f85be6345a4874aa201203f0969a7 3 | timeCreated: 1447753695 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/eyebrow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1312d333909b41645a624a8b6eb69fcb 3 | timeCreated: 1455668282 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/feetA.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b6cafbdf2e71f245aa75a08b009a9c1 3 | timeCreated: 1455667045 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/hairJ.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c0068acf5b35694894fbc2b51a58234 3 | timeCreated: 1455667045 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/handsA.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72a49ef6cc83ca940b41521cd27e83bc 3 | timeCreated: 1455667045 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/headA.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 875e1683e8401a2479dd7a7109720b9c 3 | timeCreated: 1455667045 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials/outfitC.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 571749e87f4a09840a11754952f3ad2d 3 | timeCreated: 1455667045 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Controller.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25c81016120814246b5f1d522cee388e 3 | timeCreated: 1447753695 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/eye.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03c49d2fd5bd6ec4eb0759be8b5c1fc0 3 | timeCreated: 1447458659 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/eyebrow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 892b62398589a6d478e1000e8a04f38c 3 | timeCreated: 1447458659 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/feet.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bcfafe14a973df4bbd6f341811c84f9 3 | timeCreated: 1447458659 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/feetA.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e59e6d87dc34049c9990b51fc98b6ff9 3 | timeCreated: 1450095784 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/hair.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42903ac4c00c2454db3c51e4b567dfa3 3 | timeCreated: 1447458659 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/hairF.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e8e88da2b055479d85b0bda2860c629 3 | timeCreated: 1450095784 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/hands.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbc055b2fbef4fb448205e1499e2e875 3 | timeCreated: 1447458659 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/handsA.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 394dd45e23f5448f3bb17bdd5ffe64a9 3 | timeCreated: 1450095784 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/head.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a593d49e6ceda2e4c80a48f81ad21de6 3 | timeCreated: 1447458659 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/headG.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6de78cf15687c45a7a9d34a23a6b4c20 3 | timeCreated: 1450095784 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/outfit.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fa5f117595612746b46ec2f6eda05fb 3 | timeCreated: 1447458659 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/outfitC.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c43ac43d7d4f8437584737ccdc7dc132 3 | timeCreated: 1450095784 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials/unnamed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf5ff49359f09a6418de9eac9cbc1e63 3 | timeCreated: 1447752428 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b344bf2094b2643f7910abffacdb3750 3 | folderAsset: yes 4 | timeCreated: 1448960094 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Fence/Materials/fence.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff4dd9a7550d29f478dfa65777a9d127 3 | timeCreated: 1448925358 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Tent/Materials/tent.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7fc9e276adc8a04e8c44be7fdb5249a 3 | timeCreated: 1448925363 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Bow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87401d03b6eb948549c822b45e3fa9e8 3 | folderAsset: yes 4 | timeCreated: 1455880375 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Cleaver/Materials/cleaver.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08f173162d2643f4c9f6357548ea6fd7 3 | timeCreated: 1448224830 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Shield.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a35484daa2a814dd48346c38b80fa55a 3 | folderAsset: yes 4 | timeCreated: 1449056962 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Shield/Materials/unnamed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 680226cf034e44f8d9d77b9f94e4502c 3 | timeCreated: 1449171267 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Sword.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 428ba6f31b53245e7a5c7fad39a5f8b3 3 | folderAsset: yes 4 | timeCreated: 1449056965 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Projectiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aad812e6776ab40afbea62cb446fb4d6 3 | folderAsset: yes 4 | timeCreated: 1455898812 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_x64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d11d641e3ac6e4d00ba500c401082056 3 | folderAsset: yes 4 | timeCreated: 1485190360 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2928c93db84cf45769f8ca31a392bb9a 3 | folderAsset: yes 4 | timeCreated: 1485190360 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Entities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c07f6a29497448ba9c5c0f47dda3c2c 3 | folderAsset: yes 4 | timeCreated: 1441965611 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Entities/Monsters/Skeleton.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68fb15ce5f2e7eb44a8ac123d853b91a 3 | timeCreated: 1440499491 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Environment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aeed3a5c79a9a4681b51b961ab6deda6 3 | folderAsset: yes 4 | timeCreated: 1449170755 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/ItemModels.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aa58fd637df341d482796188739face 3 | folderAsset: yes 4 | timeCreated: 1444042675 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Projectiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 069581a4e44044fbaa1595428843c592 3 | folderAsset: yes 4 | timeCreated: 1455899196 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30ad88eff9806414483076ed45eb67f1 3 | folderAsset: yes 4 | timeCreated: 1455790837 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7ea5a218770df14895b81e3602e420f 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Controller.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bccec415c84794449bfdc9ed986d8527 3 | timeCreated: 1448272955 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/eyebrow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46609d690107fbb4e82c8bbcd7c71c24 3 | timeCreated: 1448229930 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials/outfit.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68bd1612418744d4a84dd9c9a48927b5 3 | timeCreated: 1448229930 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b199bd27b00be424886871cda61e1317 3 | folderAsset: yes 4 | timeCreated: 1455881224 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Skeleton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5211d9648ac0045ab9331f3741d37341 3 | folderAsset: yes 4 | timeCreated: 1448273135 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Skeleton/Controller.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a4d9a1f1b7d94409b6ad405ac140c88 3 | timeCreated: 1448273764 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Skeleton/Materials/skeleton.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ea0efa99b8aead4d9474f57d259c96b 3 | timeCreated: 1448222903 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8bc3aedaea97f34996960967bd1e28a 3 | folderAsset: yes 4 | timeCreated: 1447751943 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Campfire/Materials/campfire.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 001cc7b4948b8314dad51f2c4af2c840 3 | timeCreated: 1448925365 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Fence.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c27bf50d5dbfe4842bfc85f0a1441cff 3 | folderAsset: yes 4 | timeCreated: 1449056806 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Temple/Materials/fullMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6977b51bb5c2546b98b7e6281f4d45fe 3 | timeCreated: 1482796908 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Tent.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34c2b5e54cc164846aab8e46b191fbd8 3 | folderAsset: yes 4 | timeCreated: 1449056822 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Bow/Materials/white.archerbow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d08d9dcb450a44df9b76c44555c61e2b 3 | timeCreated: 1455880721 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Cleaver.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8031fcbc6c974ef79f6ed9d89b37723 3 | folderAsset: yes 4 | timeCreated: 1449056969 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Projectiles/Arrow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5413ff500955d4553abd90c21d07406f 3 | folderAsset: yes 4 | timeCreated: 1455880721 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2f194aa907f34c16898d8618d6a614c 3 | folderAsset: yes 4 | timeCreated: 1486237096 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Entities/Npcs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36f878d9a61b442d19631c125d15dc67 3 | folderAsset: yes 4 | timeCreated: 1455538042 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Entities/Players.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65fede73c65e64585808f82e1620541a 3 | folderAsset: yes 4 | timeCreated: 1455538055 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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/uMMORPG/Scenes/World.unity 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c04a867c41990cb44b46672730a8e63f 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11fa60a4f5bdba144a008a674f32eb19 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 244e48ea2b590df4eb7841878685db1e 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7fd744af0c01c94c9c84cc342423458 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fa688219e8c82344b3714e4e5781647 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Prototyping/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec897f9ee2210c749ad1898ea59326f9 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12e67224f43c840b9afc93d818bcb0e0 3 | folderAsset: yes 4 | timeCreated: 1475525178 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dabd2928596546e9972c0dd9eb63180 3 | folderAsset: yes 4 | timeCreated: 1449056858 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Campfire.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85f12598ee2334e1190e45eb2c66ec37 3 | folderAsset: yes 4 | timeCreated: 1449056777 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Temple.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9df3577b6c0c84895989244d63d32b58 3 | folderAsset: yes 4 | timeCreated: 1483814980 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Bow/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce35e2e5c942e4ccc9a1ab88b69f9b48 3 | folderAsset: yes 4 | timeCreated: 1455880721 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Shield/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa057b7bc86a340e9813f64feb0b41e2 3 | folderAsset: yes 4 | timeCreated: 1449056992 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Sword/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11d3d2a5f6a2e4a3493c86be8c07ef4c 3 | folderAsset: yes 4 | timeCreated: 1449056994 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Projectiles/Arrow/Materials/white.archerbow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f593ea08996894c03a074d664f6312d7 3 | timeCreated: 1455880721 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_android_x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1cfb096109584e58810b54a80b83079 3 | folderAsset: yes 4 | timeCreated: 1486122390 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Prefabs/Entities/Monsters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 105e37b5b4add451c930ab8cbcef3464 3 | folderAsset: yes 4 | timeCreated: 1455538050 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 628c4c973f12f4ae5b8e6c50610f891a 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15135e86e52ab4b038dcbd61d7549e9f 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9721ab373e27146389ae58af7f9ce3cb 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5bbfe17fd61a7f45ad1932a5dd14b56 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7795aea484b54afbb2011addaa251af 3 | folderAsset: yes 4 | timeCreated: 1448284211 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Archer/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f12d67c5ffc672498ccd9a815fcdd64 3 | folderAsset: yes 4 | timeCreated: 1455667045 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Skeleton/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f8bb7282c578604fb3de4c84df5ccc2 3 | folderAsset: yes 4 | timeCreated: 1448222903 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Warrior/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4faf73830ededef4e8402390f94a60d8 3 | folderAsset: yes 4 | timeCreated: 1447378634 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Fence/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d66901a8f9c1d430481aa94a5ba3a216 3 | folderAsset: yes 4 | timeCreated: 1449056896 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Tent/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da09bb16018dc46feb7a17043249a126 3 | folderAsset: yes 4 | timeCreated: 1449171051 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Items/Cleaver/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aca646fa8b24e412e8681ce8e8822dd3 3 | folderAsset: yes 4 | timeCreated: 1449056987 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Projectiles/Arrow/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed494b2f633d74ac4874ef820368a8b4 3 | folderAsset: yes 4 | timeCreated: 1455880721 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_android_arm-v7a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 074ff7804e23d4ef89d2d1425c44200a 3 | folderAsset: yes 4 | timeCreated: 1486124183 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/DestroyAfter.cs: -------------------------------------------------------------------------------- 1 | // Destroys the GameObject after a certain time. 2 | using UnityEngine; 3 | 4 | public class DestroyAfter : MonoBehaviour { 5 | public float time = 1; 6 | 7 | void Start() { 8 | Destroy(gameObject, time); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/ItemDropChance.cs: -------------------------------------------------------------------------------- 1 | // Defines the drop chance of an item for monster loot generation. 2 | using UnityEngine; 3 | 4 | [System.Serializable] 5 | public class ItemDropChance { 6 | public ItemTemplate template; 7 | [Range(0,1)] public float probability; 8 | } 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UITextCopyName.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | 4 | public class UITextCopyName : MonoBehaviour { 5 | public GameObject source; 6 | 7 | void Update() { 8 | GetComponent().text = source.name; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Entities/Alchemist/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b312a3aa659acc4488f0936b5aee1b9 3 | folderAsset: yes 4 | timeCreated: 1448229929 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Campfire/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ba1ce085f8b6443495b5545a11c434a 3 | folderAsset: yes 4 | timeCreated: 1449056886 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Models/Environment/Temple/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a0027f38e6834da7961e52134aad930 3 | folderAsset: yes 4 | timeCreated: 1483814980 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98f48093c79e1de4aad538371abbe607 3 | folderAsset: yes 4 | timeCreated: 1448284212 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile_LOD2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72624f4160deb402e9b3dcda650e62ea 3 | timeCreated: 1467295432 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Items [keep them all in one folder, use no subfolders]/White Bow.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bd6e781df1ea469fbb781d55c5c35bc 3 | timeCreated: 1455880216 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Items [keep them all in one folder, use no subfolders]/Dark Sword.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9497ecb23606cba489afb7872d39503e 3 | timeCreated: 1447526774 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Items [keep them all in one folder, use no subfolders]/Desert Cleaver.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6a203346a70840bd9b874dbca3c0274 3 | timeCreated: 1448275918 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Items [keep them all in one folder, use no subfolders]/Health Potion.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 957993ab40ff1a84686b0e5697670f68 3 | timeCreated: 1447526576 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Items [keep them all in one folder, use no subfolders]/Mana Potion.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a31f31354d1384939b3e8f6dab985c6f 3 | timeCreated: 1448966758 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Items [keep them all in one folder, use no subfolders]/Sun Shield.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f4923bb19cef86499a001746ff25093 3 | timeCreated: 1447526663 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Items [keep them all in one folder, use no subfolders]/Vigor Potion.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c32861daa71724810b495ed2ce5e5083 3 | timeCreated: 1484661145 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Recipes [keep them all in one folder, use no subfolders]/Vigor Potion.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed5675dea2ae641d89d3fff996611e2e 3 | timeCreated: 1484656019 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Scripts/ParticleSystemMultiplier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 039587c051912eb4ead9e58344c5f3ce 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Items [keep them all in one folder, use no subfolders].meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09c05e473dd9c4543a05845c461818cd 3 | folderAsset: yes 4 | timeCreated: 1447527041 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Quests [keep them all in one folder, use no subfolders]/Beginners Journey.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ea6fa225f25c4bb7a3dd4166675a80b 3 | timeCreated: 1448879273 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Quests [keep them all in one folder, use no subfolders]/Find the Cleaver.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed60ac6cc5bf440dda9d829943d4ea77 3 | timeCreated: 1473170608 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/DefaultVelocity.cs: -------------------------------------------------------------------------------- 1 | // Sets the Rigidbody's velocity in Start(). 2 | using UnityEngine; 3 | 4 | public class DefaultVelocity : MonoBehaviour { 5 | public Vector3 velocity; 6 | 7 | void Start() { 8 | GetComponent().velocity = velocity; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/LOD0/Branches_0.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ec4682350a79406bb478d37d36d8611 3 | timeCreated: 1477390375 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/LOD0/Leaves_1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1221a742bc82344e69c706705e7f65e5 3 | timeCreated: 1477390375 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/LOD1/Branches_0.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f561da0e057b549a2aa14687a1846af9 3 | timeCreated: 1477390375 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/LOD1/Leaves_1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9255188d023314662b688cc9dbebb550 3 | timeCreated: 1477390375 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Quests [keep them all in one folder, use no subfolders].meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a98bd690f6763490cb83ecf06b61c700 3 | folderAsset: yes 4 | timeCreated: 1448878983 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Recipes [keep them all in one folder, use no subfolders].meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0c054072b0824d8d8380e24f5e6963c 3 | folderAsset: yes 4 | timeCreated: 1484656003 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d2a4cf4598e80f48a3b902218fb54d1 3 | folderAsset: yes 4 | timeCreated: 1448284212 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders]/Blessing.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93e6128dc419fdc4bba2efc03a0e71e7 3 | timeCreated: 1447527280 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders]/Murderer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b5cbb444f59445118f1394595cf91e8 3 | timeCreated: 1461179927 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders]/Offender.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a5c2136668ae4c67b7653b0406e4552 3 | timeCreated: 1461179902 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders]/Strong Hit.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f67958d587dae545becb748f51eba54 3 | timeCreated: 1447527195 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/LOD0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8806afc34270947939530b06a66639fe 3 | folderAsset: yes 4 | timeCreated: 1477390375 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/LOD1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8598c098ff64441648bbd228fc2da5e5 3 | folderAsset: yes 4 | timeCreated: 1477390375 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Standard Assets/Environment/SpeedTree/Broadleaf_modified/Broadleaf_Mobile Materials/LOD2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c0b1e62b5409f6468554bb2f297badc 3 | folderAsset: yes 4 | timeCreated: 1448284213 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders]/Health Aura.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0e3d862dcac54fc880465d7ef04cf93 3 | timeCreated: 1459513164 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders]/Precise Shot.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e151b938764a8408dae36b39d1f2bda9 3 | timeCreated: 1455707224 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIQuestSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UIQuestSlot : MonoBehaviour { 7 | public Text descriptionText; 8 | } 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders].meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f02814dee080dc4ea1120fc1a9a16bb 3 | folderAsset: yes 4 | timeCreated: 1447527061 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders]/Normal Attack (Archer).asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32e7a0da0f66245f496aa6fdc3c3f818 3 | timeCreated: 1455707006 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders]/Normal Attack (Skeleton).asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d0a4320519c546fc9453ab7d6ed40de 3 | timeCreated: 1466774303 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Skills, Buffs, Status Effects [keep them all in one folder, use no subfolders]/Normal Attack (Warrior).asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06cac184a3de3aa4aa96c5219bd6eb67 3 | timeCreated: 1447527108 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Chat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f98afe75dce041e7a2345a056f73328 3 | timeCreated: 1444983037 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Entity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4616b15e40b224de9a8189c26d7346a1 3 | timeCreated: 1444657165 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Item.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d8d630fb035f4c60b8b386fbe6ec778 3 | timeCreated: 1444553548 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Monster.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7c98275aaba14c3d8300d396cf2f47a 3 | timeCreated: 1444123788 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Npc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66a95139274a94348bdabd8bbd5d4f2a 3 | timeCreated: 1444123580 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Player.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 587ba4e2210854080997af9ebf15b816 3 | timeCreated: 1444124769 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Quest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41416ec93482e4574b157bc65f7bec6d 3 | timeCreated: 1448878992 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Skill.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df49746ee77ca4ade9b18725130645e8 3 | timeCreated: 1454850182 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a01741e96ba724d0a984000029bc0b65 3 | timeCreated: 1444120625 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/AggroArea.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7d7bfbedc0254f7ca514a28714032f5 3 | timeCreated: 1444657077 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/CameraMMO.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1416c792f89e14397ac8f1120d9df2b7 3 | timeCreated: 1444117085 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/CopyPosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79f6ff0ba1cbe42e6a312d40484d3d5b 3 | timeCreated: 1445337475 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Database.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da3cf03c51ae5478ba91e7318f7e6cc1 3 | timeCreated: 1455120252 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/DestroyAfter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cf35e50bda04410aa84dc71b7254f9d 3 | timeCreated: 1455560926 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b91d98dbab4514d1c817eadd848f045b 3 | timeCreated: 1450617275 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/FaceCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8154c0dfb012f4112aa32e81bd75189d 3 | timeCreated: 1456137536 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/ItemTemplate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ca52a2d0c310fc4ca4d26b3c6ed943a 3 | timeCreated: 1447526242 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NetworkName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c68a5308094a8c746b26bd483c618126 3 | timeCreated: 1446396655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NetworkTime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 491da1f13b9ae4462970902dfdbad397 3 | timeCreated: 1449414936 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/Projectile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dd25a4a38fc34334bf9d49a5fdf2f9b 3 | timeCreated: 1455898498 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIBuffs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d407288dbe864feda0a19ac6a428b72 3 | timeCreated: 1471111446 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIChat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6989a6eb2c8b44dddbfc6a6eb286ea45 3 | timeCreated: 1471108049 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UILogin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a015ce8f276b421bb92ec2360340c03 3 | timeCreated: 1471261726 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UILoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f152b9a8c73047ffb51d68f3535a668 3 | timeCreated: 1471112868 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIPopup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a0646f38facc499791c0a3d57a11d07 3 | timeCreated: 1471262835 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIQuests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a1a3b254b7ca47d0b49631ddccd27d8 3 | timeCreated: 1471111780 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UISkills.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1794c31702a0448e085ef766a2f2a273 3 | timeCreated: 1471110526 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UITarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9262e5f3d8204a78aac98758c3618e9 3 | timeCreated: 1471082675 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 864db3537ea3846309f7dc5368cc2e1a 3 | timeCreated: 1472502737 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc08bfbad5dc2432097f2d1200ef10c6 3 | timeCreated: 1453188639 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/DefaultVelocity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5366021fc8e4e4b51a0cb113b3237826 3 | timeCreated: 1456137249 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/EquipmentLocation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1faecc109a9d4497298fde2df342623d 3 | timeCreated: 1453396936 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/ItemDropChance.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c33d36ac88ac1249959e1f85d1525b9 3 | timeCreated: 1446371666 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NavmeshPathGizmo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8055b2c9f09c4a42bbe9d1613f0b3f1 3 | timeCreated: 1439989231 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NetworkManagerMMO.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 496dccc9ffea546b79bc600b67239364 3 | timeCreated: 1451823103 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NetworkMessages.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 357ee7636eca34850a83bab6b5fdc669 3 | timeCreated: 1450346194 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NpcQuestIndicator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7af33fbf1258b4cc58568ba638cc443e 3 | timeCreated: 1475854594 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/PlayerDndHandling.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32654d36ec192f24fa72afd41c1d0baf 3 | timeCreated: 1447678709 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/PlayerNameColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50d0ac6961fff4f76b3c7100d5e47c79 3 | timeCreated: 1461183034 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/QuestTemplate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 644f8f76e6ad54018a17405aa08191ee 3 | timeCreated: 1448879150 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/RecipeTemplate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e56c3572016bd405fbbd6a92834f581e 3 | timeCreated: 1484655741 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/SkillTemplate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86a8f8abd50882641946b6e97ea405f7 3 | timeCreated: 1447526361 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/TextMeshCopyName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69afecab6141443ca9b8e2eecbf555aa 3 | timeCreated: 1472503736 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/TextMeshCopyText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66189726d3bd3465fbfd1be9f85f5fc3 3 | timeCreated: 1472652027 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/TextMeshFadeAlpha.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9aae28265ff654416ae3ac18778304df 3 | timeCreated: 1472652293 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_OnGUI/GUIConsole.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed8ebece0e80d4caaa7b14e6afdb04f4 3 | timeCreated: 1472658802 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIBuffSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdf3a591cf3d8446dba8ea0f4ad3aba5 3 | timeCreated: 1486803960 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UICrafting.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb5499aa27c44431a8b4cc4920dd013f 3 | timeCreated: 1484601852 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIEquipment.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58b3383ce70dc47f0b0ccb5a1f1df376 3 | timeCreated: 1471110269 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIHealthMana.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33cfd595aad394fb8812c5c6603647b6 3 | timeCreated: 1471084260 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIInventory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cf10881d50ff45ec93655e548223b04 3 | timeCreated: 1471109859 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIItemMall.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e11a626ec1854463caa68aaba30ffe2e 3 | timeCreated: 1486391186 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UILootSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e89e08534a594c36a18f9200fdebc59 3 | timeCreated: 1486840677 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIMinimap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23cf491dd975e49278951454ecc80175 3 | timeCreated: 1471081540 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UINpcDialogue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e76bed78898c4f2f92820822a3ba8b0 3 | timeCreated: 1471112249 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UINpcQuests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70c8ab39afa9d4e33bed7501dd4e62fd 3 | timeCreated: 1471114789 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UINpcTrading.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e614034bc73674146993ff0bd10ead92 3 | timeCreated: 1471113527 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIQuestSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea831387a92f54b61ad5b5732e0a869e 3 | timeCreated: 1486892602 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIRespawn.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e98b4cf61d28c495d9341c72c0a2f2f7 3 | timeCreated: 1471108755 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIShortcuts.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 575c8304281ff4c99b82844640b19328 3 | timeCreated: 1471107335 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIShowToolTip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13476da72aeeb4ff1b41d4c7d33a01a1 3 | timeCreated: 1453138490 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UISkillSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6544297fb79024bacab300aa1b8ca02d 3 | timeCreated: 1486897534 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UISkillbar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70141d214634b48708cd6e91ffe0cd6b 3 | timeCreated: 1471111196 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NetworkNavMeshAgent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f9fea8bb6f9efa4d8485e22bf9a6645 3 | timeCreated: 1446200635 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/TextMeshCopyText.cs: -------------------------------------------------------------------------------- 1 | // Copy text from one text mesh to another (for shadows etc.) 2 | using UnityEngine; 3 | 4 | [RequireComponent(typeof(TextMesh))] 5 | public class TextMeshCopyText : MonoBehaviour { 6 | [SerializeField] TextMesh source; 7 | 8 | void Update () { 9 | GetComponent().text = source.text; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UICharacterInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a9570149daf443cab3bd45ff34446c3 3 | timeCreated: 1471084491 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIDragAndDropable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb999048c578448a49edc4c9cab34bd7 3 | timeCreated: 1453140694 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIEquipmentSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 564f89a167a0043bf9508bb3737dedfa 3 | timeCreated: 1486836503 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIExperienceBar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdfdd6e6bbd9745cbac2db2c3fe2b814 3 | timeCreated: 1471081983 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIInventorySlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ac7c5a6c4a8a4c4b9fd27555e6ad490 3 | timeCreated: 1486837867 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIItemMallSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 387aacdee3142459cb4cd4d7b97f4c79 3 | timeCreated: 1486839032 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIKeepInScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ec06a3b53fc64cab907adc0dd34f4d4 3 | timeCreated: 1453189008 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UINpcQuestSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 005b7e098bfe74fb084bbf254f9735ab 3 | timeCreated: 1486843050 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UINpcTradingSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 290db1b50410849259ae436361d62e71 3 | timeCreated: 1486902386 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIPlayerTrading.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b5bdaa1917334f39b20a26baa582bbc 3 | timeCreated: 1471116310 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UISkillbarSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af691bb4e91924c89bc0627f436ecbe1 3 | timeCreated: 1486892983 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UITextCopyName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c3a12fe2c63842a4ab297c29780ff3d 3 | timeCreated: 1460977877 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UICharacterCreation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88a97bb9e2cee4d41a691829fdcf2419 3 | timeCreated: 1471263554 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UICharacterSelection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc50cac6f9a354f5db256e68b456c541 3 | timeCreated: 1471263502 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIPlayerTradeRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0673e170bbde43e79a735ca613da377 3 | timeCreated: 1471115386 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIPlayerTradingSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c93cbf069d944839a5dacc38bedb18f 3 | timeCreated: 1486848557 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NetworkProximityCheckerCustom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9a5173f40271453ba1bcbce2f1b910c 3 | timeCreated: 1464181784 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UICharacterSelectionSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 030a4a2ce1a6740bd95d7a8c0ff82a52 3 | timeCreated: 1486905431 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UICraftingIngredientSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc2aa7adc9eab4a3d9e58fb6ae1407ee 3 | timeCreated: 1486833998 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UINpcQuestSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UINpcQuestSlot : MonoBehaviour { 7 | public Text descriptionText; 8 | public Button actionButton; 9 | } 10 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIBuffSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UIBuffSlot : MonoBehaviour { 7 | public Image image; 8 | public UIShowToolTip tooltip; 9 | public Slider slider; 10 | } 11 | -------------------------------------------------------------------------------- /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_SpatializerPlugin: 15 | m_DisableAudio: 0 16 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UINpcTradingSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UINpcTradingSlot : MonoBehaviour { 7 | public UIShowToolTip tooltip; 8 | public Button button; 9 | public Image image; 10 | } 11 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UICraftingIngredientSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UICraftingIngredientSlot : MonoBehaviour { 7 | public UIShowToolTip tooltip; 8 | public UIDragAndDropable dragAndDropable; 9 | public Image image; 10 | } 11 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UICharacterSelectionSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UICharacterSelectionSlot : MonoBehaviour { 7 | public Text nameText; 8 | public Image image; 9 | public Button selectButton; 10 | public Button deleteButton; 11 | } 12 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /[Ll]ibrary/ 2 | /[Tt]emp/ 3 | /[Oo]bj/ 4 | /[Bb]uild/ 5 | /[Bb]uilds/ 6 | /Assets/AssetStoreTools* 7 | 8 | # Autogenerated VS/MD solution and project files 9 | ExportedObj/ 10 | *.csproj 11 | *.unityproj 12 | *.sln 13 | *.suo 14 | *.tmp 15 | *.user 16 | *.userprefs 17 | *.pidb 18 | *.booproj 19 | *.svd 20 | 21 | 22 | # Unity3D generated meta files 23 | *.pidb.meta 24 | 25 | # Unity3D Generated File On Crash Reports 26 | sysinfo.txt 27 | 28 | # Builds 29 | *.apk 30 | *.unitypackage 31 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIItemMallSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UIItemMallSlot : MonoBehaviour { 7 | public UIShowToolTip tooltip; 8 | public Image image; 9 | public UIDragAndDropable dragAndDropable; 10 | public Text descriptionText; 11 | public Button unlockButton; 12 | } 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/TextMeshCopyName.cs: -------------------------------------------------------------------------------- 1 | // Copies a GameObject's name to the TextMesh's text. We use the Update method 2 | // because some GameObjects may change their name during the game, like players 3 | // renaming themself etc. 4 | using UnityEngine; 5 | 6 | [RequireComponent(typeof(TextMesh))] 7 | public class TextMeshCopyName : MonoBehaviour { 8 | [SerializeField] GameObject source; 9 | 10 | void Update() { 11 | GetComponent().text = source.name; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIEquipmentSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UIEquipmentSlot : MonoBehaviour { 7 | public UIShowToolTip tooltip; 8 | public UIDragAndDropable dragAndDropable; 9 | public Image image; 10 | public GameObject categoryOverlay; 11 | public Text categoryText; 12 | } 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIPlayerTradingSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UIPlayerTradingSlot : MonoBehaviour { 7 | public UIShowToolTip tooltip; 8 | public UIDragAndDropable dragAndDropable; 9 | public Image image; 10 | public GameObject amountOverlay; 11 | public Text amountText; 12 | } 13 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIInventorySlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UIInventorySlot : MonoBehaviour { 7 | public UIShowToolTip tooltip; 8 | public Button button; 9 | public UIDragAndDropable dragAndDropable; 10 | public Image image; 11 | public GameObject amountOverlay; 12 | public Text amountText; 13 | } 14 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/EquipmentLocation.cs: -------------------------------------------------------------------------------- 1 | // Used to find out where an equipped item should be shown in the 3D world. This 2 | // component can be attached to the shoes, hands, shoulders or head of the 3 | // player in the Hierarchy. The _acceptedCategory_ defines the item category 4 | // that is accepted in this slot. 5 | // 6 | // _Note: modify the equipment location's transform to mirror it if necessary._ 7 | using UnityEngine; 8 | 9 | public class EquipmentLocation : MonoBehaviour { 10 | public string acceptedCategory; 11 | } -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UILootSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UILootSlot : MonoBehaviour { 7 | public Button button; 8 | public UIShowToolTip tooltip; 9 | public UIDragAndDropable dragAndDropable; 10 | public Image image; 11 | public Text nameText; 12 | public GameObject amountOverlay; 13 | public Text amountText; 14 | } 15 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UISkillbarSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UISkillbarSlot : MonoBehaviour { 7 | public UIShowToolTip tooltip; 8 | public UIDragAndDropable dragAndDropable; 9 | public Image image; 10 | public Button button; 11 | public GameObject cooldownOverlay; 12 | public Text cooldownText; 13 | public Text hotkeyText; 14 | } 15 | -------------------------------------------------------------------------------- /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: 0 13 | m_SpritePackerPaddingPower: 1 14 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 15 | m_ProjectGenerationRootNamespace: 16 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-B.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bc4b5b49aea24776a70d05967e01f44 3 | timeCreated: 1475525179 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu 14 | fallbackFontReferences: [] 15 | customCharacters: 16 | fontRenderingMode: 0 17 | ascentCalculationMode: 1 18 | userData: 19 | assetBundleName: 20 | assetBundleVariant: 21 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-C.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25c510c0e29ec47ac9a4618ce5b08214 3 | timeCreated: 1475525179 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu Condensed 14 | fallbackFontReferences: [] 15 | customCharacters: 16 | fontRenderingMode: 0 17 | ascentCalculationMode: 1 18 | userData: 19 | assetBundleName: 20 | assetBundleVariant: 21 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-RI.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b9dae7c70c3a4c0bb258c9bee6f4519 3 | timeCreated: 1475525180 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu Mono 14 | fallbackFontReferences: [] 15 | customCharacters: 16 | fontRenderingMode: 0 17 | ascentCalculationMode: 1 18 | userData: 19 | assetBundleName: 20 | assetBundleVariant: 21 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/FaceCamera.cs: -------------------------------------------------------------------------------- 1 | // Useful for Text Meshes that should face the camera. 2 | // 3 | // In some cases there seems to be a Unity bug where the text meshes end up in 4 | // weird positions if it's not positioned at (0,0,0). In that case simply put it 5 | // into an empty GameObject and use that empty GameObject for positioning. 6 | using UnityEngine; 7 | 8 | public class FaceCamera : MonoBehaviour { 9 | // LateUpdate so that all camera updates are finished. 10 | void LateUpdate () { 11 | transform.forward = Camera.main.transform.forward; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UISkillSlot.cs: -------------------------------------------------------------------------------- 1 | // Attach to the prefab for easier component access by the UI Scripts. 2 | // Otherwise we would need slot.GetChild(0).GetComponentInChildren etc. 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UISkillSlot : MonoBehaviour { 7 | public UIShowToolTip tooltip; 8 | public UIDragAndDropable dragAndDropable; 9 | public Image image; 10 | public Button button; 11 | public GameObject cooldownOverlay; 12 | public Text cooldownText; 13 | public Text descriptionText; 14 | public Button learnButton; 15 | } 16 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/CopyPosition.cs: -------------------------------------------------------------------------------- 1 | // This component copies a Transform's position to automatically follow it, 2 | // which is useful for the camera. 3 | using UnityEngine; 4 | 5 | public class CopyPosition : MonoBehaviour { 6 | public bool x, y, z = false; 7 | public Transform target = null; 8 | 9 | void Update () { 10 | if (target) 11 | transform.position = new Vector3( 12 | (x ? target.position.x : transform.position.x), 13 | (y ? target.position.y : transform.position.y), 14 | (z ? target.position.z : transform.position.z)); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-MI.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c99bf8c83a704c29b44678fb2243dc3 3 | timeCreated: 1475525179 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: 0bc4b5b49aea24776a70d05967e01f44, type: 3} 16 | customCharacters: 17 | fontRenderingMode: 0 18 | ascentCalculationMode: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_common/System.Data.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7e947a0b28fb4f30ae4bfe7f526d4b2 3 | timeCreated: 1485005312 4 | licenseType: Store 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | Any: 13 | enabled: 1 14 | settings: {} 15 | Editor: 16 | enabled: 0 17 | settings: 18 | DefaultValueInitialized: true 19 | WindowsStoreApps: 20 | enabled: 0 21 | settings: 22 | CPU: AnyCPU 23 | userData: 24 | assetBundleName: 25 | assetBundleVariant: 26 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-BI.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2510ee775ae14437babefc3bf76ec3a 3 | timeCreated: 1475525181 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu Mono 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: 9b9dae7c70c3a4c0bb258c9bee6f4519, type: 3} 16 | customCharacters: 17 | fontRenderingMode: 0 18 | ascentCalculationMode: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Plugins/sqlite_common/Mono.Data.Sqlite.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b628961035a054568a95e22db38223a0 3 | timeCreated: 1485004466 4 | licenseType: Store 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | Any: 13 | enabled: 1 14 | settings: {} 15 | Editor: 16 | enabled: 0 17 | settings: 18 | DefaultValueInitialized: true 19 | WindowsStoreApps: 20 | enabled: 0 21 | settings: 22 | CPU: AnyCPU 23 | userData: 24 | assetBundleName: 25 | assetBundleVariant: 26 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIExperienceBar.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | 4 | public class UIExperienceBar : MonoBehaviour { 5 | [SerializeField] GameObject panel; 6 | [SerializeField] Slider slider; 7 | [SerializeField] Text statusText; 8 | 9 | void Update() { 10 | var player = Utils.ClientLocalPlayer(); 11 | panel.SetActive(player != null); // hide while not in the game world 12 | if (!player) return; 13 | 14 | slider.value = player.ExperiencePercent(); 15 | statusText.text = "Lv." + player.level + " (" + (player.ExperiencePercent() * 100).ToString("F2") + "%)"; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Textures/MinimapTexture.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: MinimapTexture 9 | m_ImageContentsHash: 10 | serializedVersion: 2 11 | Hash: 00000000000000000000000000000000 12 | m_Width: 128 13 | m_Height: 128 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: 0 22 | m_Aniso: 0 23 | m_MipBias: 0 24 | m_WrapMode: 1 25 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIPopup.cs: -------------------------------------------------------------------------------- 1 | // Note: this script has to be on an always-active UI parent, so that we can 2 | // always find it from other code. (GameObject.Find doesn't find inactive ones) 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UIPopup : MonoBehaviour { 7 | [SerializeField] GameObject panel; 8 | [SerializeField] Text messageText; 9 | 10 | public void Show(string message) { 11 | // append error if visible, set otherwise. then show it. 12 | if (panel.activeSelf) messageText.text += ";\n" + message; 13 | else messageText.text = message; 14 | panel.SetActive(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIRespawn.cs: -------------------------------------------------------------------------------- 1 | // Note: this script has to be on an always-active UI parent, so that we can 2 | // always find it from other code. (GameObject.Find doesn't find inactive ones) 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | 6 | public class UIRespawn : MonoBehaviour { 7 | [SerializeField] GameObject panel; 8 | [SerializeField] Button button; 9 | 10 | void Update() { 11 | var player = Utils.ClientLocalPlayer(); 12 | if (!player) return; 13 | 14 | // visible while player is dead 15 | panel.SetActive(player.health == 0); 16 | button.onClick.SetListener(() => { player.CmdRespawn(); }); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /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 | serializedVersion: 2 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_SolverIterationCount: 6 13 | m_QueriesHitTriggers: 1 14 | m_EnableAdaptiveForce: 0 15 | m_LayerCollisionMatrix: fff1fffffff1fffffbf1fffffffffffffff1fffffff1fffffffffffffffffffffff8ffffc8f0ffffc8f0ffffc8f1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 16 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-BI.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406992315ba8f4236b4fff66d45b34d4 3 | timeCreated: 1475525180 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: 0bc4b5b49aea24776a70d05967e01f44, type: 3} 16 | - {fileID: 12800000, guid: 0c99bf8c83a704c29b44678fb2243dc3, type: 3} 17 | customCharacters: 18 | fontRenderingMode: 0 19 | ascentCalculationMode: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-B.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9ea8a3e9824a4b48b0cdd3a35cea889 3 | timeCreated: 1475525181 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu Mono 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: e2510ee775ae14437babefc3bf76ec3a, type: 3} 16 | - {fileID: 12800000, guid: 9b9dae7c70c3a4c0bb258c9bee6f4519, type: 3} 17 | customCharacters: 18 | fontRenderingMode: 0 19 | ascentCalculationMode: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NpcQuestIndicator.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Linq; 3 | 4 | [RequireComponent(typeof(TextMesh))] 5 | public class NpcQuestIndicator : MonoBehaviour { 6 | [SerializeField] Npc owner; 7 | 8 | void Update() { 9 | var player = Utils.ClientLocalPlayer(); 10 | if (!player) return; 11 | 12 | // can complete = !; can start = ?; nothing = "" 13 | if (owner.quests.Any(q => player.CanCompleteQuest(q.name))) 14 | GetComponent().text = "!"; 15 | else if (owner.quests.Any(q => player.CanStartQuest(q))) 16 | GetComponent().text = "?"; 17 | else 18 | GetComponent().text = ""; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/README.txt: -------------------------------------------------------------------------------- 1 | ---------------------- 2 | Ubuntu Font Family 3 | ====================== 4 | 5 | The Ubuntu Font Family are a set of matching new libre/open fonts in 6 | development during 2010--2011. And with further expansion work and 7 | bug fixing during 2015. The development is being funded by 8 | Canonical Ltd on behalf the wider Free Software community and the 9 | Ubuntu project. The technical font design work and implementation is 10 | being undertaken by Dalton Maag. 11 | 12 | Both the final font Truetype/OpenType files and the design files used 13 | to produce the font family are distributed under an open licence and 14 | you are expressly encouraged to experiment, modify, share and improve. 15 | 16 | http://font.ubuntu.com/ 17 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-LI.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 489680549a04d4a02b9de88330cf8190 3 | timeCreated: 1475525180 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: 406992315ba8f4236b4fff66d45b34d4, type: 3} 16 | - {fileID: 12800000, guid: 0bc4b5b49aea24776a70d05967e01f44, type: 3} 17 | - {fileID: 12800000, guid: 0c99bf8c83a704c29b44678fb2243dc3, type: 3} 18 | customCharacters: 19 | fontRenderingMode: 0 20 | ascentCalculationMode: 1 21 | userData: 22 | assetBundleName: 23 | assetBundleVariant: 24 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/UbuntuMono-R.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbdfb42a01cb8440497b494dfb875091 3 | timeCreated: 1475525181 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu Mono 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: e2510ee775ae14437babefc3bf76ec3a, type: 3} 16 | - {fileID: 12800000, guid: 9b9dae7c70c3a4c0bb258c9bee6f4519, type: 3} 17 | - {fileID: 12800000, guid: f9ea8a3e9824a4b48b0cdd3a35cea889, type: 3} 18 | customCharacters: 19 | fontRenderingMode: 0 20 | ascentCalculationMode: 1 21 | userData: 22 | assetBundleName: 23 | assetBundleVariant: 24 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/_UI/UIHealthMana.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | 4 | public class UIHealthMana : MonoBehaviour { 5 | [SerializeField] GameObject panel; 6 | [SerializeField] Slider healthSlider; 7 | [SerializeField] Text healthStatus; 8 | [SerializeField] Slider manaSlider; 9 | [SerializeField] Text manaStatus; 10 | 11 | void Update() { 12 | var player = Utils.ClientLocalPlayer(); 13 | panel.SetActive(player != null); // hide while not in the game world 14 | if (!player) return; 15 | 16 | healthSlider.value = player.HealthPercent(); 17 | healthStatus.text = player.health + " / " + player.healthMax; 18 | 19 | manaSlider.value = player.ManaPercent(); 20 | manaStatus.text = player.mana + " / " + player.manaMax; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_TestMode: 0 8 | m_TestEventUrl: 9 | m_TestConfigUrl: 10 | CrashReportingSettings: 11 | m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes 12 | m_Enabled: 0 13 | m_CaptureEditorExceptions: 1 14 | UnityPurchasingSettings: 15 | m_Enabled: 0 16 | m_TestMode: 0 17 | UnityAnalyticsSettings: 18 | m_Enabled: 0 19 | m_InitializeOnStartup: 1 20 | m_TestMode: 0 21 | m_TestEventUrl: 22 | m_TestConfigUrl: 23 | UnityAdsSettings: 24 | m_Enabled: 0 25 | m_InitializeOnStartup: 1 26 | m_TestMode: 0 27 | m_EnabledPlatforms: 4294967295 28 | m_IosGameId: 29 | m_AndroidGameId: 30 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Resources/Recipes [keep them all in one folder, use no subfolders]/Vigor Potion.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_PrefabParentObject: {fileID: 0} 7 | m_PrefabInternal: {fileID: 0} 8 | m_GameObject: {fileID: 0} 9 | m_Enabled: 1 10 | m_EditorHideFlags: 0 11 | m_Script: {fileID: 11500000, guid: e56c3572016bd405fbbd6a92834f581e, type: 3} 12 | m_Name: Vigor Potion 13 | m_EditorClassIdentifier: 14 | ingredients: 15 | - {fileID: 11400000, guid: 957993ab40ff1a84686b0e5697670f68, type: 2} 16 | - {fileID: 11400000, guid: a31f31354d1384939b3e8f6dab985c6f, type: 2} 17 | - {fileID: 0} 18 | - {fileID: 0} 19 | - {fileID: 0} 20 | - {fileID: 0} 21 | result: {fileID: 11400000, guid: c32861daa71724810b495ed2ce5e5083, type: 2} 22 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-RI.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f828b558f3674f3aafe2eba38656ec0 3 | timeCreated: 1475525180 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: 406992315ba8f4236b4fff66d45b34d4, type: 3} 16 | - {fileID: 12800000, guid: 489680549a04d4a02b9de88330cf8190, type: 3} 17 | - {fileID: 12800000, guid: 0bc4b5b49aea24776a70d05967e01f44, type: 3} 18 | - {fileID: 12800000, guid: 0c99bf8c83a704c29b44678fb2243dc3, type: 3} 19 | customCharacters: 20 | fontRenderingMode: 0 21 | ascentCalculationMode: 1 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /Assets/Standard Assets/ParticleSystems/Scripts/ParticleSystemMultiplier.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | namespace UnityStandardAssets.Effects 5 | { 6 | public class ParticleSystemMultiplier : MonoBehaviour 7 | { 8 | // a simple script to scale the size, speed and lifetime of a particle system 9 | 10 | public float multiplier = 1; 11 | 12 | 13 | private void Start() 14 | { 15 | var systems = GetComponentsInChildren(); 16 | foreach (ParticleSystem system in systems) 17 | { 18 | system.startSize *= multiplier; 19 | system.startSpeed *= multiplier; 20 | system.startLifetime *= Mathf.Lerp(multiplier, 1, 0.5f); 21 | system.Clear(); 22 | system.Play(); 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/PlayerNameColor.cs: -------------------------------------------------------------------------------- 1 | // Colors the name overlay in case of offender/murderer status. 2 | using UnityEngine; 3 | 4 | [RequireComponent(typeof(TextMesh))] 5 | public class PlayerNameColor : MonoBehaviour { 6 | [SerializeField] Player owner; 7 | [SerializeField] Color defaultColor = Color.white; 8 | [SerializeField] Color offenderColor = Color.magenta; 9 | [SerializeField] Color murdererColor = Color.red; 10 | 11 | void Update() { 12 | // note: murderer has higher priority (a player can be a murderer and an 13 | // offender at the same time) 14 | if (owner.IsMurderer()) 15 | GetComponent().color = murdererColor; 16 | else if (owner.IsOffender()) 17 | GetComponent().color = offenderColor; 18 | else 19 | GetComponent().color = defaultColor; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/TextMeshFadeAlpha.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | [RequireComponent(typeof(TextMesh))] 4 | public class TextMeshFadeAlpha : MonoBehaviour { 5 | [SerializeField] float delay = 0; 6 | [SerializeField] float duration = 1; 7 | float perSecond = 0; 8 | float startTime; 9 | 10 | void Start() { 11 | // calculate by how much to fade per second 12 | perSecond = GetComponent().color.a / duration; 13 | 14 | // calculate start time 15 | startTime = Time.time + delay; 16 | } 17 | 18 | void Update() { 19 | if (Time.time >= startTime) { 20 | // fade all text meshes (in children too in case of shadows etc.) 21 | var col = GetComponent().color; 22 | col.a -= perSecond * Time.deltaTime; 23 | GetComponent().color = col; 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /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 | - Monster 8 | - MinimapCamera 9 | - Fire 10 | - InventorySlot 11 | - EquipmentSlot 12 | - TrashSlot 13 | - SkillsSlot 14 | - SkillbarSlot 15 | - DragAndDropHandler 16 | - LootSlot 17 | - NpcSellSlot 18 | - TradingSlot 19 | - Npc 20 | - CraftingIngredientSlot 21 | - CraftingResultSlot 22 | layers: 23 | - Default 24 | - TransparentFX 25 | - Ignore Raycast 26 | - 27 | - Water 28 | - UI 29 | - 30 | - 31 | - Player 32 | - Monster 33 | - Npc 34 | - AggroArea 35 | - 36 | - 37 | - 38 | - 39 | - 40 | - 41 | - 42 | - 43 | - 44 | - 45 | - 46 | - 47 | - 48 | - 49 | - 50 | - 51 | - 52 | - 53 | - 54 | - 55 | m_SortingLayers: 56 | - name: Default 57 | uniqueID: 0 58 | locked: 0 59 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-L.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5760d043804544bfb59b26b6837ea11 3 | timeCreated: 1475525181 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: 406992315ba8f4236b4fff66d45b34d4, type: 3} 16 | - {fileID: 12800000, guid: 489680549a04d4a02b9de88330cf8190, type: 3} 17 | - {fileID: 12800000, guid: 0bc4b5b49aea24776a70d05967e01f44, type: 3} 18 | - {fileID: 12800000, guid: 4f828b558f3674f3aafe2eba38656ec0, type: 3} 19 | - {fileID: 12800000, guid: 0c99bf8c83a704c29b44678fb2243dc3, type: 3} 20 | customCharacters: 21 | fontRenderingMode: 0 22 | ascentCalculationMode: 1 23 | userData: 24 | assetBundleName: 25 | assetBundleVariant: 26 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/NavmeshPathGizmo.cs: -------------------------------------------------------------------------------- 1 | // Draws the agent's path as Gizmo. 2 | using UnityEngine; 3 | #if UNITY_5_5_OR_NEWER // for people that didn't upgrade to 5.5. yet 4 | using UnityEngine.AI; 5 | #endif 6 | 7 | [RequireComponent(typeof(NavMeshAgent))] 8 | public class NavmeshPathGizmo : MonoBehaviour { 9 | 10 | void OnDrawGizmos() { 11 | var agent = GetComponent(); 12 | var path = agent.path; 13 | 14 | // color depends on status 15 | Color c = Color.white; 16 | switch (path.status) { 17 | case NavMeshPathStatus.PathComplete: c = Color.white; break; 18 | case NavMeshPathStatus.PathInvalid: c = Color.red; break; 19 | case NavMeshPathStatus.PathPartial: c = Color.yellow; break; 20 | } 21 | 22 | // draw the path 23 | for (int i = 1; i < path.corners.Length; ++i) 24 | Debug.DrawLine(path.corners[i-1], path.corners[i], c); 25 | } 26 | } -------------------------------------------------------------------------------- /Assets/uMMORPG/Scripts/AggroArea.cs: -------------------------------------------------------------------------------- 1 | // Catches the Aggro Sphere's OnTrigger functions and forwards them to the 2 | // Entity. Make sure that the aggro area's layer is IgnoreRaycast, so that 3 | // clicking on the area won't select the entity. 4 | // 5 | // Note that a player's collider might be on the pelvis for animation reasons, 6 | // so we need to use GetComponentInParent to find the Entity script. 7 | using UnityEngine; 8 | 9 | [RequireComponent(typeof(SphereCollider))] // aggro area trigger 10 | public class AggroArea : MonoBehaviour { 11 | [SerializeField] Entity owner; // set in the inspector 12 | 13 | // same as OnTriggerStay 14 | void OnTriggerEnter(Collider co) { 15 | var entity = co.GetComponentInParent(); 16 | if (entity) owner.OnAggro(entity); 17 | } 18 | 19 | void OnTriggerStay(Collider co) { 20 | var entity = co.GetComponentInParent(); 21 | if (entity) owner.OnAggro(entity); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/CONTRIBUTING.txt: -------------------------------------------------------------------------------- 1 | The Ubuntu Font Family is very long-term endeavour, and the first time 2 | that a professionally-designed font has been funded specifically with 3 | the intent of being an on-going community expanded project: 4 | 5 | http://font.ubuntu.com/ 6 | 7 | Development of the Ubuntu Font Family is undertaken on Launchpad: 8 | 9 | http://launchpad.net/ubuntu-font-family/ 10 | 11 | and this is where milestones, bug management and releases are handled. 12 | 13 | Contributions are welcomed. Your work will be used on millions of 14 | computers every single day! Following the initial bootstrapping of 15 | Latin, Cyrillic, Greek, Arabic and Hebrew expansion will be undertaken 16 | by font designers from the font design and Ubuntu communities. 17 | 18 | To ensure that the Ubuntu Font Family can be re-licensed to future 19 | widely-used libre font licences, copyright assignment is being required: 20 | 21 | https://launchpad.net/~uff-contributors 22 | -------------------------------------------------------------------------------- /Assets/uMMORPG/Fonts/ubuntu-font-family-0.83/Ubuntu-M.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfe094c5296c746dd96f7515be4410db 3 | timeCreated: 1475525181 4 | licenseType: Store 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontNames: 13 | - Ubuntu 14 | fallbackFontReferences: 15 | - {fileID: 12800000, guid: 406992315ba8f4236b4fff66d45b34d4, type: 3} 16 | - {fileID: 12800000, guid: b5760d043804544bfb59b26b6837ea11, type: 3} 17 | - {fileID: 12800000, guid: 489680549a04d4a02b9de88330cf8190, type: 3} 18 | - {fileID: 12800000, guid: 0bc4b5b49aea24776a70d05967e01f44, type: 3} 19 | - {fileID: 12800000, guid: 4f828b558f3674f3aafe2eba38656ec0, type: 3} 20 | - {fileID: 12800000, guid: 0c99bf8c83a704c29b44678fb2243dc3, type: 3} 21 | customCharacters: 22 | fontRenderingMode: 0 23 | ascentCalculationMode: 1 24 | userData: 25 | assetBundleName: 26 | assetBundleVariant: 27 | --------------------------------------------------------------------------------