├── LICENSE ├── MOBA_CSharp_Server ├── .gitignore ├── MOBA_CSharp_Server.sln └── MOBA_CSharp_Server │ ├── App.config │ ├── CSV │ ├── ExpTables │ │ ├── BigBang.csv │ │ ├── Core.csv │ │ ├── Default.csv │ │ ├── FireBall.csv │ │ ├── FireBreath.csv │ │ ├── Fountain.csv │ │ ├── HakureiReimu.csv │ │ ├── HatsuneMiku.csv │ │ ├── KizunaAI.csv │ │ ├── Meteor.csv │ │ ├── Minion.csv │ │ ├── Monster.csv │ │ ├── Serval.csv │ │ ├── SuperMonster.csv │ │ ├── Tower.csv │ │ ├── TowerBullet.csv │ │ ├── UltraMonster.csv │ │ └── Yukikaze.csv │ └── Items.csv │ ├── ENet-CSharp.dll │ ├── Game │ ├── CSVReader │ │ ├── CSVReader.cs │ │ ├── CSVReaderEntity.cs │ │ └── ItemTable.cs │ ├── DataReader │ │ └── DataReaderEntity.cs │ ├── Enum │ │ ├── AnimationType.cs │ │ ├── BoolStatus.cs │ │ ├── CastType.cs │ │ ├── CombatAttribute.cs │ │ ├── CombatType.cs │ │ ├── FloatStatus.cs │ │ ├── Priorities │ │ │ ├── AnimationStatusPriority.cs │ │ │ ├── BoolStatusPriority.cs │ │ │ └── VisionStatusPriority.cs │ │ ├── Team.cs │ │ └── UnitType.cs │ ├── Json │ │ ├── BushInfo.cs │ │ ├── CircleInfo.cs │ │ ├── CoreInfo.cs │ │ ├── EdgeInfo.cs │ │ ├── MapInfo.cs │ │ ├── MinionRelayPointInfo.cs │ │ ├── MonsterInfo.cs │ │ ├── SpawnInfo.cs │ │ └── TowerInfo.cs │ ├── MsgPack │ │ ├── ActorObj.cs │ │ ├── BuildingObj.cs │ │ ├── CastObj.cs │ │ ├── ChampionObj.cs │ │ ├── ChangeObj.cs │ │ ├── ClientObj.cs │ │ ├── CombatObj.cs │ │ ├── IGetAnimInfo.cs │ │ ├── IGetUnitInfo.cs │ │ ├── LobbyObj.cs │ │ ├── MsgObj.cs │ │ ├── PlayerObj.cs │ │ ├── SelectObj.cs │ │ ├── SnapshotObj.cs │ │ ├── UnitObj.cs │ │ ├── Vector2Obj.cs │ │ └── Vector3Obj.cs │ ├── Network │ │ ├── GameClient.cs │ │ └── NetworkEntity.cs │ ├── Pathfinding │ │ └── PathfindingEntity.cs │ ├── Physics │ │ └── PhysicsEntity.cs │ ├── RootEntity.cs │ ├── Unit │ │ ├── Actors │ │ │ ├── Actor.cs │ │ │ ├── AreaOfEffect.cs │ │ │ ├── BigBang.cs │ │ │ ├── Bullet.cs │ │ │ ├── Cone.cs │ │ │ ├── EarthShatter.cs │ │ │ ├── PoisonGas.cs │ │ │ └── TowerBullet.cs │ │ ├── Buildings │ │ │ ├── Building.cs │ │ │ ├── Core.cs │ │ │ ├── Fountain.cs │ │ │ └── Tower.cs │ │ ├── Characters │ │ │ ├── Champions │ │ │ │ └── Champion.cs │ │ │ ├── Character.cs │ │ │ ├── Minion.cs │ │ │ └── Monster.cs │ │ ├── DamageHistory.cs │ │ ├── ItemFactory.cs │ │ ├── SkillFactory.cs │ │ ├── Unit.cs │ │ ├── UnitFactory.cs │ │ └── Utilities.cs │ ├── UnitComponent │ │ ├── Combat │ │ │ ├── Abilities │ │ │ │ ├── Ability.cs │ │ │ │ ├── Attack.cs │ │ │ │ ├── ImmediateCircle.cs │ │ │ │ ├── ImmediateCone.cs │ │ │ │ ├── ImmediateDirection.cs │ │ │ │ ├── Move.cs │ │ │ │ ├── Recall.cs │ │ │ │ └── Skill.cs │ │ │ ├── AnimParam.cs │ │ │ ├── BoolParam.cs │ │ │ ├── Combat.cs │ │ │ ├── Effects │ │ │ │ ├── Effect.cs │ │ │ │ ├── ExpTable.cs │ │ │ │ ├── Eye.cs │ │ │ │ ├── OnBase.cs │ │ │ │ ├── Poison.cs │ │ │ │ ├── Sight.cs │ │ │ │ ├── Slow.cs │ │ │ │ ├── Stun.cs │ │ │ │ ├── UnitStatus.cs │ │ │ │ └── Untargetable.cs │ │ │ ├── FloatParam.cs │ │ │ ├── Items │ │ │ │ ├── Item.cs │ │ │ │ ├── Katana.cs │ │ │ │ ├── Potion.cs │ │ │ │ ├── RegenArmor.cs │ │ │ │ ├── RegenPierce.cs │ │ │ │ ├── SpecialBoot.cs │ │ │ │ └── SpecialShield.cs │ │ │ ├── Status.cs │ │ │ └── VisionParam.cs │ │ ├── Transform.cs │ │ └── UnitComponent.cs │ └── World │ │ └── WorldEntity.cs │ ├── Library │ ├── DataReader │ │ ├── YAMLObject.cs │ │ └── YAMLReader.cs │ ├── ECS │ │ └── Entity.cs │ ├── Network │ │ ├── MessageType.cs │ │ └── ServerNetwork.cs │ ├── Pathfinding │ │ └── NavMeshPathfinder.cs │ └── Physics │ │ ├── BodyWrapper.cs │ │ ├── NoCollisionBody.cs │ │ └── VPhysics.cs │ ├── MOBA_CSharp_Server.csproj │ ├── Map │ ├── map.json │ └── map.snj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SharpNav.dll │ ├── VelcroPhysics.dll │ ├── YAML │ ├── Combats │ │ ├── Attack.yml │ │ ├── BigBang.yml │ │ ├── Default.yml │ │ ├── EarthShatter.yml │ │ ├── Eye.yml │ │ ├── FireBall.yml │ │ ├── FireBreath.yml │ │ ├── Katana.yml │ │ ├── Meteor.yml │ │ ├── Move.yml │ │ ├── OnBase.yml │ │ ├── Poison.yml │ │ ├── PoisonGas.yml │ │ ├── Potion.yml │ │ ├── PressurisedSteam.yml │ │ ├── Recall.yml │ │ ├── RegenArmor.yml │ │ ├── RegenPierce.yml │ │ ├── Sight.yml │ │ ├── Slow.yml │ │ ├── SpecialBoot.yml │ │ ├── SpecialShield.yml │ │ ├── Stun.yml │ │ ├── UnitStatus.yml │ │ └── Untargetable.yml │ ├── ServerConfig.yml │ └── Units │ │ ├── Core.yml │ │ ├── Default.yml │ │ ├── FireBall.yml │ │ ├── FireBreath.yml │ │ ├── Fountain.yml │ │ ├── HakureiReimu.yml │ │ ├── HatsuneMiku.yml │ │ ├── KizunaAI.yml │ │ ├── Meteor.yml │ │ ├── Minion.yml │ │ ├── Monster.yml │ │ ├── Serval.yml │ │ ├── Tower.yml │ │ ├── TowerBullet.yml │ │ └── Yukikaze.yml │ ├── enet.dll │ ├── enet.dylib │ ├── libenet.so │ └── packages.config ├── MOBA_CSharp_Unity_Client ├── .gitignore ├── Assets │ ├── Animation.meta │ ├── Animation │ │ ├── Empty.anim │ │ ├── Empty.anim.meta │ │ ├── SF Button.controller │ │ ├── SF Button.controller.meta │ │ ├── Standing_1H_Magic_Attack_02.anim │ │ ├── Standing_1H_Magic_Attack_02.anim.meta │ │ ├── Stunned.fbx │ │ ├── Stunned.fbx.meta │ │ ├── UnitAnimatorController.controller │ │ └── UnitAnimatorController.controller.meta │ ├── EffectExamples.meta │ ├── EffectExamples │ │ ├── Fire & Explosion Effects.meta │ │ ├── Fire & Explosion Effects │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── DebrisParticle.mat │ │ │ │ ├── DebrisParticle.mat.meta │ │ │ │ ├── Embers.mat │ │ │ │ ├── Embers.mat.meta │ │ │ │ ├── Explosion.mat │ │ │ │ ├── Explosion.mat.meta │ │ │ │ ├── ExplosionDistortion.mat │ │ │ │ ├── ExplosionDistortion.mat.meta │ │ │ │ ├── LargeFlame02.mat │ │ │ │ ├── LargeFlame02.mat.meta │ │ │ │ ├── MediumFlame03.mat │ │ │ │ ├── MediumFlame03.mat.meta │ │ │ │ ├── SmokeDark.mat │ │ │ │ ├── SmokeDark.mat.meta │ │ │ │ ├── fireball.mat │ │ │ │ └── fireball.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── BigExplosion.prefab │ │ │ │ ├── BigExplosion.prefab.meta │ │ │ │ ├── FireBall.prefab │ │ │ │ ├── FireBall.prefab.meta │ │ │ │ ├── FlameThrower.prefab │ │ │ │ ├── FlameThrower.prefab.meta │ │ │ │ ├── ParticlesLight.prefab │ │ │ │ ├── ParticlesLight.prefab.meta │ │ │ │ ├── WildFire.prefab │ │ │ │ └── WildFire.prefab.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Debris.png │ │ │ │ ├── Debris.png.meta │ │ │ │ ├── Explosion.tif │ │ │ │ ├── Explosion.tif.meta │ │ │ │ ├── ExplosionEmission.tif │ │ │ │ ├── ExplosionEmission.tif.meta │ │ │ │ ├── FireBallEmission.tif │ │ │ │ ├── FireBallEmission.tif.meta │ │ │ │ ├── Fireball.tif │ │ │ │ ├── Fireball.tif.meta │ │ │ │ ├── LargeFlame02.tif │ │ │ │ ├── LargeFlame02.tif.meta │ │ │ │ ├── MediumFlame03.tif │ │ │ │ ├── MediumFlame03.tif.meta │ │ │ │ ├── Ramp02.png │ │ │ │ ├── Ramp02.png.meta │ │ │ │ ├── Ramp03.png │ │ │ │ ├── Ramp03.png.meta │ │ │ │ ├── SmokePuff01.tif │ │ │ │ ├── SmokePuff01.tif.meta │ │ │ │ ├── SphereNormal.tif │ │ │ │ ├── SphereNormal.tif.meta │ │ │ │ ├── ramp01.png │ │ │ │ ├── ramp01.png.meta │ │ │ │ ├── shockwave.tif │ │ │ │ └── shockwave.tif.meta │ │ ├── Magic Effects.meta │ │ ├── Magic Effects │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── EarthCrack.mat │ │ │ │ ├── EarthCrack.mat.meta │ │ │ │ ├── Embers.mat │ │ │ │ ├── Embers.mat.meta │ │ │ │ ├── Fireball.mat │ │ │ │ ├── Fireball.mat.meta │ │ │ │ ├── RockDust.mat │ │ │ │ ├── RockDust.mat.meta │ │ │ │ ├── RockSpike.mat │ │ │ │ └── RockSpike.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── RockDebris.FBX │ │ │ │ ├── RockDebris.FBX.meta │ │ │ │ ├── RockSpike.FBX │ │ │ │ └── RockSpike.FBX.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── EarthShatter.prefab │ │ │ │ └── EarthShatter.prefab.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── EarthCrackAlbedo.tif │ │ │ │ ├── EarthCrackAlbedo.tif.meta │ │ │ │ ├── EarthCrackEmissive.tif │ │ │ │ ├── EarthCrackEmissive.tif.meta │ │ │ │ ├── EarthCrackNormal.tif │ │ │ │ ├── EarthCrackNormal.tif.meta │ │ │ │ ├── FireBallEmission.tif │ │ │ │ ├── FireBallEmission.tif.meta │ │ │ │ ├── Fireball.tif │ │ │ │ ├── Fireball.tif.meta │ │ │ │ ├── RockNormal.tga │ │ │ │ ├── RockNormal.tga.meta │ │ │ │ ├── RocksAlbedo.tga │ │ │ │ ├── RocksAlbedo.tga.meta │ │ │ │ ├── RocksAlbedoEmissive.tif │ │ │ │ ├── RocksAlbedoEmissive.tif.meta │ │ │ │ ├── RocksSpecGloss.tga │ │ │ │ ├── RocksSpecGloss.tga.meta │ │ │ │ ├── SmokePuff02.png │ │ │ │ └── SmokePuff02.png.meta │ │ ├── Smoke & Steam Effects.meta │ │ └── Smoke & Steam Effects │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── SmokeySteam01.mat │ │ │ ├── SmokeySteam01.mat.meta │ │ │ ├── SmokeySteam02.mat │ │ │ ├── SmokeySteam02.mat.meta │ │ │ ├── wispySmoke.mat │ │ │ └── wispySmoke.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── PoisonGas.prefab │ │ │ ├── PoisonGas.prefab.meta │ │ │ ├── PressurisedSteam.prefab │ │ │ └── PressurisedSteam.prefab.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ ├── smokeysteam.tif │ │ │ ├── smokeysteam.tif.meta │ │ │ ├── wispySmoke.tif │ │ │ └── wispySmoke.tif.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── Jupiter.meta │ │ └── Jupiter │ │ │ ├── Jupiter.ttf │ │ │ └── Jupiter.ttf.meta │ ├── Materials.meta │ ├── Materials │ │ ├── BigBang.mat │ │ ├── BigBang.mat.meta │ │ ├── Bush.mat │ │ ├── Bush.mat.meta │ │ ├── FireBall.mat │ │ ├── FireBall.mat.meta │ │ ├── Grayscale.mat │ │ ├── Grayscale.mat.meta │ │ ├── Ground.mat │ │ ├── Ground.mat.meta │ │ ├── TowerBullet.mat │ │ └── TowerBullet.mat.meta │ ├── PNG.meta │ ├── PNG │ │ ├── AttackIcon.png │ │ ├── AttackIcon.png.meta │ │ ├── Avatars.meta │ │ ├── Avatars │ │ │ ├── default.png │ │ │ └── default.png.meta │ │ ├── CastIcon.png │ │ ├── CastIcon.png.meta │ │ ├── Coin.png │ │ ├── Coin.png.meta │ │ ├── Icons.meta │ │ ├── Icons │ │ │ ├── Beer Original.png │ │ │ ├── Beer Original.png.meta │ │ │ ├── Blade Staff Mod 1.png │ │ │ ├── Blade Staff Mod 1.png.meta │ │ │ ├── Blade Staff Mod 2.png │ │ │ ├── Blade Staff Mod 2.png.meta │ │ │ ├── Blade Staff Mod 3.png │ │ │ ├── Blade Staff Mod 3.png.meta │ │ │ ├── Blade Staff Mod 4.png │ │ │ ├── Blade Staff Mod 4.png.meta │ │ │ ├── Body 1 Original.png │ │ │ ├── Body 1 Original.png.meta │ │ │ ├── Body 2 Original.png │ │ │ ├── Body 2 Original.png.meta │ │ │ ├── Body 3 Mod 1.png │ │ │ ├── Body 3 Mod 1.png.meta │ │ │ ├── Body 3 Mod 2.png │ │ │ ├── Body 3 Mod 2.png.meta │ │ │ ├── Body 3 Mod 3.png │ │ │ ├── Body 3 Mod 3.png.meta │ │ │ ├── Body 3 Original.png │ │ │ ├── Body 3 Original.png.meta │ │ │ ├── Body Original.png │ │ │ ├── Body Original.png.meta │ │ │ ├── Boots 1 Mod 1.png │ │ │ ├── Boots 1 Mod 1.png.meta │ │ │ ├── Boots 1 Mod 4.png │ │ │ ├── Boots 1 Mod 4.png.meta │ │ │ ├── Boots 1 Mod 6.png │ │ │ ├── Boots 1 Mod 6.png.meta │ │ │ ├── Boots 1 Mod 7.png │ │ │ ├── Boots 1 Mod 7.png.meta │ │ │ ├── Boots 2 Mod 1.png │ │ │ ├── Boots 2 Mod 1.png.meta │ │ │ ├── Chest Mod 2.png │ │ │ ├── Chest Mod 2.png.meta │ │ │ ├── Fire Mod 1.png │ │ │ ├── Fire Mod 1.png.meta │ │ │ ├── Glove 4 Mod 1.png │ │ │ ├── Glove 4 Mod 1.png.meta │ │ │ ├── Glove 9 Mod 1.png │ │ │ ├── Glove 9 Mod 1.png.meta │ │ │ ├── Jug Mod 10.png │ │ │ ├── Jug Mod 10.png.meta │ │ │ ├── Necklet Mod 1.png │ │ │ ├── Necklet Mod 1.png.meta │ │ │ ├── Necklet Mod 2.png │ │ │ ├── Necklet Mod 2.png.meta │ │ │ ├── Necklet Mod 3.png │ │ │ ├── Necklet Mod 3.png.meta │ │ │ ├── Necklet Mod 4.png │ │ │ ├── Necklet Mod 4.png.meta │ │ │ ├── Pants 1 Original.png │ │ │ ├── Pants 1 Original.png.meta │ │ │ ├── Potion 3 Original.png │ │ │ ├── Potion 3 Original.png.meta │ │ │ ├── Shadow Mark Original.png │ │ │ ├── Shadow Mark Original.png.meta │ │ │ ├── Shadow Vortex Mod 1.png │ │ │ ├── Shadow Vortex Mod 1.png.meta │ │ │ ├── Shadow Vortex Mod 2.png │ │ │ ├── Shadow Vortex Mod 2.png.meta │ │ │ ├── Shadow Vortex Mod 3.png │ │ │ ├── Shadow Vortex Mod 3.png.meta │ │ │ ├── Shield Mod 1.png │ │ │ ├── Shield Mod 1.png.meta │ │ │ ├── Shield Mod 2.png │ │ │ ├── Shield Mod 2.png.meta │ │ │ ├── Shield Mod 3.png │ │ │ ├── Shield Mod 3.png.meta │ │ │ ├── Shield Mod 4.png │ │ │ ├── Shield Mod 4.png.meta │ │ │ ├── Sword 1 Mod 1.png │ │ │ ├── Sword 1 Mod 1.png.meta │ │ │ ├── Sword 1 Mod 5.png │ │ │ ├── Sword 1 Mod 5.png.meta │ │ │ ├── Sword 1 Mod 6.png │ │ │ ├── Sword 1 Mod 6.png.meta │ │ │ ├── Sword 1 Original.png │ │ │ ├── Sword 1 Original.png.meta │ │ │ ├── Vampire Teeth Mod 1.png │ │ │ ├── Vampire Teeth Mod 1.png.meta │ │ │ ├── Water Drop 1 Mod 2.png │ │ │ ├── Water Drop 1 Mod 2.png.meta │ │ │ ├── Water Drop Mod 1.png │ │ │ ├── Water Drop Mod 1.png.meta │ │ │ ├── Water Drop Mod 2.png │ │ │ ├── Water Drop Mod 2.png.meta │ │ │ ├── Water Drop Original.png │ │ │ └── Water Drop Original.png.meta │ │ ├── MoveIcon.png │ │ ├── MoveIcon.png.meta │ │ ├── NotReady.png │ │ ├── NotReady.png.meta │ │ ├── Ready.png │ │ ├── Ready.png.meta │ │ ├── Reload.png │ │ ├── Reload.png.meta │ │ ├── arrow.png │ │ ├── arrow.png.meta │ │ ├── circle.png │ │ ├── circle.png.meta │ │ ├── white_32x32.png │ │ └── white_32x32.png.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── CsvHelper.dll │ │ ├── CsvHelper.dll.meta │ │ ├── YamlDotNet.dll │ │ ├── YamlDotNet.dll.meta │ │ ├── x86_64.meta │ │ └── x86_64 │ │ │ ├── enet.bundle │ │ │ ├── enet.bundle.meta │ │ │ ├── enet.dll │ │ │ ├── enet.dll.meta │ │ │ ├── libenet.so │ │ │ └── libenet.so.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── BigBangExplosion.prefab │ │ ├── BigBangExplosion.prefab.meta │ │ ├── BigBangModel.prefab │ │ ├── BigBangModel.prefab.meta │ │ ├── BuyItemIcon.prefab │ │ ├── BuyItemIcon.prefab.meta │ │ ├── ChampionDot.prefab │ │ ├── ChampionDot.prefab.meta │ │ ├── ChampionHealthBar.prefab │ │ ├── ChampionHealthBar.prefab.meta │ │ ├── ChampionSelectIcon.prefab │ │ ├── ChampionSelectIcon.prefab.meta │ │ ├── ClientUINode.prefab │ │ ├── ClientUINode.prefab.meta │ │ ├── CoreModel.prefab │ │ ├── CoreModel.prefab.meta │ │ ├── EarthShatterModel.prefab │ │ ├── EarthShatterModel.prefab.meta │ │ ├── EthanModel.prefab │ │ ├── EthanModel.prefab.meta │ │ ├── FireBallModel.prefab │ │ ├── FireBallModel.prefab.meta │ │ ├── FireBreathModel.prefab │ │ ├── FireBreathModel.prefab.meta │ │ ├── GeneralDot.prefab │ │ ├── GeneralDot.prefab.meta │ │ ├── GeneralHealthBar.prefab │ │ ├── GeneralHealthBar.prefab.meta │ │ ├── GroundPointer.prefab │ │ ├── GroundPointer.prefab.meta │ │ ├── Icon.prefab │ │ ├── Icon.prefab.meta │ │ ├── ImmediateCircleUI.prefab │ │ ├── ImmediateCircleUI.prefab.meta │ │ ├── ImmediateConeUI.prefab │ │ ├── ImmediateConeUI.prefab.meta │ │ ├── ImmediateDirectionUI.prefab │ │ ├── ImmediateDirectionUI.prefab.meta │ │ ├── Map.prefab │ │ ├── Map.prefab.meta │ │ ├── MeteorModel.prefab │ │ ├── MeteorModel.prefab.meta │ │ ├── PlayerNode.prefab │ │ ├── PlayerNode.prefab.meta │ │ ├── PoisonGasModel.prefab │ │ ├── PoisonGasModel.prefab.meta │ │ ├── PressurisedSteamModel.prefab │ │ ├── PressurisedSteamModel.prefab.meta │ │ ├── SF Button.prefab │ │ ├── SF Button.prefab.meta │ │ ├── SF Scene Elements.prefab │ │ ├── SF Scene Elements.prefab.meta │ │ ├── SF Title.prefab │ │ ├── SF Title.prefab.meta │ │ ├── SellItemSlot.prefab │ │ ├── SellItemSlot.prefab.meta │ │ ├── TowerBullectModel.prefab │ │ ├── TowerBullectModel.prefab.meta │ │ ├── TowerModel.prefab │ │ ├── TowerModel.prefab.meta │ │ ├── Unit.prefab │ │ ├── Unit.prefab.meta │ │ ├── Wall.prefab │ │ └── Wall.prefab.meta │ ├── Resources.meta │ ├── Resources │ │ ├── CombatTable.asset │ │ ├── CombatTable.asset.meta │ │ ├── UnitTable.asset │ │ └── UnitTable.asset.meta │ ├── SE.meta │ ├── SE │ │ ├── button02a.mp3 │ │ ├── button02a.mp3.meta │ │ ├── jump13.mp3 │ │ ├── jump13.mp3.meta │ │ ├── shot1.mp3 │ │ └── shot1.mp3.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── Lobby.unity │ │ ├── Lobby.unity.meta │ │ ├── Main.unity │ │ ├── Main.unity.meta │ │ ├── Title.unity │ │ └── Title.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── ENet.cs │ │ ├── ENet.cs.meta │ │ ├── Game.meta │ │ ├── Game │ │ │ ├── CombatModel.cs │ │ │ ├── CombatModel.cs.meta │ │ │ ├── CombatTable.cs │ │ │ ├── CombatTable.cs.meta │ │ │ ├── Network.cs │ │ │ ├── Network.cs.meta │ │ │ ├── PlayerController.cs │ │ │ ├── PlayerController.cs.meta │ │ │ ├── RTSCamera.cs │ │ │ ├── RTSCamera.cs.meta │ │ │ ├── Unit.meta │ │ │ ├── Unit │ │ │ │ ├── Animation.cs │ │ │ │ ├── Animation.cs.meta │ │ │ │ ├── AnimationTypeClip.cs │ │ │ │ ├── AnimationTypeClip.cs.meta │ │ │ │ ├── BigBang.cs │ │ │ │ ├── BigBang.cs.meta │ │ │ │ ├── BigBangExplosion.cs │ │ │ │ ├── BigBangExplosion.cs.meta │ │ │ │ ├── BuildingModel.cs │ │ │ │ ├── BuildingModel.cs.meta │ │ │ │ ├── BuyItemIcon.cs │ │ │ │ ├── BuyItemIcon.cs.meta │ │ │ │ ├── ChampionDot.cs │ │ │ │ ├── ChampionDot.cs.meta │ │ │ │ ├── ChampionHealthBar.cs │ │ │ │ ├── ChampionHealthBar.cs.meta │ │ │ │ ├── ChampionSelectIcon.cs │ │ │ │ ├── ChampionSelectIcon.cs.meta │ │ │ │ ├── ChatUI.cs │ │ │ │ ├── ChatUI.cs.meta │ │ │ │ ├── ClientUI.cs │ │ │ │ ├── ClientUI.cs.meta │ │ │ │ ├── ClientUINode.cs │ │ │ │ ├── ClientUINode.cs.meta │ │ │ │ ├── FrontUI.cs │ │ │ │ ├── FrontUI.cs.meta │ │ │ │ ├── GeneralDot.cs │ │ │ │ ├── GeneralDot.cs.meta │ │ │ │ ├── GeneralHealthBar.cs │ │ │ │ ├── GeneralHealthBar.cs.meta │ │ │ │ ├── GroundPointer.cs │ │ │ │ ├── GroundPointer.cs.meta │ │ │ │ ├── Icon.cs │ │ │ │ ├── Icon.cs.meta │ │ │ │ ├── ImmediateCircleUI.cs │ │ │ │ ├── ImmediateCircleUI.cs.meta │ │ │ │ ├── ImmediateConeUI.cs │ │ │ │ ├── ImmediateConeUI.cs.meta │ │ │ │ ├── ImmediateDirectionUI.cs │ │ │ │ ├── ImmediateDirectionUI.cs.meta │ │ │ │ ├── ItemUI.cs │ │ │ │ ├── ItemUI.cs.meta │ │ │ │ ├── MinimapUI.cs │ │ │ │ ├── MinimapUI.cs.meta │ │ │ │ ├── Movement.cs │ │ │ │ ├── Movement.cs.meta │ │ │ │ ├── PlayerNode.cs │ │ │ │ ├── PlayerNode.cs.meta │ │ │ │ ├── PlayerUI.cs │ │ │ │ ├── PlayerUI.cs.meta │ │ │ │ ├── RecallUI.cs │ │ │ │ ├── RecallUI.cs.meta │ │ │ │ ├── SellItemSlot.cs │ │ │ │ ├── SellItemSlot.cs.meta │ │ │ │ ├── Trigger.cs │ │ │ │ ├── Trigger.cs.meta │ │ │ │ ├── Unit.cs │ │ │ │ ├── Unit.cs.meta │ │ │ │ ├── VictoryUI.cs │ │ │ │ └── VictoryUI.cs.meta │ │ │ ├── UnitManager.cs │ │ │ ├── UnitManager.cs.meta │ │ │ ├── UnitModel.cs │ │ │ ├── UnitModel.cs.meta │ │ │ ├── UnitTable.cs │ │ │ └── UnitTable.cs.meta │ │ ├── MOBA_CSharp_Client.meta │ │ ├── MOBA_CSharp_Client │ │ │ ├── CSVReader.meta │ │ │ ├── CSVReader │ │ │ │ ├── CSVReader.cs │ │ │ │ ├── CSVReader.cs.meta │ │ │ │ ├── ItemTable.cs │ │ │ │ └── ItemTable.cs.meta │ │ │ ├── ClientNetwork.meta │ │ │ ├── ClientNetwork │ │ │ │ ├── ClientNetwork.cs │ │ │ │ ├── ClientNetwork.cs.meta │ │ │ │ ├── MessageType.cs │ │ │ │ └── MessageType.cs.meta │ │ │ ├── DataReader.meta │ │ │ ├── DataReader │ │ │ │ ├── YAMLObject.cs │ │ │ │ ├── YAMLObject.cs.meta │ │ │ │ ├── YAMLReader.cs │ │ │ │ └── YAMLReader.cs.meta │ │ │ ├── Enum.meta │ │ │ ├── Enum │ │ │ │ ├── AnimationType.cs │ │ │ │ ├── AnimationType.cs.meta │ │ │ │ ├── CastType.cs │ │ │ │ ├── CastType.cs.meta │ │ │ │ ├── CombatType.cs │ │ │ │ ├── CombatType.cs.meta │ │ │ │ ├── Team.cs │ │ │ │ ├── Team.cs.meta │ │ │ │ ├── UnitType.cs │ │ │ │ └── UnitType.cs.meta │ │ │ ├── MsgPack.meta │ │ │ └── MsgPack │ │ │ │ ├── ActorObj.cs │ │ │ │ ├── ActorObj.cs.meta │ │ │ │ ├── BuildingObj.cs │ │ │ │ ├── BuildingObj.cs.meta │ │ │ │ ├── CastObj.cs │ │ │ │ ├── CastObj.cs.meta │ │ │ │ ├── ChampionObj.cs │ │ │ │ ├── ChampionObj.cs.meta │ │ │ │ ├── ChangeObj.cs │ │ │ │ ├── ChangeObj.cs.meta │ │ │ │ ├── ClientObj.cs │ │ │ │ ├── ClientObj.cs.meta │ │ │ │ ├── CombatObj.cs │ │ │ │ ├── CombatObj.cs.meta │ │ │ │ ├── IGetAnimInfo.cs │ │ │ │ ├── IGetAnimInfo.cs.meta │ │ │ │ ├── IGetUnitInfo.cs │ │ │ │ ├── IGetUnitInfo.cs.meta │ │ │ │ ├── LobbyObj.cs │ │ │ │ ├── LobbyObj.cs.meta │ │ │ │ ├── MsgObj.cs │ │ │ │ ├── MsgObj.cs.meta │ │ │ │ ├── PlayerObj.cs │ │ │ │ ├── PlayerObj.cs.meta │ │ │ │ ├── SelectObj.cs │ │ │ │ ├── SelectObj.cs.meta │ │ │ │ ├── SnapshotObj.cs │ │ │ │ ├── SnapshotObj.cs.meta │ │ │ │ ├── UnitObj.cs │ │ │ │ ├── UnitObj.cs.meta │ │ │ │ ├── Vector2Obj.cs │ │ │ │ ├── Vector2Obj.cs.meta │ │ │ │ ├── Vector3Obj.cs │ │ │ │ └── Vector3Obj.cs.meta │ │ ├── MessagePack.meta │ │ └── MessagePack │ │ │ ├── Attributes.cs │ │ │ ├── Attributes.cs.meta │ │ │ ├── FloatBits.cs │ │ │ ├── FloatBits.cs.meta │ │ │ ├── Formatters.meta │ │ │ ├── Formatters │ │ │ ├── CollectionFormatter.cs │ │ │ ├── CollectionFormatter.cs.meta │ │ │ ├── DictionaryFormatter.cs │ │ │ ├── DictionaryFormatter.cs.meta │ │ │ ├── DynamicObjectTypeFallbackFormatter.cs │ │ │ ├── DynamicObjectTypeFallbackFormatter.cs.meta │ │ │ ├── EnumAsStringFormatter.cs │ │ │ ├── EnumAsStringFormatter.cs.meta │ │ │ ├── ForceSizePrimitiveFormatter.cs │ │ │ ├── ForceSizePrimitiveFormatter.cs.meta │ │ │ ├── IMessagePackFormatter.cs │ │ │ ├── IMessagePackFormatter.cs.meta │ │ │ ├── IgnoreFormatter.cs │ │ │ ├── IgnoreFormatter.cs.meta │ │ │ ├── MultiDimentionalArrayFormatter.cs │ │ │ ├── MultiDimentionalArrayFormatter.cs.meta │ │ │ ├── NullableFormatter.cs │ │ │ ├── NullableFormatter.cs.meta │ │ │ ├── OldSpecFormatter.cs │ │ │ ├── OldSpecFormatter.cs.meta │ │ │ ├── PrimitiveFormatter.cs │ │ │ ├── PrimitiveFormatter.cs.meta │ │ │ ├── PrimitiveObjectFormatter.cs │ │ │ ├── PrimitiveObjectFormatter.cs.meta │ │ │ ├── StandardClassLibraryFormatter.cs │ │ │ ├── StandardClassLibraryFormatter.cs.meta │ │ │ ├── TupleFormatter.cs │ │ │ ├── TupleFormatter.cs.meta │ │ │ ├── TypelessFormatter.cs │ │ │ ├── TypelessFormatter.cs.meta │ │ │ ├── UnsafeBinaryFormatters.cs │ │ │ ├── UnsafeBinaryFormatters.cs.meta │ │ │ ├── ValueTupleFormatter.cs │ │ │ └── ValueTupleFormatter.cs.meta │ │ │ ├── IFormatterResolver.cs │ │ │ ├── IFormatterResolver.cs.meta │ │ │ ├── IMessagePackSerializationCallbackReceiver.cs │ │ │ ├── IMessagePackSerializationCallbackReceiver.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ ├── ArrayPool.cs │ │ │ ├── ArrayPool.cs.meta │ │ │ ├── AsymmetricKeyHashTable.cs │ │ │ ├── AsymmetricKeyHashTable.cs.meta │ │ │ ├── AutomataDictionary.cs │ │ │ ├── AutomataDictionary.cs.meta │ │ │ ├── ByteArrayComparer.cs │ │ │ ├── ByteArrayComparer.cs.meta │ │ │ ├── ByteArrayStringHashTable.cs │ │ │ ├── ByteArrayStringHashTable.cs.meta │ │ │ ├── DynamicAssembly.cs │ │ │ ├── DynamicAssembly.cs.meta │ │ │ ├── ExpressionUtility.cs │ │ │ ├── ExpressionUtility.cs.meta │ │ │ ├── FarmHash.cs │ │ │ ├── FarmHash.cs.meta │ │ │ ├── GuidBits.cs │ │ │ ├── GuidBits.cs.meta │ │ │ ├── ILGeneratorExtensions.cs │ │ │ ├── ILGeneratorExtensions.cs.meta │ │ │ ├── ReflectionExtensions.cs │ │ │ ├── ReflectionExtensions.cs.meta │ │ │ ├── ThreadsafeTypeKeyHashTable.cs │ │ │ ├── ThreadsafeTypeKeyHashTable.cs.meta │ │ │ ├── TinyJsonReader.cs │ │ │ ├── TinyJsonReader.cs.meta │ │ │ ├── UnsafeMemory.Low.cs │ │ │ ├── UnsafeMemory.Low.cs.meta │ │ │ ├── UnsafeMemory.cs │ │ │ └── UnsafeMemory.cs.meta │ │ │ ├── LZ4.meta │ │ │ ├── LZ4 │ │ │ ├── Codec.meta │ │ │ ├── Codec │ │ │ │ ├── LZ4Codec.Helper.cs │ │ │ │ ├── LZ4Codec.Helper.cs.meta │ │ │ │ ├── LZ4Codec.Safe.cs │ │ │ │ ├── LZ4Codec.Safe.cs.meta │ │ │ │ ├── LZ4Codec.Safe32.Dirty.cs │ │ │ │ ├── LZ4Codec.Safe32.Dirty.cs.meta │ │ │ │ ├── LZ4Codec.Safe64.Dirty.cs │ │ │ │ ├── LZ4Codec.Safe64.Dirty.cs.meta │ │ │ │ ├── LZ4Codec.Unsafe.cs │ │ │ │ ├── LZ4Codec.Unsafe.cs.meta │ │ │ │ ├── LZ4Codec.Unsafe32.Dirty.cs │ │ │ │ ├── LZ4Codec.Unsafe32.Dirty.cs.meta │ │ │ │ ├── LZ4Codec.Unsafe64.Dirty.cs │ │ │ │ ├── LZ4Codec.Unsafe64.Dirty.cs.meta │ │ │ │ ├── LZ4Codec.cs │ │ │ │ └── LZ4Codec.cs.meta │ │ │ ├── LZ4MessagePackSerializer.JSON.cs │ │ │ ├── LZ4MessagePackSerializer.JSON.cs.meta │ │ │ ├── LZ4MessagePackSerializer.NonGeneric.cs │ │ │ ├── LZ4MessagePackSerializer.NonGeneric.cs.meta │ │ │ ├── LZ4MessagePackSerializer.cs │ │ │ └── LZ4MessagePackSerializer.cs.meta │ │ │ ├── MessagePackBinary.cs │ │ │ ├── MessagePackBinary.cs.meta │ │ │ ├── MessagePackCode.cs │ │ │ ├── MessagePackCode.cs.meta │ │ │ ├── MessagePackSerializer.Json.cs │ │ │ ├── MessagePackSerializer.Json.cs.meta │ │ │ ├── MessagePackSerializer.NonGeneric.cs │ │ │ ├── MessagePackSerializer.NonGeneric.cs.meta │ │ │ ├── MessagePackSerializer.cs │ │ │ ├── MessagePackSerializer.cs.meta │ │ │ ├── Nil.cs │ │ │ ├── Nil.cs.meta │ │ │ ├── Resolvers.meta │ │ │ ├── Resolvers │ │ │ ├── AttributeFormatterResolver.cs │ │ │ ├── AttributeFormatterResolver.cs.meta │ │ │ ├── BuiltinResolver.cs │ │ │ ├── BuiltinResolver.cs.meta │ │ │ ├── CompositeResolver.cs │ │ │ ├── CompositeResolver.cs.meta │ │ │ ├── ContractlessReflectionObjectResolver.cs │ │ │ ├── ContractlessReflectionObjectResolver.cs.meta │ │ │ ├── DynamicEnumAsStringResolver.cs │ │ │ ├── DynamicEnumAsStringResolver.cs.meta │ │ │ ├── DynamicEnumResolver.cs │ │ │ ├── DynamicEnumResolver.cs.meta │ │ │ ├── DynamicGenericResolver.cs │ │ │ ├── DynamicGenericResolver.cs.meta │ │ │ ├── DynamicObjectResolver.cs │ │ │ ├── DynamicObjectResolver.cs.meta │ │ │ ├── DynamicUnionResolver.cs │ │ │ ├── DynamicUnionResolver.cs.meta │ │ │ ├── NativeDateTimeResolver.cs │ │ │ ├── NativeDateTimeResolver.cs.meta │ │ │ ├── OldSpecResolver.cs │ │ │ ├── OldSpecResolver.cs.meta │ │ │ ├── PrimitiveObjectResolver.cs │ │ │ ├── PrimitiveObjectResolver.cs.meta │ │ │ ├── StandardResolver.cs │ │ │ ├── StandardResolver.cs.meta │ │ │ ├── TypelessContractlessStandardResolver.cs │ │ │ ├── TypelessContractlessStandardResolver.cs.meta │ │ │ ├── TypelessObjectResolver.cs │ │ │ ├── TypelessObjectResolver.cs.meta │ │ │ ├── UnsafeBinaryResolver.cs │ │ │ └── UnsafeBinaryResolver.cs.meta │ │ │ ├── Shims.meta │ │ │ ├── Shims │ │ │ ├── Reflection.cs │ │ │ └── Reflection.cs.meta │ │ │ ├── StringEncoding.cs │ │ │ ├── StringEncoding.cs.meta │ │ │ ├── Unity.meta │ │ │ ├── Unity │ │ │ ├── Formatters.cs │ │ │ ├── Formatters.cs.meta │ │ │ ├── UnityResolver.cs │ │ │ └── UnityResolver.cs.meta │ │ │ ├── UnsafeExtensions.meta │ │ │ └── UnsafeExtensions │ │ │ ├── UnityBlitResolver.cs │ │ │ ├── UnityBlitResolver.cs.meta │ │ │ ├── UnsafeBlitFormatter.cs │ │ │ └── UnsafeBlitFormatter.cs.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── Grayscale.shader │ │ └── Grayscale.shader.meta │ ├── Standard Assets.meta │ ├── Standard Assets │ │ ├── Characters.meta │ │ └── Characters │ │ │ ├── ThirdPersonCharacter.meta │ │ │ └── ThirdPersonCharacter │ │ │ ├── Animation.meta │ │ │ ├── Animation │ │ │ ├── HumanoidIdle.fbx │ │ │ ├── HumanoidIdle.fbx.meta │ │ │ ├── HumanoidRun.fbx │ │ │ ├── HumanoidRun.fbx.meta │ │ │ ├── HumanoidWalk.fbx │ │ │ └── HumanoidWalk.fbx.meta │ │ │ ├── Models.meta │ │ │ └── Models │ │ │ ├── Ethan.fbx │ │ │ ├── Ethan.fbx.meta │ │ │ ├── Materials.meta │ │ │ └── Materials │ │ │ ├── EthanWhite.mat │ │ │ └── EthanWhite.mat.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ │ ├── TMP_Bitmap.shader │ │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ │ ├── TMP_SDF Overlay.shader │ │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ │ ├── TMP_SDF-Surface.shader │ │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ │ ├── TMP_SDF.shader │ │ │ │ ├── TMP_SDF.shader.meta │ │ │ │ ├── TMP_Sprite.shader │ │ │ │ ├── TMP_Sprite.shader.meta │ │ │ │ ├── TMPro.cginc │ │ │ │ ├── TMPro.cginc.meta │ │ │ │ ├── TMPro_Properties.cginc │ │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ │ ├── TMPro_Surface.cginc │ │ │ │ └── TMPro_Surface.cginc.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Sprite Assets │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ ├── EmojiOne.png │ │ │ └── EmojiOne.png.meta │ ├── Textures and Sprites.meta │ └── Textures and Sprites │ │ ├── SF UI.meta │ │ └── SF UI │ │ ├── Background.meta │ │ ├── Background │ │ ├── SF Background.jpg │ │ └── SF Background.jpg.meta │ │ ├── SF Button.psd │ │ ├── SF Button.psd.meta │ │ ├── SF Title.psd │ │ ├── SF Title.psd.meta │ │ ├── SF Window.psd │ │ └── SF Window.psd.meta ├── CSV │ ├── ExpTables │ │ ├── BigBang.csv │ │ ├── Core.csv │ │ ├── Default.csv │ │ ├── FireBall.csv │ │ ├── FireBreath.csv │ │ ├── Fountain.csv │ │ ├── HakureiReimu.csv │ │ ├── HatsuneMiku.csv │ │ ├── KizunaAI.csv │ │ ├── Meteor.csv │ │ ├── Minion.csv │ │ ├── Monster.csv │ │ ├── Serval.csv │ │ ├── SuperMonster.csv │ │ ├── Tower.csv │ │ ├── TowerBullet.csv │ │ ├── UltraMonster.csv │ │ └── Yukikaze.csv │ └── Items.csv ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ └── VFXManager.asset └── YAML │ ├── ClientConfig.yml │ ├── Combats │ ├── Attack.yml │ ├── BigBang.yml │ ├── Default.yml │ ├── EarthShatter.yml │ ├── Eye.yml │ ├── FireBall.yml │ ├── FireBreath.yml │ ├── Katana.yml │ ├── Meteor.yml │ ├── Move.yml │ ├── OnBase.yml │ ├── Poison.yml │ ├── PoisonGas.yml │ ├── Potion.yml │ ├── PressurisedSteam.yml │ ├── Recall.yml │ ├── RegenArmor.yml │ ├── RegenPierce.yml │ ├── Sight.yml │ ├── Slow.yml │ ├── SpecialBoot.yml │ ├── SpecialShield.yml │ ├── Stun.yml │ ├── UnitStatus.yml │ └── Untargetable.yml │ └── Units │ ├── Core.yml │ ├── Default.yml │ ├── FireBall.yml │ ├── FireBreath.yml │ ├── Fountain.yml │ ├── HakureiReimu.yml │ ├── HatsuneMiku.yml │ ├── KizunaAI.yml │ ├── Meteor.yml │ ├── Minion.yml │ ├── Monster.yml │ ├── Serval.yml │ ├── Tower.yml │ ├── TowerBullet.yml │ └── Yukikaze.yml ├── Map_Editor ├── MOBA_CSharp_Map_Editor │ ├── .gitignore │ ├── Assets │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.dll.meta │ │ │ ├── SharpNav.dll │ │ │ ├── SharpNav.dll.meta │ │ │ ├── YamlDotNet.dll │ │ │ └── YamlDotNet.dll.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Bush.meta │ │ │ ├── Bush │ │ │ │ ├── Bush.prefab │ │ │ │ └── Bush.prefab.meta │ │ │ ├── Collision.meta │ │ │ ├── Collision │ │ │ │ ├── Circle.prefab │ │ │ │ ├── Circle.prefab.meta │ │ │ │ ├── Edge.prefab │ │ │ │ └── Edge.prefab.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── Core.prefab │ │ │ │ └── Core.prefab.meta │ │ │ ├── Map.prefab │ │ │ ├── Map.prefab.meta │ │ │ ├── MinionRelayPoint.meta │ │ │ ├── MinionRelayPoint │ │ │ │ ├── MinionRelayPoint.prefab │ │ │ │ └── MinionRelayPoint.prefab.meta │ │ │ ├── Monster.meta │ │ │ ├── Monster │ │ │ │ ├── Monster.prefab │ │ │ │ └── Monster.prefab.meta │ │ │ ├── Spawn.meta │ │ │ ├── Spawn │ │ │ │ ├── Spawn.prefab │ │ │ │ └── Spawn.prefab.meta │ │ │ ├── Tower.meta │ │ │ ├── Tower │ │ │ │ ├── Tower.prefab │ │ │ │ └── Tower.prefab.meta │ │ │ ├── Wall.prefab │ │ │ └── Wall.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── map.unity │ │ │ └── map.unity.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Builder.meta │ │ │ ├── Builder │ │ │ ├── BushBuilder.cs │ │ │ ├── BushBuilder.cs.meta │ │ │ ├── CircleBuilder.cs │ │ │ ├── CircleBuilder.cs.meta │ │ │ ├── CoreBuilder.cs │ │ │ ├── CoreBuilder.cs.meta │ │ │ ├── EdgeBuilder.cs │ │ │ ├── EdgeBuilder.cs.meta │ │ │ ├── MinionRelayPointBuilder.cs │ │ │ ├── MinionRelayPointBuilder.cs.meta │ │ │ ├── MonsterBuilder.cs │ │ │ ├── MonsterBuilder.cs.meta │ │ │ ├── RectBuilder.cs │ │ │ ├── RectBuilder.cs.meta │ │ │ ├── SpawnBuilder.cs │ │ │ ├── SpawnBuilder.cs.meta │ │ │ ├── TowerBuilder.cs │ │ │ └── TowerBuilder.cs.meta │ │ │ ├── ExportScene.cs │ │ │ ├── ExportScene.cs.meta │ │ │ ├── Json.meta │ │ │ ├── Json │ │ │ ├── BushInfo.cs │ │ │ ├── BushInfo.cs.meta │ │ │ ├── CircleInfo.cs │ │ │ ├── CircleInfo.cs.meta │ │ │ ├── CoreInfo.cs │ │ │ ├── CoreInfo.cs.meta │ │ │ ├── EdgeInfo.cs │ │ │ ├── EdgeInfo.cs.meta │ │ │ ├── MapInfo.cs │ │ │ ├── MapInfo.cs.meta │ │ │ ├── MinionRelayPointInfo.cs │ │ │ ├── MinionRelayPointInfo.cs.meta │ │ │ ├── MonsterInfo.cs │ │ │ ├── MonsterInfo.cs.meta │ │ │ ├── SpawnInfo.cs │ │ │ ├── SpawnInfo.cs.meta │ │ │ ├── TowerInfo.cs │ │ │ └── TowerInfo.cs.meta │ │ │ ├── ObjModel.cs │ │ │ ├── ObjModel.cs.meta │ │ │ ├── UnitType.cs │ │ │ └── UnitType.cs.meta │ ├── Logs │ │ └── Packages-Update.log │ ├── Packages │ │ └── manifest.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ └── VFXManager.asset │ ├── map.json │ ├── map.obj │ └── map.snj └── NavMeshViewer │ ├── Examples.exe │ ├── Examples.exe.config │ ├── Gwen.Renderer.OpenTK.dll │ ├── Gwen.dll │ ├── GwenSkin.png │ ├── Newtonsoft.Json.dll │ ├── OpenTK.dll │ ├── OpenTK.dll.config │ ├── SharpNav.dll │ ├── YamlDotNet.dll │ ├── map.obj │ └── map.snj └── README.md /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/BigBang.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/Core.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,3000,0,0,0,0,0,0,0,0 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/Default.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/FireBall.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/FireBreath.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/Fountain.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,3000,0,0,0,0,0,0,0,0 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/Meteor.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/Minion.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,150,0,15,0,0,0,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/Monster.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,250,0,10,0,0,0,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/SuperMonster.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,750,0,50,0,0,0,1,2,1.5 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/Tower.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1000,0,100,0,0,0,5,1,0 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/TowerBullet.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/CSV/ExpTables/UltraMonster.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,50000,0,1000,0,0,0,2,0.5,0.75 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/ENet-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Server/MOBA_CSharp_Server/ENet-CSharp.dll -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Enum/AnimationType.cs: -------------------------------------------------------------------------------- 1 | public enum AnimationType 2 | { 3 | Idle, 4 | Death, 5 | Walk, 6 | Attack, 7 | Recall, 8 | Stun, 9 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Enum/BoolStatus.cs: -------------------------------------------------------------------------------- 1 | namespace MOBA_CSharp_Server.Game 2 | { 3 | public enum BoolStatus 4 | { 5 | ImmuneFromDamage, 6 | NoCollision, 7 | Untargetable, 8 | UnArmed, 9 | Silenced, 10 | Unmovable 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Enum/CastType.cs: -------------------------------------------------------------------------------- 1 | public enum CastType 2 | { 3 | ImmediateDirection, 4 | ImmediateCone, 5 | ImmediateCircle 6 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Enum/CombatAttribute.cs: -------------------------------------------------------------------------------- 1 | public enum CombatAttribute 2 | { 3 | Ability, 4 | Move, 5 | Attack, 6 | Recall, 7 | Skill, 8 | QSkill, 9 | WSkill, 10 | ESkill, 11 | RSkill, 12 | Effect, 13 | Item, 14 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Enum/FloatStatus.cs: -------------------------------------------------------------------------------- 1 | namespace MOBA_CSharp_Server.Game 2 | { 3 | public enum FloatStatus 4 | { 5 | MaxHP, 6 | MaxMP, 7 | Attack, 8 | Defence, 9 | MagicAttack, 10 | MagicDefence, 11 | AttackRange, 12 | AttackRate, 13 | MovementSpeed 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Enum/Priorities/AnimationStatusPriority.cs: -------------------------------------------------------------------------------- 1 | namespace MOBA_CSharp_Server.Game 2 | { 3 | public enum AnimationStatusPriority 4 | { 5 | Death, 6 | Stun, 7 | Attack, 8 | Walk, 9 | Recall, 10 | Idle 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Enum/Priorities/VisionStatusPriority.cs: -------------------------------------------------------------------------------- 1 | namespace MOBA_CSharp_Server.Game 2 | { 3 | public enum VisionStatusPriority 4 | { 5 | Sight 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Enum/Team.cs: -------------------------------------------------------------------------------- 1 | public enum Team 2 | { 3 | Yellow, 4 | Blue, 5 | Red 6 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Json/BushInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class BushInfo 5 | { 6 | public float x0, y0; 7 | public float x1, y1; 8 | public float x2, y2; 9 | public float x3, y3; 10 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Json/CircleInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class CircleInfo 5 | { 6 | public float x; 7 | public float y; 8 | public float radius; 9 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Json/CoreInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class CoreInfo 5 | { 6 | public float x, y; 7 | public float angle; 8 | public float radius; 9 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Json/EdgeInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class EdgeInfo 5 | { 6 | public float x0, y0; 7 | public float x1, y1; 8 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Json/MinionRelayPointInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class MinionRelayPointInfo 5 | { 6 | public float x, y; 7 | public bool blueTeam; 8 | public int laneNum; //Top:0, Mid:1, Bot:2 9 | public int index; 10 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Json/MonsterInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class MonsterInfo 5 | { 6 | public UnitType type; 7 | public float x, y; 8 | public float angle; 9 | public float chaseRadius; 10 | public float respawnTime; 11 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Json/SpawnInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class SpawnInfo 5 | { 6 | public float x, y; 7 | public float regainRadius; 8 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/Json/TowerInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class TowerInfo 5 | { 6 | public float x, y; 7 | public float angle; 8 | public bool blueTeam; 9 | public float radius; 10 | public float height; 11 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/MsgPack/CastObj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class CastObj 5 | { 6 | [Key(0)] 7 | public byte SkillSlotNum { get; set; } 8 | [Key(1)] 9 | public int[] IntArgs { get; set; } 10 | [Key(2)] 11 | public float[] FloatArgs { get; set; } 12 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/MsgPack/ChangeObj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class ChangeObj 5 | { 6 | [Key(0)] 7 | public Team Team { get; set; } 8 | [Key(1)] 9 | public string Name { get; set; } 10 | [Key(2)] 11 | public UnitType Type { get; set; } 12 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/MsgPack/IGetAnimInfo.cs: -------------------------------------------------------------------------------- 1 | public interface IGetAnimInfo 2 | { 3 | AnimationType GetAnimType(); 4 | float GetSpeedRate(); 5 | float GetPlayTime(); 6 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/MsgPack/IGetUnitInfo.cs: -------------------------------------------------------------------------------- 1 | public interface IGetUnitInfo 2 | { 3 | int GetUnitID(); 4 | UnitType GetUnitType(); 5 | Team GetTeam(); 6 | float GetXPos(); 7 | float GetYPos(); 8 | float GetZPos(); 9 | float GetRotation(); 10 | bool GetWarped(); 11 | float GetMaxHP(); 12 | float GetCurHP(); 13 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/MsgPack/MsgObj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class MsgObj 5 | { 6 | [Key(0)] 7 | public Team Team { get; set; } 8 | [Key(1)] 9 | public string Msg { get; set; } 10 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/MsgPack/Vector2Obj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class Vector2Obj 5 | { 6 | [Key(0)] 7 | public float X { get; set; } 8 | [Key(1)] 9 | public float Y { get; set; } 10 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/Game/MsgPack/Vector3Obj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class Vector3Obj 5 | { 6 | [Key(0)] 7 | public float X { get; set; } 8 | [Key(1)] 9 | public float Y { get; set; } 10 | [Key(2)] 11 | public float Z { get; set; } 12 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/SharpNav.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Server/MOBA_CSharp_Server/SharpNav.dll -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/VelcroPhysics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Server/MOBA_CSharp_Server/VelcroPhysics.dll -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Attack.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | UpdatePathSpan: 0.5 8 | AttackTimeRate: 0.5 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 0 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/BigBang.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 10.0 6 | Cost: 10.0 7 | Distance : 7.5 8 | Speed : 5.0 9 | Radius : 3.0 10 | int: 11 | Charge: 1 12 | MaxCharge: 1 13 | Count: 0 14 | string: 15 | CastType: ImmediateDirection 16 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Default.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 0 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Eye.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: false 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Span: 0.25 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 0 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/FireBall.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 3.0 6 | Cost: 10.0 7 | Distance : 10.0 8 | Speed : 5.0 9 | Radius : 1.0 10 | int: 11 | Charge: 1 12 | MaxCharge: 1 13 | Count: 0 14 | string: 15 | CastType: ImmediateDirection 16 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/FireBreath.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 3.0 6 | Cost: 10.0 7 | Radius : 5.0 8 | Angle : 60.0 9 | Duration: 1.0 10 | int: 11 | Charge: 1 12 | MaxCharge: 1 13 | Count: 0 14 | string: 15 | CastType: ImmediateCone 16 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Katana.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Meteor.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 3.0 6 | Cost: 10.0 7 | Radius : 2.0 8 | Duration : 3.0 9 | Distance : 5.0 10 | int: 11 | Charge: 1 12 | MaxCharge: 1 13 | Count: 0 14 | string: 15 | CastType: ImmediateCircle 16 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Move.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 0 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/OnBase.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: true 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 1 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Poison.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: true 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 1 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Potion.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: true 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Recall.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | RecallTime: 5.0 8 | int: 9 | Charge: 0 10 | MaxCharge: 0 11 | Count: 0 12 | string: 13 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/RegenArmor.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/RegenPierce.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Sight.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: false 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 0 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Slow.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: true 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 1 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/SpecialBoot.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 180.0 6 | Cost: 0.0 7 | int: 8 | Charge: 1 9 | MaxCharge: 1 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/SpecialShield.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 300.0 6 | Cost: 0.0 7 | int: 8 | Charge: 1 9 | MaxCharge: 1 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Stun.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: true 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 1 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/UnitStatus.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: false 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | int: 9 | Charge: 0 10 | MaxCharge: 0 11 | Count: 0 12 | string: 13 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Combats/Untargetable.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: false 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | int: 9 | Charge: 0 10 | MaxCharge: 0 11 | Count: 0 12 | string: 13 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/ServerConfig.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | TestMode: false 3 | float: 4 | VictoryTime: 10.0 5 | VisionRadius : 10.0 6 | InitGold : 100.0 7 | ChampionRespawnTime: 5.0 8 | int: 9 | Port : 5000 10 | FrameRate : 20 11 | ItemSlotNum : 6 12 | string: 13 | Map : Map\map.json 14 | NavMesh : Map\map.snj 15 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/Core.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | RespawnTime: 10.0 5 | SpawnRadius: 2.0 6 | int: 7 | string: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/Default.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: DefaultName -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/FireBall.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | int: 4 | string: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/FireBreath.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | int: 4 | string: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/Fountain.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | RegainRate: 0.1 5 | int: 6 | string: 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/HakureiReimu.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: HakureiReimu 7 | QSkill : EarthShatter 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/HatsuneMiku.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: HatsuneMiku 7 | QSkill : FireBall 8 | WSkill : FireBreath 9 | ESkill : Meteor 10 | RSkill : BigBang -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/KizunaAI.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: KizunaAI 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/Meteor.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | int: 4 | string: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/Minion.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | AttackRadius: 5.0 5 | DestroyTime: 3.0 6 | int: 7 | string: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/Monster.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/Serval.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: Serval 7 | QSkill: PoisonGas 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/Tower.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/TowerBullet.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | TargetHeight : 0.8 4 | Speed : 10 5 | int: 6 | string: 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/YAML/Units/Yukikaze.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: Yukikaze 7 | QSkill: PressurisedSteam 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/enet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Server/MOBA_CSharp_Server/enet.dll -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/enet.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Server/MOBA_CSharp_Server/enet.dylib -------------------------------------------------------------------------------- /MOBA_CSharp_Server/MOBA_CSharp_Server/libenet.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Server/MOBA_CSharp_Server/libenet.so -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec03e6701bce4ac479d84ff725c69598 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Animation/Empty.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 909b4dfadd8bc4b4aaf507a56e33c4f6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Animation/SF Button.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c454080d636f840038dc8f37941751b3 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Animation/Standing_1H_Magic_Attack_02.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b940b9b91870d048af27fca9a764846 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Animation/Stunned.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Animation/Stunned.fbx -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Animation/UnitAnimatorController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e45ba4935ff2ba49abecff4a62f5598 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7b04cf2f590b9b4da4271cd5f1c3ba9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ca6a3e86a6814d4eb350f50979daea3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21651ac7db206744eb83a2ab21ffa299 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Materials/DebrisParticle.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72815344e9e9c7446895e130936932d7 3 | timeCreated: 1471611776 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Materials/Embers.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 776677ab3818fb249adaca05f4e04545 3 | timeCreated: 1471532950 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Materials/Explosion.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6421a5a06ae9f7a47a57b67f35c73b5a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Materials/ExplosionDistortion.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fafa06e8ef8c7fb4eac7a74c65cf3a06 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Materials/LargeFlame02.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b25dd701bdc692249907c8b4e4b784b2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Materials/MediumFlame03.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b187db0c2e012840b1199ccf0893b54 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Materials/SmokeDark.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 698a8134f4ebbbd4e848648685f68067 3 | timeCreated: 1471944184 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Materials/fireball.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3349fc02d104e2b458470ec533f51c16 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5aac9ac4d8fc6648a0f63459e2f74b1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Prefabs/BigExplosion.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1b08032bec16ba4eb1ae23cbd572664 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Prefabs/FireBall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a990e3ac1318b834488c784d851f42a9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Prefabs/FlameThrower.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 007c57e2df8e9b144b99f471b84f3d56 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Prefabs/ParticlesLight.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa35d75604d172d48b7a6b62a07c7dbf 3 | timeCreated: 1472572134 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Prefabs/WildFire.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f293a2dcc753a4a489fefe7f8f312d69 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa72ebfb9d4d7014c9d5f4a95efa139e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Debris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Debris.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Explosion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Explosion.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/ExplosionEmission.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/ExplosionEmission.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/FireBallEmission.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/FireBallEmission.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Fireball.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Fireball.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/LargeFlame02.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/LargeFlame02.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/MediumFlame03.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/MediumFlame03.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Ramp02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Ramp02.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Ramp03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/Ramp03.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/SmokePuff01.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/SmokePuff01.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/SphereNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/SphereNormal.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/ramp01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/ramp01.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/shockwave.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Fire & Explosion Effects/Textures/shockwave.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94061b17fb651884eaca7c2bc6fe64e8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e623ac9e7fb95c9448274b3e02fd34e4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Materials/EarthCrack.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f6abb4fa65207247b856825feae3e68 3 | timeCreated: 1475490649 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Materials/Embers.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5de4a4e91ddb59479cdec033c43cc3b 3 | timeCreated: 1471532950 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Materials/Fireball.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a74b8e4e831053c46943378279c70e96 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Materials/RockDust.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f74562c360a75d468cce8ccff3d595f 3 | timeCreated: 1475571583 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Materials/RockSpike.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c420724f5bf46241bc8d1d616c65653 3 | timeCreated: 1475250537 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcf023584bbdaa2449e33385361e943c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Models/RockDebris.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Models/RockDebris.FBX -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Models/RockSpike.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Models/RockSpike.FBX -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33e505b1f7a9a20438ba0ad8f8d97c30 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Prefabs/EarthShatter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32c9fd11a72259d45aa26ae41c34c5aa 3 | timeCreated: 1475660419 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7271c0967a2ebc343bdc0fbe2e2cb42c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/EarthCrackAlbedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/EarthCrackAlbedo.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/EarthCrackEmissive.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/EarthCrackEmissive.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/EarthCrackNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/EarthCrackNormal.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/FireBallEmission.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/FireBallEmission.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/Fireball.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/Fireball.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/RockNormal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/RockNormal.tga -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/RocksAlbedo.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/RocksAlbedo.tga -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/RocksAlbedoEmissive.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/RocksAlbedoEmissive.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/RocksSpecGloss.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/RocksSpecGloss.tga -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/SmokePuff02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Magic Effects/Textures/SmokePuff02.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fdb82b92b2185749adfcc6d6c8e3742 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0d76e337fe347c488354af04a61738c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Materials/SmokeySteam01.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df0a9d4a1d2f26c4eb697a71ac5b82d6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Materials/SmokeySteam02.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 011bc24ee3a874d4cab24456f007e08e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Materials/wispySmoke.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cd7f6cf6430b2347803bd0c957fbbce 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1849f01dc412fb648a9119672ec3cd87 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Prefabs/PoisonGas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f672a31584a6a748912a49c1dce2f0c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Prefabs/PressurisedSteam.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61bb62591466c3649bdf4905822d72f6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c93532a7b98acc0418a224d24e3d2c5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Textures/smokeysteam.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Textures/smokeysteam.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Textures/wispySmoke.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/EffectExamples/Smoke & Steam Effects/Textures/wispySmoke.tif -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00d2dd4e127eb4e4cbbbbb9458653ca0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Fonts/Jupiter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d6be245935f02040875afbfa3c40368 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Fonts/Jupiter/Jupiter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Fonts/Jupiter/Jupiter.ttf -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1de4468289636d249927c0783cafbec6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Materials/BigBang.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0492b7d02ddb1948b1af458633b3036 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Materials/Bush.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0d54122f1a33164eb1f70c9f2009690 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Materials/FireBall.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6f3c42f3a164624f929e936d85ce564 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Materials/Grayscale.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa38bdcdaf4beeb4fab74ead8603b439 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Materials/Ground.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc952f154af2c3b44a75373e6ebecb70 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Materials/TowerBullet.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 478e9f383e48a4b40bf956cfbe99d1d5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6687de4e185af1479d3a42582163d1d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/AttackIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/AttackIcon.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Avatars.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c90da1ae09b56a840adfdc628ed9050b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Avatars/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Avatars/default.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/CastIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/CastIcon.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Coin.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5120c0bfc88b8db40a3249ca7c65b7c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Beer Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Beer Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Blade Staff Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Blade Staff Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Blade Staff Mod 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Blade Staff Mod 2.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Blade Staff Mod 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Blade Staff Mod 3.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Blade Staff Mod 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Blade Staff Mod 4.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 1 Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 1 Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 2 Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 2 Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 3 Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 3 Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 3 Mod 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 3 Mod 2.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 3 Mod 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 3 Mod 3.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 3 Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body 3 Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Body Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 1 Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 1 Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 1 Mod 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 1 Mod 4.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 1 Mod 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 1 Mod 6.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 1 Mod 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 1 Mod 7.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 2 Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Boots 2 Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Chest Mod 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Chest Mod 2.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Fire Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Fire Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Glove 4 Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Glove 4 Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Glove 9 Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Glove 9 Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Jug Mod 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Jug Mod 10.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Necklet Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Necklet Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Necklet Mod 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Necklet Mod 2.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Necklet Mod 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Necklet Mod 3.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Necklet Mod 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Necklet Mod 4.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Pants 1 Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Pants 1 Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Potion 3 Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Potion 3 Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shadow Mark Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shadow Mark Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shadow Vortex Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shadow Vortex Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shadow Vortex Mod 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shadow Vortex Mod 2.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shadow Vortex Mod 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shadow Vortex Mod 3.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shield Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shield Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shield Mod 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shield Mod 2.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shield Mod 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shield Mod 3.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shield Mod 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Shield Mod 4.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Sword 1 Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Sword 1 Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Sword 1 Mod 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Sword 1 Mod 5.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Sword 1 Mod 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Sword 1 Mod 6.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Sword 1 Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Sword 1 Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Vampire Teeth Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Vampire Teeth Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Water Drop 1 Mod 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Water Drop 1 Mod 2.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Water Drop Mod 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Water Drop Mod 1.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Water Drop Mod 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Water Drop Mod 2.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Water Drop Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Icons/Water Drop Original.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/MoveIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/MoveIcon.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/NotReady.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/NotReady.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Ready.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/Reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/Reload.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/arrow.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/circle.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/PNG/white_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/PNG/white_32x32.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f006e3e73b2d5a949b5c87d75ed3e921 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Plugins/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Plugins/CsvHelper.dll -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Plugins/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Plugins/YamlDotNet.dll -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Plugins/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0815c2663f9dfb24e8633e63e0b9f897 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Plugins/x86_64/enet.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Plugins/x86_64/enet.bundle -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Plugins/x86_64/enet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Plugins/x86_64/enet.dll -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Plugins/x86_64/libenet.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Plugins/x86_64/libenet.so -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50e5ac192ee94234d841e00ae6ed5120 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/BigBangExplosion.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47e844ea04ac9634cb1d0055fb4e0b72 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/BigBangModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e11cd4539fc9f254d9bd265abb186bcc 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/BuyItemIcon.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b577298de460804c84f4b9a8c5bcf6f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/ChampionDot.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8d816731965ef843b700a223674f811 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/ChampionHealthBar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2926ba10ebf2b2b4cbbd45aeb4f18950 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/ChampionSelectIcon.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 394e0406802fad44fbef5345f2119122 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/ClientUINode.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71f12456bd781734aa829e686d47d05f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/CoreModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e6d1018bcd386341bbcbce18f9a677a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/EarthShatterModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c4b56404d31c2b4db27117bb22c8771 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/EthanModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 366fa6169b895ba49a5795ba3f680d1c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/FireBallModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b486092d19aa784bad7fcf60c24929e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/FireBreathModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2deee45dd5eda3428ecc70188eb218f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/GeneralDot.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7289ac4af043f94dbf7345a76443494 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/GeneralHealthBar.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f016225a50f61846b35d0876ec44f1e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/GroundPointer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c83a842e292a7804785d5cbeb8611185 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/Icon.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c696d35b7471b9b49ab4214e6b627c81 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/ImmediateCircleUI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 052ea1c0ed3df1c40a90f088e78bf339 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/ImmediateConeUI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa75d14d306e64743874dc37c29386a9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/ImmediateDirectionUI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6bce9527d1ac784199c74081ff37bc8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/Map.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26bb2e98e15f65d4f965c8e44e3a14e1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/MeteorModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1309c005290dd54ab92eb4b4e5b90b4 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/PlayerNode.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 747fd60705e052045b261ed8c5129623 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/PoisonGasModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c217f5793d7c154f9d49d68d095f89f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/PressurisedSteamModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2edde18c2f86e40439f907933f53386d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/SF Button.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05a81c3d5091440058129444d28322f3 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/SF Scene Elements.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7461a7b0cf97947fd9b9e4502fd2d07b 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/SF Title.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a93c012dd9ef6454fa7d140e976926f7 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/SellItemSlot.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 906f0760e1911e841adde2700e20f632 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/TowerBullectModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1efd53f0b9eb0114eb7c74a5e761da5a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/TowerModel.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e2174d4aded1a34abe4d1d42feecc71 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/Unit.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89b4a1555ddc7474ab326af7805bfead 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Prefabs/Wall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6650a7616c41422488c9d7527e4340a3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b67c9b17f8b1d8041be724b056a650a8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Resources/CombatTable.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c8d82a1e0bd3044fa3491aa940c5cc7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Resources/UnitTable.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41358b9fed29dd34a91ce1df355dbfff 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/SE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22e91321a5e789f4892ec2703b6186bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/SE/button02a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/SE/button02a.mp3 -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/SE/jump13.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/SE/jump13.mp3 -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/SE/shot1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/SE/shot1.mp3 -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 589a447682baee24aa994c44457e18fd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scenes/Lobby.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ab779e2fc0c3c84d90e6ae5cc23370e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a34d40129f44e2246b3d7023c2cc2415 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scenes/Title.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5600f4456caf0f547822f77075ef527e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff1c0c525e896fa4d9c340393563425e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/ENet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa1b750626713c7449596002fd95921e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1b4323f75e41ca46b04ea0c43b2484e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/CombatModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | [Serializable] 5 | public class CombatModel 6 | { 7 | public CombatType Type; 8 | public Sprite Sprite; 9 | public string Description; 10 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/CombatModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c18660cdd1b674a4a8982c1370047463 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/CombatTable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8b143ea1e36ec84b8d1a90d64da8194 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Network.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79a5fbf627d26374caa09dee9ac717eb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/PlayerController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47da558f9697e6b4c9e4b6f1bf4d61be 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/RTSCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 091c4f3809d10674ea7371f0212d4903 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2d0d40047503494a88116b3f5b76a31 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/Animation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2f71297bcfe4d74c9a77ab3cdfeaa44 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/AnimationTypeClip.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | [Serializable] 5 | public class AnimationTypeClip 6 | { 7 | public AnimationType Type; 8 | public AnimationClip Clip; 9 | public float Speed; 10 | public bool RootMotion; 11 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/AnimationTypeClip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25a26aebb79d86a459e5378d48720367 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/BigBang.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a32e804de6ab5d4f963e6b484549c1d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/BigBangExplosion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90b0cffe7b9ea8046932b6f7148a72a3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/BuildingModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46e53256f864ee44d8073b1ddc3621cd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/BuyItemIcon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5af6741eaf682c6499040b09a9ae0b95 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ChampionDot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e10803800b688b74f8bd5956b9d93d59 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ChampionHealthBar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6674b114467dec4fb81a90911e952ab 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ChampionSelectIcon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 592ee09ef95bf8d4daea1fa51be69dfc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ChatUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c244202eacce31242833cc353c348c51 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ClientUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08d83f7b42095114b94deec0d594b406 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ClientUINode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7823c6bc5543859468f7c2bf0500af18 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/FrontUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e3efeb5629b74a498d157283554c889 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/GeneralDot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f263c95a1c733fe40824378cbfa9ab96 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/GeneralHealthBar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f71d161229ca58d4290ac16f6d04ed93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/GroundPointer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47d9d9086091b7947a0ca46e65ade63c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/Icon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1e26b94284c2304fbca8c654b082fd8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ImmediateCircleUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4011bfce8dca76b4798cfe954262e2c3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ImmediateConeUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4a0d776321c8014e9faa2e2f6033de4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ImmediateDirectionUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6589b494875b9b34cacc2f054311c1c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/ItemUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5fc4eb87ee9dc34fa3737bc7fdca12b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/MinimapUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fca24a13cf82db74fbbefb1a0ada98c4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/Movement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 139acc7dec5e8f44fa2e39b85c986a69 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/PlayerNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 864e756ba13208c4f9d4b478496a9bb1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/PlayerUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 572ecc9e34b70ed4bb4f1ebd67f68a53 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/RecallUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40a8c1700c7d6914d98693e2221fc70e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/SellItemSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cedef68419d54e42a9df7f01152984d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/Trigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3584e7808be3def49a77fc49a4955557 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/Unit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71582722ad92d0a4e9597324dbbfeac7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/Unit/VictoryUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cf2dc13d5825a14cb0fef41a0f05995 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/UnitManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3444f2ad315c96f4384a3338de2ba207 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/UnitModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | [Serializable] 5 | public class UnitModel 6 | { 7 | public UnitType Type; 8 | public GameObject Model; 9 | public Sprite Icon; 10 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/UnitModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51e1ff2d70166ad4086d820cb5a0e328 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/Game/UnitTable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 329a20e3b3ca31a48b4568b35b286bdf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5215a1e12461c9b4c8746c826458251f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/CSVReader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30f90f51602ee5e4186dbb49d63f1a30 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/CSVReader/CSVReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c394df9420a808f41977997c178883a2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/CSVReader/ItemTable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21338a89707cc064b9803c81ee80b5c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/ClientNetwork.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57d6e95386c73fa4a9361068286ad4d5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/DataReader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec40972cb89163046962209e42deb32c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/DataReader/YAMLObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5da4d662d5cf0840bca6ea738ccbf16 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/DataReader/YAMLReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be2473d95acc6e74498a63b0ff096bf7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/Enum.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e308021447a98f34598bbe6582531d40 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/Enum/AnimationType.cs: -------------------------------------------------------------------------------- 1 | public enum AnimationType 2 | { 3 | Idle, 4 | Death, 5 | Walk, 6 | Attack, 7 | Recall, 8 | Stun, 9 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/Enum/AnimationType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1513a63a75fc214a9715e2338f459e3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/Enum/CastType.cs: -------------------------------------------------------------------------------- 1 | public enum CastType 2 | { 3 | ImmediateDirection, 4 | ImmediateCone, 5 | ImmediateCircle 6 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/Enum/CastType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c4f17d0ae0a3ce4cba3be26c65b5797 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/Enum/CombatType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06879818fc9acc549ab555455ae54894 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/Enum/Team.cs: -------------------------------------------------------------------------------- 1 | public enum Team 2 | { 3 | Yellow, 4 | Blue, 5 | Red 6 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/Enum/Team.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68bf94d89ca2e1541ad36a71103f9317 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/Enum/UnitType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c6e54c9d22d41043a10d369384b6275 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77d3a84205b32e341af13df1e11bfca5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/ActorObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7af771a296afa8f44ab6a5ccca802a93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/BuildingObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f6debffcde54374aa0768e64e902eca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/CastObj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class CastObj 5 | { 6 | [Key(0)] 7 | public byte SkillSlotNum { get; set; } 8 | [Key(1)] 9 | public int[] IntArgs { get; set; } 10 | [Key(2)] 11 | public float[] FloatArgs { get; set; } 12 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/CastObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80c06dd122c64a740a9ea23f6e3fb4cf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/ChampionObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17f40f9e5396b6846b1eb26fbab46c4f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/ChangeObj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class ChangeObj 5 | { 6 | [Key(0)] 7 | public Team Team { get; set; } 8 | [Key(1)] 9 | public string Name { get; set; } 10 | [Key(2)] 11 | public UnitType Type { get; set; } 12 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/ChangeObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 161440e2ee30e8f43b645c683cdaf758 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/ClientObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f6ea1aa3aed2bd45b8524b32e846d8c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/CombatObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edeb6762e9383594592f41842d07d468 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/IGetAnimInfo.cs: -------------------------------------------------------------------------------- 1 | public interface IGetAnimInfo 2 | { 3 | AnimationType GetAnimType(); 4 | float GetSpeedRate(); 5 | float GetPlayTime(); 6 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/LobbyObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a216714aa774fb8459099c65bcc2faac 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/MsgObj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class MsgObj 5 | { 6 | [Key(0)] 7 | public Team Team { get; set; } 8 | [Key(1)] 9 | public string Msg { get; set; } 10 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/MsgObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb18a3b16422fea40b313bf6a918c868 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/PlayerObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b3c7b7503e1a0c498ae067bcf484fa1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/SelectObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08b20a391579676428c474b98928183c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/UnitObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: faf3f6b8e14b21045a1f31746426e18b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/Vector2Obj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class Vector2Obj 5 | { 6 | [Key(0)] 7 | public float X { get; set; } 8 | [Key(1)] 9 | public float Y { get; set; } 10 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MOBA_CSharp_Client/MsgPack/Vector3Obj.cs: -------------------------------------------------------------------------------- 1 | using MessagePack; 2 | 3 | [MessagePackObject] 4 | public class Vector3Obj 5 | { 6 | [Key(0)] 7 | public float X { get; set; } 8 | [Key(1)] 9 | public float Y { get; set; } 10 | [Key(2)] 11 | public float Z { get; set; } 12 | } -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d13b481ec71cdd840b26ccce0b511c3c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Attributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16f4289f9f403744a8e49e08e5bf2c64 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/FloatBits.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f218f6f9fb9367b428d536b3fe55da4a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Formatters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09d3d87c55879e94caf972ec462f8db9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/IFormatterResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2890e7eef1a90b1439b80d27b67195a7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 367fb162976c51b4798a748e09a96599 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Internal/ArrayPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 767e42665f8ff574d86598966594931c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Internal/DynamicAssembly.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e220691592f0bce4893b5f452e2272b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Internal/FarmHash.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09ab55c94617e704a8b70a1aea1e0800 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Internal/GuidBits.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1686a1e87454b254692d2675b1261a84 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Internal/TinyJsonReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0acba372317dd1a48abed59c7af82314 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Internal/UnsafeMemory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7548804234e45ad46af60ad2d97f7c2f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/LZ4.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3464b577f2a0a048816cd6001fec54d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/LZ4/Codec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a0d96a2d9e730740aac25a0050f03cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/LZ4/Codec/LZ4Codec.Safe.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53b720f12d770ee4cb0c536174232a77 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/LZ4/Codec/LZ4Codec.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10442545faf86924aba2a209ddc7abc5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/MessagePackBinary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e72cb6778790774bb65f29c42751fcd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/MessagePackCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d010545b40dc5643812424430cb548b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/MessagePackSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89e79a5654644e849b753a9463bd088e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Nil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b96577c45030da42be552824a15b873 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Resolvers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8827ad80994c0e64681f5b215e390a7e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Shims.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0af87c824b63fc34d8552133ead0a3af 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Shims/Reflection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1bbc4074798ee54fa5d875b73ec53ab 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/StringEncoding.cs: -------------------------------------------------------------------------------- 1 | using System.Text; 2 | 3 | namespace MessagePack 4 | { 5 | internal static class StringEncoding 6 | { 7 | public static readonly Encoding UTF8 = new UTF8Encoding(false); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/StringEncoding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e199226a89862fc4798d014146e094cd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be6acd03d4c4d39458e1679b5afc0dba 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Unity/Formatters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35b326eb1dd882e4697075d4801626a5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/Unity/UnityResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 137d10b97384c394fbfbd39297fba382 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Scripts/MessagePack/UnsafeExtensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e9affed1727e1d43b9234dae02f84e8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7404915d8c1f6b044b302b7177e72163 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Shaders/Grayscale.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dde354ec568135b4bb70cfa43a4caae3 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6195a43a0187a34e9c6be23520d3766 3 | folderAsset: yes 4 | timeCreated: 1436977287 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c32f58513a41ef4dab9cb7704c5fb92 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8912f13e18e67bc478684ec30d73bc64 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb0e763ded53048dd80e7b78c35ded56 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdle.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdle.fbx -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRun.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRun.fbx -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalk.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalk.fbx -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aef224e1951a8274684081643c7fa672 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Ethan.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Ethan.fbx -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8fb06fe19af361479dc604c2ed67467 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Materials/EthanWhite.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2941e2513088c72489dbabbc78f7ae17 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54d1bd14bd3ca042bd867b519fee8cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7e8f5a82a3a134e91c54efd2274ea9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8d251f9af63b746bf2f7ffe00ebb9b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243e06394e614e5d99fab26083b707fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 731f1baa9d144a9897cb1d341c2092b8 3 | folderAsset: yes 4 | timeCreated: 1442040525 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e73a58f6e2794ae7b1b7e50b7fb811b0 3 | timeCreated: 1484172806 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79459efec17a4d00a321bdcc27bbc385 3 | timeCreated: 1484172856 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f586378b4e144a9851e7b34d9b748ee 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- 1 | )]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fade42e8bc714b018fac513c043d323b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇〉》」$⦆¥₩ # -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d82c1b31c7e74239bff1220585707d2b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99f836c9cb9345dba2e72c4a1f2d0695 3 | folderAsset: yes 4 | timeCreated: 1436068007 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48bb5f55d8670e349b6e614913f9d910 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e3b057af24249748ff873be7fafee47 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128e987d567d4e2c824d754223b3f3b0 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd89cf5b9246416f84610a006f916af7 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1ede39bf3643ee8e493720e4259791 3 | timeCreated: 1463704911 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a02a7d8c237544f1962732b55a9aebf1 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe393ace9b354375a9cb14cdbbc28be4 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85187c2149c549c5b33f0cdb02836b17 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7ada0af4f174f0694ca6a487b8f543d 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68e6db2ebdc24f95958faec2be5558d6 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf81c85f95fe47e1a27f6ae460cf182c 3 | timeCreated: 1450517184 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407bc68d299748449bbf7f48ee690f8d 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3997e2241185407d80309a82f9148466 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d930090c0cd643c7b55f19a38538c162 3 | ShaderImporter: 4 | defaultTextures: [] 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512a49d95c0c4332bdd98131869c23c9 3 | folderAsset: yes 4 | timeCreated: 1441876896 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c41005c129ba4d66911b75229fd70b45 3 | timeCreated: 1480316912 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aecb92fff08436c8303b10eab8da368 3 | folderAsset: yes 4 | timeCreated: 1441876950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f952c082cb03451daed3ee968ac6c63e 3 | timeCreated: 1432805430 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5b5dff67a942289a9defa416b206f3 3 | timeCreated: 1436653997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0603b6d5186471b96c778c3949c7ce2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- 1 | This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ 2 | 3 | Please visit their website to view the complete set of their emojis and review their licensing terms. -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381dcb09d5029d14897e55f98031fca5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f05276190cf498a8153f6cbe761d4e6 3 | timeCreated: 1480316860 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Textures and Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f63331cb16653014fb5deee7f060b521 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8c3f90d0c26daa418f455a2c9e9248b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI/Background.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5107c5fc194dfd49999b0e0e21cd8a5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI/Background/SF Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI/Background/SF Background.jpg -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI/SF Button.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI/SF Button.psd -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI/SF Title.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI/SF Title.psd -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI/SF Window.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/MOBA_CSharp_Unity_Client/Assets/Textures and Sprites/SF UI/SF Window.psd -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/BigBang.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/Core.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,3000,0,0,0,0,0,0,0,0 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/Default.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/FireBall.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/FireBreath.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/Fountain.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,3000,0,0,0,0,0,0,0,0 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/Meteor.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/Minion.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,150,0,15,0,0,0,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/Monster.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,250,0,10,0,0,0,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/SuperMonster.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,750,0,50,0,0,0,1,2,1.5 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/Tower.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1000,0,100,0,0,0,5,1,0 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/TowerBullet.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,1,1,1,1,1,1,1,1,1 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/CSV/ExpTables/UltraMonster.csv: -------------------------------------------------------------------------------- 1 | Level,Exp,MaxHP,MaxMP,Attack,Defence,MagicAttack,MagicDefence,AttackRange,AttackRate,MovementSpeed 2 | 1,0,50000,0,1000,0,0,0,2,0.5,0.75 3 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/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 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/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 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.4f1 2 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/ClientConfig.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | TestMode: false 3 | IsScreenEdgeMovement: false 4 | float: 5 | VisionRadius : 10.0 6 | MapWidth: 100.0 7 | MapHeight: 100.0 8 | int: 9 | Port : 5000 10 | ItemSlotNum : 6 11 | FrameRate : 20 12 | string: 13 | Host : localhost 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Attack.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | UpdatePathSpan: 0.5 8 | AttackTimeRate: 0.5 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 0 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/BigBang.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 10.0 6 | Cost: 10.0 7 | Distance : 7.5 8 | Speed : 5.0 9 | Radius : 3.0 10 | int: 11 | Charge: 1 12 | MaxCharge: 1 13 | Count: 0 14 | string: 15 | CastType: ImmediateDirection 16 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Default.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 0 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Eye.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: false 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Span: 0.25 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 0 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/FireBall.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 3.0 6 | Cost: 10.0 7 | Distance : 10.0 8 | Speed : 5.0 9 | Radius : 1.0 10 | int: 11 | Charge: 1 12 | MaxCharge: 1 13 | Count: 0 14 | string: 15 | CastType: ImmediateDirection 16 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/FireBreath.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 3.0 6 | Cost: 10.0 7 | Radius : 5.0 8 | Angle : 60.0 9 | Duration: 1.0 10 | int: 11 | Charge: 1 12 | MaxCharge: 1 13 | Count: 0 14 | string: 15 | CastType: ImmediateCone 16 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Katana.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Meteor.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 3.0 6 | Cost: 10.0 7 | Radius : 2.0 8 | Duration : 3.0 9 | Distance : 5.0 10 | int: 11 | Charge: 1 12 | MaxCharge: 1 13 | Count: 0 14 | string: 15 | CastType: ImmediateCircle 16 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Move.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 0 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/OnBase.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: true 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 1 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Poison.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: true 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 1 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Potion.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: true 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Recall.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | RecallTime: 5.0 8 | int: 9 | Charge: 0 10 | MaxCharge: 0 11 | Count: 0 12 | string: 13 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/RegenArmor.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/RegenPierce.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 0.0 6 | Cost: 0.0 7 | int: 8 | Charge: 0 9 | MaxCharge: 0 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Sight.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: false 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 0 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Slow.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: true 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 1 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/SpecialBoot.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 180.0 6 | Cost: 0.0 7 | int: 8 | Charge: 1 9 | MaxCharge: 1 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/SpecialShield.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | float: 5 | Cooldown: 300.0 6 | Cost: 0.0 7 | int: 8 | Charge: 1 9 | MaxCharge: 1 10 | Count: 1 11 | string: 12 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Stun.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: true 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: true 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | Duration: 1.0 9 | int: 10 | Charge: 0 11 | MaxCharge: 0 12 | Count: 1 13 | string: 14 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/UnitStatus.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: false 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | int: 9 | Charge: 0 10 | MaxCharge: 0 11 | Count: 0 12 | string: 13 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Combats/Untargetable.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | StackDisplayCount: false 3 | ExecuteConsumeCount: false 4 | IsSendDataToClient: false 5 | float: 6 | Cooldown: 0.0 7 | Cost: 0.0 8 | int: 9 | Charge: 0 10 | MaxCharge: 0 11 | Count: 0 12 | string: 13 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/Core.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | RespawnTime: 10.0 5 | SpawnRadius: 2.0 6 | int: 7 | string: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/Default.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: DefaultName -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/FireBall.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | int: 4 | string: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/FireBreath.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | int: 4 | string: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/Fountain.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | RegainRate: 0.1 5 | int: 6 | string: 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/HakureiReimu.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: HakureiReimu 7 | QSkill : EarthShatter 8 | WSkill : PoisonGas 9 | ESkill : PressurisedSteam 10 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/HatsuneMiku.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: HatsuneMiku 7 | QSkill : FireBall 8 | WSkill : FireBreath 9 | ESkill : Meteor 10 | RSkill : BigBang -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/KizunaAI.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: KizunaAI 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/Meteor.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | int: 4 | string: 5 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/Minion.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | AttackRadius: 5.0 5 | DestroyTime: 3.0 6 | int: 7 | string: 8 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/Monster.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/Serval.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: Serval 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/Tower.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/TowerBullet.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | TargetHeight : 0.8 4 | Speed : 10 5 | int: 6 | string: 7 | -------------------------------------------------------------------------------- /MOBA_CSharp_Unity_Client/YAML/Units/Yukikaze.yml: -------------------------------------------------------------------------------- 1 | bool: 2 | float: 3 | VisionRadius: 10.0 4 | int: 5 | string: 6 | Name: Yukikaze 7 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da9d0d6670abb814f912acd1d34b80f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Plugins/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/MOBA_CSharp_Map_Editor/Assets/Plugins/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Plugins/SharpNav.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/MOBA_CSharp_Map_Editor/Assets/Plugins/SharpNav.dll -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Plugins/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/MOBA_CSharp_Map_Editor/Assets/Plugins/YamlDotNet.dll -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c94097fcfabac504daa189b0ec815d62 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Bush.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a65acac10f60a644b786446d5d5ab4b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Bush/Bush.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5335609745d4f14dbcf43964a063670 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Collision.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11f06f3d83ea6b04baf70d0919883cce 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Collision/Circle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a228768ccedfe240901c3100759af09 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Collision/Edge.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fe81c6f61ef2d74e95caf29d7329ef1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17cf57c313edc144cb09a7163a921d70 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Core/Core.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bbfc41d167d244438983a012dbd38bf 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Map.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26bb2e98e15f65d4f965c8e44e3a14e1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/MinionRelayPoint.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a54fbbdc2f1b18498d85693c30f18bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/MinionRelayPoint/MinionRelayPoint.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e928961c41d2732478c89e48464c21c4 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Monster.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fde4ae1a51e35454bae2ad98fb065398 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Monster/Monster.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 967828ae1f396f04386fabae2c692088 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Spawn.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7ee430d2696d524cbbb74746b3e81ee 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Spawn/Spawn.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d21abc8b4a48a14698b5b9863e6402d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Tower.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5032c87281bac38469b32ac66495664b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Tower/Tower.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 369a2d9616b3b2242a16099a2771783a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Prefabs/Wall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6650a7616c41422488c9d7527e4340a3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c6bbc586e2ac5e43bc916db557f4687 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scenes/map.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0b81dce161fbf142aa5d7a2c6466a7f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7980d8b4b21b056429a48a53ee63ea2d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Builder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 326495d37a408084ea4d3247d291ae44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Builder/BushBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e28e2145e3562d4b8fe36f0caecb22b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Builder/CircleBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02f17e4b5a574d04e8047798012271f1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Builder/CoreBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51105840f8414fa4ba7d4ea072a2952a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Builder/EdgeBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c1bb1886f6539d4e9148ee19ff8b3a9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Builder/MonsterBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94c750bbe1e823b44a2ac4c6971a125c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Builder/RectBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 235ac6aa1428a824e997269a07236229 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Builder/SpawnBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1292000f4d5e51a40bdd37bdb662a499 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Builder/TowerBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4052ed23f4fa1f444b4fa8b21b043cfc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/ExportScene.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe5a1644b49f198429b84922e7299bd1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0022a1f17bd7e7245b47c39fe3c9fee8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/BushInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class BushInfo 5 | { 6 | public float x0, y0; 7 | public float x1, y1; 8 | public float x2, y2; 9 | public float x3, y3; 10 | } -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/BushInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87eefce3cc74bd34c9d0f683395d3f59 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/CircleInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class CircleInfo 5 | { 6 | public float x; 7 | public float y; 8 | public float radius; 9 | } -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/CircleInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24febc714911d2c428faddfc656ef718 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/CoreInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class CoreInfo 5 | { 6 | public float x, y; 7 | public float angle; 8 | public float radius; 9 | } -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/CoreInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c23bbc65bf3c904ca3f660081994b93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/EdgeInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class EdgeInfo 5 | { 6 | public float x0, y0; 7 | public float x1, y1; 8 | } -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/EdgeInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0312224943678504fa2dc27bf0adbdfd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/MapInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d463240bef23ac4882746353131c6c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/MinionRelayPointInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class MinionRelayPointInfo 5 | { 6 | public float x, y; 7 | public bool blueTeam; 8 | public int laneNum; //Top:0, Mid:1, Bot:2 9 | public int index; 10 | } -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/MinionRelayPointInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 533c6ec9c09899144b07c8f57a2cacd1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/MonsterInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class MonsterInfo 5 | { 6 | public UnitType type; 7 | public float x, y; 8 | public float angle; 9 | public float chaseRadius; 10 | public float respawnTime; 11 | } -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/MonsterInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9759a805368bc654e9bd5c68c501a36a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/SpawnInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class SpawnInfo 5 | { 6 | public float x, y; 7 | public float regainRadius; 8 | } -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/SpawnInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 013c9631308391841b1face588522f26 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/TowerInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class TowerInfo 5 | { 6 | public float x, y; 7 | public float angle; 8 | public bool blueTeam; 9 | public float radius; 10 | public float height; 11 | } -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/Json/TowerInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58729e23b7c5f01459e982c30a94d342 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/ObjModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 085a91e9e94f68f4a8f1d2092b3305d4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/Assets/Scripts/UnitType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff3d9aeebe334f342ae789f2c2ec79a6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/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 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/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 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.4f1 2 | -------------------------------------------------------------------------------- /Map_Editor/MOBA_CSharp_Map_Editor/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Map_Editor/NavMeshViewer/Examples.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/NavMeshViewer/Examples.exe -------------------------------------------------------------------------------- /Map_Editor/NavMeshViewer/Gwen.Renderer.OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/NavMeshViewer/Gwen.Renderer.OpenTK.dll -------------------------------------------------------------------------------- /Map_Editor/NavMeshViewer/Gwen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/NavMeshViewer/Gwen.dll -------------------------------------------------------------------------------- /Map_Editor/NavMeshViewer/GwenSkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/NavMeshViewer/GwenSkin.png -------------------------------------------------------------------------------- /Map_Editor/NavMeshViewer/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/NavMeshViewer/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Map_Editor/NavMeshViewer/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/NavMeshViewer/OpenTK.dll -------------------------------------------------------------------------------- /Map_Editor/NavMeshViewer/SharpNav.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/NavMeshViewer/SharpNav.dll -------------------------------------------------------------------------------- /Map_Editor/NavMeshViewer/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasgamesdev/MOBA_CSharp_Unity/f29f2f3da1f1f843292fa167785dbd446fbf8d52/Map_Editor/NavMeshViewer/YamlDotNet.dll --------------------------------------------------------------------------------