├── .gitattributes ├── .gitignore ├── Docs └── Image │ └── img2.png ├── LICENSE ├── README.md ├── RPG ├── .vsconfig ├── Assets │ ├── GameArt.meta │ ├── GameArt │ │ ├── Character.meta │ │ ├── Character │ │ │ ├── Footman.meta │ │ │ └── Footman │ │ │ │ ├── Animation.meta │ │ │ │ ├── Animation │ │ │ │ ├── Materials.meta │ │ │ │ ├── footman@attack.fbx │ │ │ │ ├── footman@attack.fbx.meta │ │ │ │ ├── footman@attack02.fbx │ │ │ │ ├── footman@attack02.fbx.meta │ │ │ │ ├── footman@attack03.fbx │ │ │ │ ├── footman@attack03.fbx.meta │ │ │ │ ├── footman@defend.fbx │ │ │ │ ├── footman@defend.fbx.meta │ │ │ │ ├── footman@die.fbx │ │ │ │ ├── footman@die.fbx.meta │ │ │ │ ├── footman@getHit.fbx │ │ │ │ ├── footman@getHit.fbx.meta │ │ │ │ ├── footman@idle.fbx │ │ │ │ ├── footman@idle.fbx.meta │ │ │ │ ├── footman@idle02.fbx │ │ │ │ ├── footman@idle02.fbx.meta │ │ │ │ ├── footman@idle03.fbx │ │ │ │ ├── footman@idle03.fbx.meta │ │ │ │ ├── footman@jump.fbx │ │ │ │ ├── footman@jump.fbx.meta │ │ │ │ ├── footman@run.fbx │ │ │ │ ├── footman@run.fbx.meta │ │ │ │ ├── footman@taunt.fbx │ │ │ │ ├── footman@taunt.fbx.meta │ │ │ │ ├── footman@walk.fbx │ │ │ │ ├── footman@walk.fbx.meta │ │ │ │ ├── footman@walkBattleBackward.fbx │ │ │ │ ├── footman@walkBattleBackward.fbx.meta │ │ │ │ ├── footman@walkBattleForward.fbx │ │ │ │ ├── footman@walkBattleForward.fbx.meta │ │ │ │ ├── footman@walkBattleLeft.fbx │ │ │ │ ├── footman@walkBattleLeft.fbx.meta │ │ │ │ ├── footman@walkBattleRight.fbx │ │ │ │ └── footman@walkBattleRight.fbx.meta │ │ │ │ ├── FBX.meta │ │ │ │ ├── FBX │ │ │ │ ├── footman.fbx │ │ │ │ └── footman.fbx.meta │ │ │ │ ├── Material.meta │ │ │ │ ├── Material │ │ │ │ ├── footmanPBRBlue.mat │ │ │ │ ├── footmanPBRBlue.mat.meta │ │ │ │ ├── footmanPBRGreen.mat │ │ │ │ ├── footmanPBRGreen.mat.meta │ │ │ │ ├── footmanPBRRed.mat │ │ │ │ ├── footmanPBRRed.mat.meta │ │ │ │ ├── footmanPBRYellow.mat │ │ │ │ └── footmanPBRYellow.mat.meta │ │ │ │ ├── Texture.meta │ │ │ │ └── Texture │ │ │ │ ├── footmanPBRBlue.meta │ │ │ │ ├── footmanPBRBlue │ │ │ │ ├── footman_AO.png │ │ │ │ ├── footman_AO.png.meta │ │ │ │ ├── footman_Albedo.png │ │ │ │ ├── footman_Albedo.png.meta │ │ │ │ ├── footman_Metallic.png │ │ │ │ ├── footman_Metallic.png.meta │ │ │ │ ├── footman_Normal.png │ │ │ │ └── footman_Normal.png.meta │ │ │ │ ├── footmanPBRGreen.meta │ │ │ │ ├── footmanPBRGreen │ │ │ │ ├── footman_AO.png │ │ │ │ ├── footman_AO.png.meta │ │ │ │ ├── footman_Albedo.png │ │ │ │ ├── footman_Albedo.png.meta │ │ │ │ ├── footman_Metallic.png │ │ │ │ ├── footman_Metallic.png.meta │ │ │ │ ├── footman_Normal.png │ │ │ │ └── footman_Normal.png.meta │ │ │ │ ├── footmanPBRRed.meta │ │ │ │ ├── footmanPBRRed │ │ │ │ ├── footman_AO.png │ │ │ │ ├── footman_AO.png.meta │ │ │ │ ├── footman_Albedo.png │ │ │ │ ├── footman_Albedo.png.meta │ │ │ │ ├── footman_Metallic.png │ │ │ │ ├── footman_Metallic.png.meta │ │ │ │ ├── footman_Normal.png │ │ │ │ └── footman_Normal.png.meta │ │ │ │ ├── footmanPBRYellow.meta │ │ │ │ └── footmanPBRYellow │ │ │ │ ├── footman_AO.png │ │ │ │ ├── footman_AO.png.meta │ │ │ │ ├── footman_Albedo.png │ │ │ │ ├── footman_Albedo.png.meta │ │ │ │ ├── footman_Metallic.png │ │ │ │ ├── footman_Metallic.png.meta │ │ │ │ ├── footman_Normal.png │ │ │ │ └── footman_Normal.png.meta │ │ ├── Panel.meta │ │ ├── Panel │ │ │ ├── Scene.meta │ │ │ ├── Scene │ │ │ │ ├── Canvas.unity │ │ │ │ └── Canvas.unity.meta │ │ │ ├── Sprite.meta │ │ │ └── Sprite │ │ │ │ ├── UICommon.meta │ │ │ │ ├── UICommon │ │ │ │ ├── Button.meta │ │ │ │ ├── Button │ │ │ │ │ ├── Button_Circular_Background.png │ │ │ │ │ ├── Button_Circular_Background.png.meta │ │ │ │ │ ├── Button_Circular_Press_Overlay.png │ │ │ │ │ ├── Button_Circular_Press_Overlay.png.meta │ │ │ │ │ ├── Button_Rectangular_Large_Green_Background.png │ │ │ │ │ ├── Button_Rectangular_Large_Green_Background.png.meta │ │ │ │ │ ├── Button_Rectangular_Large_Red_Background.png │ │ │ │ │ ├── Button_Rectangular_Large_Red_Background.png.meta │ │ │ │ │ ├── Button_Rectangular_Medium_Background.png │ │ │ │ │ ├── Button_Rectangular_Medium_Background.png.meta │ │ │ │ │ ├── Button_Rectangular_Medium_Press_Overlay.png │ │ │ │ │ ├── Button_Rectangular_Medium_Press_Overlay.png.meta │ │ │ │ │ ├── Button_Square_SBrown_Background.png │ │ │ │ │ ├── Button_Square_SBrown_Background.png.meta │ │ │ │ │ ├── Button_Square_SBrown_Background2.png │ │ │ │ │ ├── Button_Square_SBrown_Background2.png.meta │ │ │ │ │ ├── Button_Square_SBrown_Background3.png │ │ │ │ │ ├── Button_Square_SBrown_Background3.png.meta │ │ │ │ │ ├── Button_Square_SBrown_Press_Overlay.png │ │ │ │ │ ├── Button_Square_SBrown_Press_Overlay.png.meta │ │ │ │ │ ├── Button_Square_SBrown_Press_Overlay2.png │ │ │ │ │ ├── Button_Square_SBrown_Press_Overlay2.png.meta │ │ │ │ │ ├── Button_Square_SBrown_Press_Overlay3.png │ │ │ │ │ ├── Button_Square_SBrown_Press_Overlay3.png.meta │ │ │ │ │ ├── Button_Square_SYellow_Background.png │ │ │ │ │ ├── Button_Square_SYellow_Background.png.meta │ │ │ │ │ ├── Button_Square_SYellow_Press_Overlay.png │ │ │ │ │ └── Button_Square_SYellow_Press_Overlay.png.meta │ │ │ │ ├── Controller.meta │ │ │ │ ├── Controller │ │ │ │ │ ├── Controller_Background.png │ │ │ │ │ ├── Controller_Background.png.meta │ │ │ │ │ ├── Controller_Handle_Background.png │ │ │ │ │ ├── Controller_Handle_Background.png.meta │ │ │ │ │ ├── Controller_Handle_Foreground.png │ │ │ │ │ ├── Controller_Handle_Foreground.png.meta │ │ │ │ │ ├── Controller_Handle_Press_Overlay.png │ │ │ │ │ └── Controller_Handle_Press_Overlay.png.meta │ │ │ │ ├── Head.meta │ │ │ │ ├── Head │ │ │ │ │ ├── Heart.png │ │ │ │ │ ├── Heart.png.meta │ │ │ │ │ ├── UnitFrame_Background.png │ │ │ │ │ ├── UnitFrame_Background.png.meta │ │ │ │ │ ├── UnitFrame_Fill_Health.png │ │ │ │ │ ├── UnitFrame_Fill_Health.png.meta │ │ │ │ │ ├── UnitFrame_Fill_Power.png │ │ │ │ │ ├── UnitFrame_Fill_Power.png.meta │ │ │ │ │ ├── UnitFrame_IconFrame.png │ │ │ │ │ ├── UnitFrame_IconFrame.png.meta │ │ │ │ │ ├── Waterdrop.png │ │ │ │ │ └── Waterdrop.png.meta │ │ │ │ ├── Icon.meta │ │ │ │ ├── Icon │ │ │ │ │ ├── Accpet.png │ │ │ │ │ ├── Accpet.png.meta │ │ │ │ │ ├── Cogwheel.png │ │ │ │ │ ├── Cogwheel.png.meta │ │ │ │ │ ├── Cross.png │ │ │ │ │ ├── Cross.png.meta │ │ │ │ │ ├── Flag.png │ │ │ │ │ ├── Flag.png.meta │ │ │ │ │ ├── Star.png │ │ │ │ │ └── Star.png.meta │ │ │ │ ├── Slider.meta │ │ │ │ ├── Slider │ │ │ │ │ ├── Slider_Background.png │ │ │ │ │ ├── Slider_Background.png.meta │ │ │ │ │ ├── Slider_Foreground.png │ │ │ │ │ ├── Slider_Foreground.png.meta │ │ │ │ │ ├── Slider_Thumb.png │ │ │ │ │ ├── Slider_Thumb.png.meta │ │ │ │ │ ├── Slider_Thumb_Press_Overlay.png │ │ │ │ │ └── Slider_Thumb_Press_Overlay.png.meta │ │ │ │ ├── TextField.meta │ │ │ │ ├── TextField │ │ │ │ │ ├── Text_Field_Background.png │ │ │ │ │ ├── Text_Field_Background.png.meta │ │ │ │ │ ├── Text_Field_Focus_Overlay.png │ │ │ │ │ ├── Text_Field_Focus_Overlay.png.meta │ │ │ │ │ ├── Text_Field_Icon_Pass.png │ │ │ │ │ ├── Text_Field_Icon_Pass.png.meta │ │ │ │ │ ├── Text_Field_Icon_User.png │ │ │ │ │ └── Text_Field_Icon_User.png.meta │ │ │ │ ├── Toggle.meta │ │ │ │ └── Toggle │ │ │ │ │ ├── Toggle_Checkbox_Background.png │ │ │ │ │ ├── Toggle_Checkbox_Background.png.meta │ │ │ │ │ ├── Toggle_Checkbox_Foreground.png │ │ │ │ │ ├── Toggle_Checkbox_Foreground.png.meta │ │ │ │ │ ├── Toggle_Checkbox_Press_Overlay.png │ │ │ │ │ ├── Toggle_Checkbox_Press_Overlay.png.meta │ │ │ │ │ ├── Toggle_Radio_Background.png │ │ │ │ │ ├── Toggle_Radio_Background.png.meta │ │ │ │ │ ├── Toggle_Radio_Foreground.png │ │ │ │ │ ├── Toggle_Radio_Foreground.png.meta │ │ │ │ │ ├── Toggle_Radio_Press_Overlay.png │ │ │ │ │ └── Toggle_Radio_Press_Overlay.png.meta │ │ │ │ ├── UILoading.meta │ │ │ │ ├── UILoading │ │ │ │ ├── Loading_Background.png │ │ │ │ ├── Loading_Background.png.meta │ │ │ │ ├── Loading_Frame_0000.png │ │ │ │ ├── Loading_Frame_0000.png.meta │ │ │ │ ├── Loading_Frame_0001.png │ │ │ │ ├── Loading_Frame_0001.png.meta │ │ │ │ ├── Loading_Frame_0002.png │ │ │ │ ├── Loading_Frame_0002.png.meta │ │ │ │ ├── Loading_Frame_0003.png │ │ │ │ ├── Loading_Frame_0003.png.meta │ │ │ │ ├── Loading_Frame_0004.png │ │ │ │ ├── Loading_Frame_0004.png.meta │ │ │ │ ├── Loading_Frame_0005.png │ │ │ │ ├── Loading_Frame_0005.png.meta │ │ │ │ ├── Loading_Frame_0006.png │ │ │ │ ├── Loading_Frame_0006.png.meta │ │ │ │ ├── Loading_Frame_0007.png │ │ │ │ ├── Loading_Frame_0007.png.meta │ │ │ │ ├── Loading_Frame_0008.png │ │ │ │ ├── Loading_Frame_0008.png.meta │ │ │ │ ├── Loading_Frame_0009.png │ │ │ │ ├── Loading_Frame_0009.png.meta │ │ │ │ ├── Loading_Frame_0010.png │ │ │ │ ├── Loading_Frame_0010.png.meta │ │ │ │ ├── Loading_Frame_0011.png │ │ │ │ ├── Loading_Frame_0011.png.meta │ │ │ │ ├── Loading_Frame_0012.png │ │ │ │ ├── Loading_Frame_0012.png.meta │ │ │ │ ├── Loading_Frame_0013.png │ │ │ │ ├── Loading_Frame_0013.png.meta │ │ │ │ ├── Loading_Frame_0014.png │ │ │ │ ├── Loading_Frame_0014.png.meta │ │ │ │ ├── Loading_Frame_0015.png │ │ │ │ ├── Loading_Frame_0015.png.meta │ │ │ │ ├── Loading_Frame_0016.png │ │ │ │ ├── Loading_Frame_0016.png.meta │ │ │ │ ├── Loading_Frame_0017.png │ │ │ │ ├── Loading_Frame_0017.png.meta │ │ │ │ ├── Loading_Frame_0018.png │ │ │ │ ├── Loading_Frame_0018.png.meta │ │ │ │ ├── Loading_Frame_0019.png │ │ │ │ ├── Loading_Frame_0019.png.meta │ │ │ │ ├── Loading_Frame_0020.png │ │ │ │ ├── Loading_Frame_0020.png.meta │ │ │ │ ├── Loading_Frame_0021.png │ │ │ │ └── Loading_Frame_0021.png.meta │ │ │ │ ├── UISpellIcon.meta │ │ │ │ ├── UISpellIcon │ │ │ │ ├── Icon_Arrows_128.png │ │ │ │ ├── Icon_Arrows_128.png.meta │ │ │ │ ├── Icon_Deathkiss_128.png │ │ │ │ ├── Icon_Deathkiss_128.png.meta │ │ │ │ ├── Icon_Fireball_128.png │ │ │ │ ├── Icon_Fireball_128.png.meta │ │ │ │ ├── Icon_Leafs_128.png │ │ │ │ ├── Icon_Leafs_128.png.meta │ │ │ │ ├── Icon_Shield_128.png │ │ │ │ ├── Icon_Shield_128.png.meta │ │ │ │ ├── Icon_Sword_128.png │ │ │ │ ├── Icon_Sword_128.png.meta │ │ │ │ ├── Shield.png │ │ │ │ ├── Shield.png.meta │ │ │ │ ├── Sword.png │ │ │ │ ├── Sword.png.meta │ │ │ │ ├── Swords.png │ │ │ │ └── Swords.png.meta │ │ │ │ ├── UIWindow.meta │ │ │ │ ├── UIWindow │ │ │ │ ├── Control_Area_Background.png │ │ │ │ ├── Control_Area_Background.png.meta │ │ │ │ ├── Control_Area_Background2.png │ │ │ │ ├── Control_Area_Background2.png.meta │ │ │ │ ├── Control_Area_Background2_Extension.png │ │ │ │ ├── Control_Area_Background2_Extension.png.meta │ │ │ │ ├── Control_Area_Background_Extension.png │ │ │ │ ├── Control_Area_Background_Extension.png.meta │ │ │ │ ├── Window_Background.png │ │ │ │ ├── Window_Background.png.meta │ │ │ │ ├── Window_Close_Button.png │ │ │ │ ├── Window_Close_Button.png.meta │ │ │ │ ├── Window_Close_Button_Press_Overlay.png │ │ │ │ ├── Window_Close_Button_Press_Overlay.png.meta │ │ │ │ ├── Window_Decoration_Left.png │ │ │ │ ├── Window_Decoration_Left.png.meta │ │ │ │ ├── Window_Decoration_Left_Bottom.png │ │ │ │ ├── Window_Decoration_Left_Bottom.png.meta │ │ │ │ ├── Window_Header.png │ │ │ │ ├── Window_Header.png.meta │ │ │ │ ├── Window_Header_2.png │ │ │ │ └── Window_Header_2.png.meta │ │ │ │ ├── UIWordArt.meta │ │ │ │ └── UIWordArt │ │ │ │ ├── login_title.png │ │ │ │ └── login_title.png.meta │ │ ├── Scene.meta │ │ ├── Scene │ │ │ ├── Material.meta │ │ │ ├── Material │ │ │ │ ├── Fir_v1.mat │ │ │ │ ├── Fir_v1.mat.meta │ │ │ │ ├── Floor_Grass_v1_1.mat │ │ │ │ ├── Floor_Grass_v1_1.mat.meta │ │ │ │ ├── Floor_Grass_v1_2.mat │ │ │ │ ├── Floor_Grass_v1_2.mat.meta │ │ │ │ ├── Grass_v1_1.mat │ │ │ │ ├── Grass_v1_1.mat.meta │ │ │ │ ├── Grass_v1_2.mat │ │ │ │ ├── Grass_v1_2.mat.meta │ │ │ │ ├── Grass_v1_3.mat │ │ │ │ ├── Grass_v1_3.mat.meta │ │ │ │ ├── Grass_v2_1.mat │ │ │ │ ├── Grass_v2_1.mat.meta │ │ │ │ ├── Pine_v1.mat │ │ │ │ └── Pine_v1.mat.meta │ │ │ ├── Model.meta │ │ │ ├── Model │ │ │ │ ├── Forest_pack_models_set.FBX │ │ │ │ └── Forest_pack_models_set.FBX.meta │ │ │ ├── Prefab.meta │ │ │ ├── Prefab │ │ │ │ ├── Fir_v1_1.prefab │ │ │ │ ├── Fir_v1_1.prefab.meta │ │ │ │ ├── Fir_v1_2.prefab │ │ │ │ ├── Fir_v1_2.prefab.meta │ │ │ │ ├── Floor_Grass_v1_1.prefab │ │ │ │ ├── Floor_Grass_v1_1.prefab.meta │ │ │ │ ├── Floor_Grass_v1_2.prefab │ │ │ │ ├── Floor_Grass_v1_2.prefab.meta │ │ │ │ ├── Grass_v1_1.prefab │ │ │ │ ├── Grass_v1_1.prefab.meta │ │ │ │ ├── Grass_v1_2.prefab │ │ │ │ ├── Grass_v1_2.prefab.meta │ │ │ │ ├── Grass_v1_3.prefab │ │ │ │ ├── Grass_v1_3.prefab.meta │ │ │ │ ├── Grass_v2_1.prefab │ │ │ │ ├── Grass_v2_1.prefab.meta │ │ │ │ ├── Pine_v1_1.prefab │ │ │ │ ├── Pine_v1_1.prefab.meta │ │ │ │ ├── Pine_v1_2.prefab │ │ │ │ └── Pine_v1_2.prefab.meta │ │ │ ├── Texture.meta │ │ │ └── Texture │ │ │ │ ├── Fir_v1.png │ │ │ │ ├── Fir_v1.png.meta │ │ │ │ ├── Floor_Grass_v1_1.tga │ │ │ │ ├── Floor_Grass_v1_1.tga.meta │ │ │ │ ├── Floor_Grass_v1_2.tga │ │ │ │ ├── Floor_Grass_v1_2.tga.meta │ │ │ │ ├── Grass_v1_1.png │ │ │ │ ├── Grass_v1_1.png.meta │ │ │ │ ├── Grass_v1_2.png │ │ │ │ ├── Grass_v1_2.png.meta │ │ │ │ ├── Grass_v1_3.png │ │ │ │ ├── Grass_v1_3.png.meta │ │ │ │ ├── Grass_v2_1.png │ │ │ │ ├── Grass_v2_1.png.meta │ │ │ │ ├── Pine_v1.png │ │ │ │ └── Pine_v1.png.meta │ │ ├── ShaderVariants.meta │ │ ├── ShaderVariants │ │ │ ├── MyShaderVariants.json │ │ │ ├── MyShaderVariants.json.meta │ │ │ ├── MyShaderVariants.shadervariants │ │ │ └── MyShaderVariants.shadervariants.meta │ │ ├── Shaders.meta │ │ └── Shaders │ │ │ ├── StandardMobile.cginc │ │ │ ├── StandardMobile.cginc.meta │ │ │ ├── StandardMobile.shader │ │ │ └── StandardMobile.shader.meta │ ├── GameRes.meta │ ├── GameRes │ │ ├── Assembly.meta │ │ ├── Assembly │ │ │ ├── GameDLL.bytes │ │ │ ├── GameDLL.bytes.meta │ │ │ ├── GamePDB.bytes │ │ │ └── GamePDB.bytes.meta │ │ ├── Audio.meta │ │ ├── Audio │ │ │ ├── Footman.meta │ │ │ ├── Footman │ │ │ │ ├── Attack.mp3 │ │ │ │ ├── Attack.mp3.meta │ │ │ │ ├── Death.mp3 │ │ │ │ ├── Death.mp3.meta │ │ │ │ ├── Help.mp3 │ │ │ │ ├── Help.mp3.meta │ │ │ │ ├── Hit1.mp3 │ │ │ │ ├── Hit1.mp3.meta │ │ │ │ ├── Hit2.mp3 │ │ │ │ ├── Hit2.mp3.meta │ │ │ │ ├── Hit3.mp3 │ │ │ │ ├── Hit3.mp3.meta │ │ │ │ ├── OnMyWay.mp3 │ │ │ │ ├── OnMyWay.mp3.meta │ │ │ │ ├── Yes.mp3 │ │ │ │ ├── Yes.mp3.meta │ │ │ │ ├── Yes2.mp3 │ │ │ │ └── Yes2.mp3.meta │ │ │ ├── Music.meta │ │ │ ├── Music │ │ │ │ ├── town.mp3 │ │ │ │ └── town.mp3.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── sfx_accept1.mp3 │ │ │ │ ├── sfx_accept1.mp3.meta │ │ │ │ ├── sfx_click1.mp3 │ │ │ │ ├── sfx_click1.mp3.meta │ │ │ │ ├── sfx_error1.mp3 │ │ │ │ ├── sfx_error1.mp3.meta │ │ │ │ ├── sfx_return1.mp3 │ │ │ │ ├── sfx_return1.mp3.meta │ │ │ │ ├── sfx_rover1.mp3 │ │ │ │ ├── sfx_rover1.mp3.meta │ │ │ │ ├── stinger_lose.mp3 │ │ │ │ ├── stinger_lose.mp3.meta │ │ │ │ ├── stinger_win.mp3 │ │ │ │ └── stinger_win.mp3.meta │ │ ├── Entity.meta │ │ ├── Entity │ │ │ ├── Character.meta │ │ │ └── Character │ │ │ │ ├── footman_Blue.prefab │ │ │ │ ├── footman_Blue.prefab.meta │ │ │ │ ├── footman_Green.prefab │ │ │ │ ├── footman_Green.prefab.meta │ │ │ │ ├── footman_Red.prefab │ │ │ │ ├── footman_Red.prefab.meta │ │ │ │ ├── footman_Yellow.prefab │ │ │ │ └── footman_Yellow.prefab.meta │ │ ├── Scene.meta │ │ ├── Scene │ │ │ ├── Boot.unity │ │ │ ├── Boot.unity.meta │ │ │ ├── Login.unity │ │ │ ├── Login.unity.meta │ │ │ ├── Town.meta │ │ │ ├── Town.unity │ │ │ ├── Town.unity.meta │ │ │ └── Town │ │ │ │ ├── LightingData.asset │ │ │ │ ├── LightingData.asset.meta │ │ │ │ ├── ReflectionProbe-0.exr │ │ │ │ └── ReflectionProbe-0.exr.meta │ │ ├── UIAtlas.meta │ │ ├── UIAtlas │ │ │ ├── UICommon.spriteatlas │ │ │ ├── UICommon.spriteatlas.meta │ │ │ ├── UILoading.spriteatlas │ │ │ ├── UILoading.spriteatlas.meta │ │ │ ├── UISpellIcon.spriteatlas │ │ │ ├── UISpellIcon.spriteatlas.meta │ │ │ ├── UIWindow.spriteatlas │ │ │ ├── UIWindow.spriteatlas.meta │ │ │ ├── UIWordArt.spriteatlas │ │ │ └── UIWordArt.spriteatlas.meta │ │ ├── UIPanel.meta │ │ ├── UIPanel │ │ │ ├── UILoading.prefab │ │ │ ├── UILoading.prefab.meta │ │ │ ├── UILogin.prefab │ │ │ ├── UILogin.prefab.meta │ │ │ ├── UIMain.prefab │ │ │ ├── UIMain.prefab.meta │ │ │ ├── UIRoot.prefab │ │ │ ├── UIRoot.prefab.meta │ │ │ ├── UISetting.prefab │ │ │ ├── UISetting.prefab.meta │ │ │ ├── _UIXXX.prefab │ │ │ └── _UIXXX.prefab.meta │ │ ├── UITexture.meta │ │ └── UITexture │ │ │ ├── bg1.jpg │ │ │ ├── bg1.jpg.meta │ │ │ ├── bg2.png │ │ │ └── bg2.png.meta │ ├── GameScript.meta │ ├── GameScript │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── EditorInitialize.cs │ │ │ ├── EditorInitialize.cs.meta │ │ │ ├── ILRuntime.meta │ │ │ ├── ILRuntime │ │ │ │ ├── ILRuntimeAssemblyBuilder.cs │ │ │ │ ├── ILRuntimeAssemblyBuilder.cs.meta │ │ │ │ ├── ILRuntimeCLRBinding.cs │ │ │ │ ├── ILRuntimeCLRBinding.cs.meta │ │ │ │ ├── ILRuntimeInitialize.cs │ │ │ │ └── ILRuntimeInitialize.cs.meta │ │ │ ├── ModelMaterialProcessor.cs │ │ │ └── ModelMaterialProcessor.cs.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── GameLauncher.cs │ │ │ ├── GameLauncher.cs.meta │ │ │ ├── GameUtility.cs │ │ │ ├── GameUtility.cs.meta │ │ │ ├── ILRAdapter.meta │ │ │ ├── ILRAdapter │ │ │ ├── AssetConfigAdapter.cs │ │ │ ├── AssetConfigAdapter.cs.meta │ │ │ ├── CanvasWindowAdapter.cs │ │ │ ├── CanvasWindowAdapter.cs.meta │ │ │ ├── ConfigTableAdapter.cs │ │ │ ├── ConfigTableAdapter.cs.meta │ │ │ ├── CoroutineAdapter.cs │ │ │ ├── CoroutineAdapter.cs.meta │ │ │ ├── IEventMessageAdapter.cs │ │ │ ├── IEventMessageAdapter.cs.meta │ │ │ ├── IFsmNodeAdapter.cs │ │ │ ├── IFsmNodeAdapter.cs.meta │ │ │ ├── IMessageAdapter.cs │ │ │ └── IMessageAdapter.cs.meta │ │ │ ├── ILRBinding.meta │ │ │ ├── ILRManager.meta │ │ │ ├── ILRManager │ │ │ ├── AdaptMethod.cs │ │ │ ├── AdaptMethod.cs.meta │ │ │ ├── ILRDefine.cs │ │ │ ├── ILRDefine.cs.meta │ │ │ ├── ILRManager.cs │ │ │ ├── ILRManager.cs.meta │ │ │ ├── ILRRegister.cs │ │ │ ├── ILRRegister.cs.meta │ │ │ ├── StaticMethod.meta │ │ │ ├── StaticMethod │ │ │ │ ├── ILRStaticMethod.cs │ │ │ │ ├── ILRStaticMethod.cs.meta │ │ │ │ ├── IStaticMethod.cs │ │ │ │ ├── IStaticMethod.cs.meta │ │ │ │ ├── MonoStaticMethod.cs │ │ │ │ └── MonoStaticMethod.cs.meta │ │ │ ├── ValueTypeBinder.meta │ │ │ └── ValueTypeBinder │ │ │ │ ├── QuaternionBinder.cs │ │ │ │ ├── QuaternionBinder.cs.meta │ │ │ │ ├── Vector2Binder.cs │ │ │ │ ├── Vector2Binder.cs.meta │ │ │ │ ├── Vector3Binder.cs │ │ │ │ └── Vector3Binder.cs.meta │ │ │ ├── Utility.meta │ │ │ └── Utility │ │ │ ├── BhvCameraFlow.cs │ │ │ ├── BhvCameraFlow.cs.meta │ │ │ ├── ObjectPool.cs │ │ │ ├── ObjectPool.cs.meta │ │ │ ├── UIJoystick.cs │ │ │ └── UIJoystick.cs.meta │ ├── MotionAssets.meta │ ├── MotionAssets │ │ ├── ModelDefaultMaterial.mat │ │ └── ModelDefaultMaterial.mat.meta │ ├── MotionFramework.zip │ ├── MotionFramework.zip.meta │ ├── MotionSetting.meta │ ├── MotionSetting │ │ ├── UIPanelSetting.asset │ │ └── UIPanelSetting.asset.meta │ ├── ThirdParty.meta │ ├── ThirdParty │ │ ├── Google.Protobuf.meta │ │ ├── Google.Protobuf │ │ │ ├── ByteArray.cs │ │ │ ├── ByteArray.cs.meta │ │ │ ├── ByteString.cs │ │ │ ├── ByteString.cs.meta │ │ │ ├── CodedInputStream.cs │ │ │ ├── CodedInputStream.cs.meta │ │ │ ├── CodedOutputStream.ComputeSize.cs │ │ │ ├── CodedOutputStream.ComputeSize.cs.meta │ │ │ ├── CodedOutputStream.cs │ │ │ ├── CodedOutputStream.cs.meta │ │ │ ├── FieldCodec.cs │ │ │ ├── FieldCodec.cs.meta │ │ │ ├── ICustomDiagnosticMessage.cs │ │ │ ├── ICustomDiagnosticMessage.cs.meta │ │ │ ├── IMessage.cs │ │ │ ├── IMessage.cs.meta │ │ │ ├── InvalidProtocolBufferException.cs │ │ │ ├── InvalidProtocolBufferException.cs.meta │ │ │ ├── LimitedInputStream.cs │ │ │ ├── LimitedInputStream.cs.meta │ │ │ ├── MessageExtensions.cs │ │ │ ├── MessageExtensions.cs.meta │ │ │ ├── MessageParser.cs │ │ │ ├── MessageParser.cs.meta │ │ │ ├── PropertyInfoExtensions.cs │ │ │ ├── PropertyInfoExtensions.cs.meta │ │ │ ├── ProtoPreconditions.cs │ │ │ ├── ProtoPreconditions.cs.meta │ │ │ ├── README.txt │ │ │ ├── README.txt.meta │ │ │ ├── RepeatedField.cs │ │ │ ├── RepeatedField.cs.meta │ │ │ ├── StreamExtensions.cs │ │ │ ├── StreamExtensions.cs.meta │ │ │ ├── WireFormat.cs │ │ │ └── WireFormat.cs.meta │ │ ├── ILRuntime.meta │ │ ├── ILRuntime │ │ │ ├── CHANGELOG.md │ │ │ ├── CHANGELOG.md.meta │ │ │ ├── CLR.meta │ │ │ ├── CLR │ │ │ │ ├── Method.meta │ │ │ │ ├── Method │ │ │ │ │ ├── CLRMethod.cs │ │ │ │ │ ├── CLRMethod.cs.meta │ │ │ │ │ ├── ExceptionHandler.cs │ │ │ │ │ ├── ExceptionHandler.cs.meta │ │ │ │ │ ├── ILMethod.cs │ │ │ │ │ ├── ILMethod.cs.meta │ │ │ │ │ ├── IMethod.cs │ │ │ │ │ ├── IMethod.cs.meta │ │ │ │ │ ├── IMethodExtensions.cs │ │ │ │ │ └── IMethodExtensions.cs.meta │ │ │ │ ├── TypeSystem.meta │ │ │ │ ├── TypeSystem │ │ │ │ │ ├── CLRType.cs │ │ │ │ │ ├── CLRType.cs.meta │ │ │ │ │ ├── ILGenericParameterType.cs │ │ │ │ │ ├── ILGenericParameterType.cs.meta │ │ │ │ │ ├── ILType.cs │ │ │ │ │ ├── ILType.cs.meta │ │ │ │ │ ├── IType.cs │ │ │ │ │ └── IType.cs.meta │ │ │ │ ├── Utils.meta │ │ │ │ └── Utils │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ └── Extensions.cs.meta │ │ │ ├── ILRuntime.asmdef │ │ │ ├── ILRuntime.asmdef.meta │ │ │ ├── LICENSE.md │ │ │ ├── LICENSE.md.meta │ │ │ ├── Other.meta │ │ │ ├── Other │ │ │ │ ├── ByReferenceKeyComparer.cs │ │ │ │ ├── ByReferenceKeyComparer.cs.meta │ │ │ │ ├── DelegateExportAttribute.cs │ │ │ │ ├── DelegateExportAttribute.cs.meta │ │ │ │ ├── NeedAdaptorAttribute.cs │ │ │ │ ├── NeedAdaptorAttribute.cs.meta │ │ │ │ ├── ThreadSafeDictionary.cs │ │ │ │ ├── ThreadSafeDictionary.cs.meta │ │ │ │ ├── UncheckedList.cs │ │ │ │ ├── UncheckedList.cs.meta │ │ │ │ ├── UncheckedStack.cs │ │ │ │ └── UncheckedStack.cs.meta │ │ │ ├── Plugins.meta │ │ │ ├── Plugins │ │ │ │ ├── ILRuntime.Mono.Cecil.Mdb.dll │ │ │ │ ├── ILRuntime.Mono.Cecil.Mdb.dll.meta │ │ │ │ ├── ILRuntime.Mono.Cecil.Mdb.pdb │ │ │ │ ├── ILRuntime.Mono.Cecil.Mdb.pdb.meta │ │ │ │ ├── ILRuntime.Mono.Cecil.Pdb.dll │ │ │ │ ├── ILRuntime.Mono.Cecil.Pdb.dll.meta │ │ │ │ ├── ILRuntime.Mono.Cecil.Pdb.pdb │ │ │ │ ├── ILRuntime.Mono.Cecil.Pdb.pdb.meta │ │ │ │ ├── ILRuntime.Mono.Cecil.dll │ │ │ │ ├── ILRuntime.Mono.Cecil.dll.meta │ │ │ │ ├── ILRuntime.Mono.Cecil.pdb │ │ │ │ └── ILRuntime.Mono.Cecil.pdb.meta │ │ │ ├── README.md │ │ │ ├── README.md.meta │ │ │ ├── Reflection.meta │ │ │ ├── Reflection │ │ │ │ ├── Extensions.cs │ │ │ │ ├── Extensions.cs.meta │ │ │ │ ├── ILRuntimeConstructorInfo.cs │ │ │ │ ├── ILRuntimeConstructorInfo.cs.meta │ │ │ │ ├── ILRuntimeFieldInfo.cs │ │ │ │ ├── ILRuntimeFieldInfo.cs.meta │ │ │ │ ├── ILRuntimeMethodInfo.cs │ │ │ │ ├── ILRuntimeMethodInfo.cs.meta │ │ │ │ ├── ILRuntimeParameterInfo.cs │ │ │ │ ├── ILRuntimeParameterInfo.cs.meta │ │ │ │ ├── ILRuntimePropertyInfo.cs │ │ │ │ ├── ILRuntimePropertyInfo.cs.meta │ │ │ │ ├── ILRuntimeType.cs │ │ │ │ ├── ILRuntimeType.cs.meta │ │ │ │ ├── ILRuntimeWrapperType.cs │ │ │ │ └── ILRuntimeWrapperType.cs.meta │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── Adaptors.meta │ │ │ │ ├── Adaptors │ │ │ │ │ ├── CLRCrossBindingAdaptors.cs │ │ │ │ │ └── CLRCrossBindingAdaptors.cs.meta │ │ │ │ ├── CLRBinding.meta │ │ │ │ ├── CLRBinding │ │ │ │ │ ├── BindingCodeGenerator.cs │ │ │ │ │ ├── BindingCodeGenerator.cs.meta │ │ │ │ │ ├── BindingGeneratorExtensions.cs │ │ │ │ │ ├── BindingGeneratorExtensions.cs.meta │ │ │ │ │ ├── CLRBindingUtils.cs │ │ │ │ │ ├── CLRBindingUtils.cs.meta │ │ │ │ │ ├── CommonBindingGenerator.cs │ │ │ │ │ ├── CommonBindingGenerator.cs.meta │ │ │ │ │ ├── ConstructorBindingGenerator.cs │ │ │ │ │ ├── ConstructorBindingGenerator.cs.meta │ │ │ │ │ ├── FieldBindingGenerator.cs │ │ │ │ │ ├── FieldBindingGenerator.cs.meta │ │ │ │ │ ├── MethodBindingGenerator.cs │ │ │ │ │ ├── MethodBindingGenerator.cs.meta │ │ │ │ │ ├── ValueTypeBindingGenerator.cs │ │ │ │ │ └── ValueTypeBindingGenerator.cs.meta │ │ │ │ ├── Debugger.meta │ │ │ │ ├── Debugger │ │ │ │ │ ├── BreakPointContext.cs │ │ │ │ │ ├── BreakPointContext.cs.meta │ │ │ │ │ ├── BreakpointInfo.cs │ │ │ │ │ ├── BreakpointInfo.cs.meta │ │ │ │ │ ├── DebugMessageType.cs │ │ │ │ │ ├── DebugMessageType.cs.meta │ │ │ │ │ ├── DebugService.cs │ │ │ │ │ ├── DebugService.cs.meta │ │ │ │ │ ├── DebugSocket.cs │ │ │ │ │ ├── DebugSocket.cs.meta │ │ │ │ │ ├── DebuggerServer.meta │ │ │ │ │ ├── DebuggerServer │ │ │ │ │ │ ├── DebuggerServer.cs │ │ │ │ │ │ └── DebuggerServer.cs.meta │ │ │ │ │ ├── Protocol.meta │ │ │ │ │ ├── Protocol │ │ │ │ │ │ ├── CSBindBreakpoint.cs │ │ │ │ │ │ ├── CSBindBreakpoint.cs.meta │ │ │ │ │ │ ├── CSDeleteBreakpoint.cs │ │ │ │ │ │ ├── CSDeleteBreakpoint.cs.meta │ │ │ │ │ │ ├── CSEnumChildren.cs │ │ │ │ │ │ ├── CSEnumChildren.cs.meta │ │ │ │ │ │ ├── CSExecute.cs │ │ │ │ │ │ ├── CSExecute.cs.meta │ │ │ │ │ │ ├── CSResolveIndexer.cs │ │ │ │ │ │ ├── CSResolveIndexer.cs.meta │ │ │ │ │ │ ├── CSResolveVariable.cs │ │ │ │ │ │ ├── CSResolveVariable.cs.meta │ │ │ │ │ │ ├── CSStep.cs │ │ │ │ │ │ ├── CSStep.cs.meta │ │ │ │ │ │ ├── SCAttachResult.cs │ │ │ │ │ │ ├── SCAttachResult.cs.meta │ │ │ │ │ │ ├── SCBindBreakpointResult.cs │ │ │ │ │ │ ├── SCBindBreakpointResult.cs.meta │ │ │ │ │ │ ├── SCBreakpointHit.cs │ │ │ │ │ │ ├── SCBreakpointHit.cs.meta │ │ │ │ │ │ ├── SCEnumChildrenResult.cs │ │ │ │ │ │ ├── SCEnumChildrenResult.cs.meta │ │ │ │ │ │ ├── SCModuleLoaded.cs │ │ │ │ │ │ ├── SCModuleLoaded.cs.meta │ │ │ │ │ │ ├── SCResolveVariableResult.cs │ │ │ │ │ │ ├── SCResolveVariableResult.cs.meta │ │ │ │ │ │ ├── SCStepComplete.cs │ │ │ │ │ │ ├── SCStepComplete.cs.meta │ │ │ │ │ │ ├── SCThreadStarted.cs │ │ │ │ │ │ └── SCThreadStarted.cs.meta │ │ │ │ │ ├── StackFrameInfo.cs │ │ │ │ │ ├── StackFrameInfo.cs.meta │ │ │ │ │ ├── StepTypes.cs │ │ │ │ │ ├── StepTypes.cs.meta │ │ │ │ │ ├── VariableInfo.cs │ │ │ │ │ └── VariableInfo.cs.meta │ │ │ │ ├── Enviorment.meta │ │ │ │ ├── Enviorment │ │ │ │ │ ├── AppDomain.cs │ │ │ │ │ ├── AppDomain.cs.meta │ │ │ │ │ ├── CLRRedirections.cs │ │ │ │ │ ├── CLRRedirections.cs.meta │ │ │ │ │ ├── CrossBindingAdaptor.cs │ │ │ │ │ ├── CrossBindingAdaptor.cs.meta │ │ │ │ │ ├── CrossBindingCodeGenerator.cs │ │ │ │ │ ├── CrossBindingCodeGenerator.cs.meta │ │ │ │ │ ├── CrossBindingMethodInfo.cs │ │ │ │ │ ├── CrossBindingMethodInfo.cs.meta │ │ │ │ │ ├── DelegateManager.cs │ │ │ │ │ ├── DelegateManager.cs.meta │ │ │ │ │ ├── InvocationContext.cs │ │ │ │ │ ├── InvocationContext.cs.meta │ │ │ │ │ ├── ValueTypeBinder.cs │ │ │ │ │ └── ValueTypeBinder.cs.meta │ │ │ │ ├── Extensions.cs │ │ │ │ ├── Extensions.cs.meta │ │ │ │ ├── ILRuntimeJITAttribute.cs │ │ │ │ ├── ILRuntimeJITAttribute.cs.meta │ │ │ │ ├── Intepreter.meta │ │ │ │ ├── Intepreter │ │ │ │ │ ├── DelegateAdapter.cs │ │ │ │ │ ├── DelegateAdapter.cs.meta │ │ │ │ │ ├── ILIntepreter.cs │ │ │ │ │ ├── ILIntepreter.cs.meta │ │ │ │ │ ├── ILRuntimeException.cs │ │ │ │ │ ├── ILRuntimeException.cs.meta │ │ │ │ │ ├── ILTypeInstance.cs │ │ │ │ │ ├── ILTypeInstance.cs.meta │ │ │ │ │ ├── OpCodes.meta │ │ │ │ │ ├── OpCodes │ │ │ │ │ │ ├── OpCode.cs │ │ │ │ │ │ ├── OpCode.cs.meta │ │ │ │ │ │ ├── OpCodeEnum.cs │ │ │ │ │ │ ├── OpCodeEnum.cs.meta │ │ │ │ │ │ ├── OpCodeREnum.cs │ │ │ │ │ │ └── OpCodeREnum.cs.meta │ │ │ │ │ ├── RegisterVM.meta │ │ │ │ │ └── RegisterVM │ │ │ │ │ │ ├── AsyncJITCompileWorker.cs │ │ │ │ │ │ ├── AsyncJITCompileWorker.cs.meta │ │ │ │ │ │ ├── CodeBasicBlock.cs │ │ │ │ │ │ ├── CodeBasicBlock.cs.meta │ │ │ │ │ │ ├── ILIntepreter.Register.cs │ │ │ │ │ │ ├── ILIntepreter.Register.cs.meta │ │ │ │ │ │ ├── JITCompiler.cs │ │ │ │ │ │ ├── JITCompiler.cs.meta │ │ │ │ │ │ ├── Optimizer.BCP.cs │ │ │ │ │ │ ├── Optimizer.BCP.cs.meta │ │ │ │ │ │ ├── Optimizer.ELDC.cs │ │ │ │ │ │ ├── Optimizer.ELDC.cs.meta │ │ │ │ │ │ ├── Optimizer.FCP.cs │ │ │ │ │ │ ├── Optimizer.FCP.cs.meta │ │ │ │ │ │ ├── Optimizer.InlineMethod.cs │ │ │ │ │ │ ├── Optimizer.InlineMethod.cs.meta │ │ │ │ │ │ ├── Optimizer.RegisterCleanup.cs │ │ │ │ │ │ ├── Optimizer.RegisterCleanup.cs.meta │ │ │ │ │ │ ├── Optimizer.Utils.cs │ │ │ │ │ │ └── Optimizer.Utils.cs.meta │ │ │ │ ├── Stack.meta │ │ │ │ └── Stack │ │ │ │ │ ├── RuntimeStack.cs │ │ │ │ │ ├── RuntimeStack.cs.meta │ │ │ │ │ ├── StackFrame.cs │ │ │ │ │ ├── StackFrame.cs.meta │ │ │ │ │ ├── StackObject.cs │ │ │ │ │ ├── StackObject.cs.meta │ │ │ │ │ ├── StackObjectAllocator.cs │ │ │ │ │ └── StackObjectAllocator.cs.meta │ │ │ ├── Samples~ │ │ │ │ └── Basic Demo │ │ │ │ │ ├── Debugger~ │ │ │ │ │ └── ILRuntimeDebuggerLauncher.vsix │ │ │ │ │ ├── Editor.meta │ │ │ │ │ ├── Editor │ │ │ │ │ ├── ILRuntimeCLRBinding.cs │ │ │ │ │ ├── ILRuntimeCLRBinding.cs.meta │ │ │ │ │ ├── ILRuntimeCrossBinding.cs │ │ │ │ │ ├── ILRuntimeCrossBinding.cs.meta │ │ │ │ │ ├── ILRuntimeMenu.cs │ │ │ │ │ └── ILRuntimeMenu.cs.meta │ │ │ │ │ ├── HotFix_Project~ │ │ │ │ │ ├── HotFix_Project.csproj │ │ │ │ │ ├── HotFix_Project.sln │ │ │ │ │ ├── InstanceClass.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── TestCLRBinding.cs │ │ │ │ │ ├── TestCLRRedirection.cs │ │ │ │ │ ├── TestCoroutine.cs │ │ │ │ │ ├── TestDelegate.cs │ │ │ │ │ ├── TestInheritance.cs │ │ │ │ │ ├── TestJson.cs │ │ │ │ │ ├── TestMonoBehaviour.cs │ │ │ │ │ ├── TestPerformance.cs │ │ │ │ │ ├── TestValueType.cs │ │ │ │ │ └── UnityDlls │ │ │ │ │ │ ├── UnityEngine.CoreModule.dll │ │ │ │ │ │ ├── UnityEngine.CoreModule.pdb │ │ │ │ │ │ ├── UnityEngine.InputLegacyModule.dll │ │ │ │ │ │ ├── UnityEngine.UIModule.dll │ │ │ │ │ │ └── UnityEngine.UIModule.pdb │ │ │ │ │ ├── LitJson.meta │ │ │ │ │ ├── LitJson │ │ │ │ │ ├── IJsonWrapper.cs │ │ │ │ │ ├── IJsonWrapper.cs.meta │ │ │ │ │ ├── JsonData.cs │ │ │ │ │ ├── JsonData.cs.meta │ │ │ │ │ ├── JsonException.cs │ │ │ │ │ ├── JsonException.cs.meta │ │ │ │ │ ├── JsonMapper.cs │ │ │ │ │ ├── JsonMapper.cs.meta │ │ │ │ │ ├── JsonMockWrapper.cs │ │ │ │ │ ├── JsonMockWrapper.cs.meta │ │ │ │ │ ├── JsonReader.cs │ │ │ │ │ ├── JsonReader.cs.meta │ │ │ │ │ ├── JsonWriter.cs │ │ │ │ │ ├── JsonWriter.cs.meta │ │ │ │ │ ├── Lexer.cs │ │ │ │ │ ├── Lexer.cs.meta │ │ │ │ │ ├── ParserToken.cs │ │ │ │ │ └── ParserToken.cs.meta │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── Examples.meta │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── 01_HelloWorld.meta │ │ │ │ │ │ ├── 01_HelloWorld │ │ │ │ │ │ ├── HelloWorld.cs │ │ │ │ │ │ └── HelloWorld.cs.meta │ │ │ │ │ │ ├── 02_Invocation.meta │ │ │ │ │ │ ├── 02_Invocation │ │ │ │ │ │ ├── Invocation.cs │ │ │ │ │ │ └── Invocation.cs.meta │ │ │ │ │ │ ├── 03_Delegate.meta │ │ │ │ │ │ ├── 03_Delegate │ │ │ │ │ │ ├── DelegateDemo.cs │ │ │ │ │ │ └── DelegateDemo.cs.meta │ │ │ │ │ │ ├── 04_Inheritance.meta │ │ │ │ │ │ ├── 04_Inheritance │ │ │ │ │ │ ├── Inheritance.cs │ │ │ │ │ │ ├── Inheritance.cs.meta │ │ │ │ │ │ ├── InheritanceAdapter.cs │ │ │ │ │ │ └── InheritanceAdapter.cs.meta │ │ │ │ │ │ ├── 05_CLRRedirection.meta │ │ │ │ │ │ ├── 05_CLRRedirection │ │ │ │ │ │ ├── CLRRedirectionDemo.cs │ │ │ │ │ │ └── CLRRedirectionDemo.cs.meta │ │ │ │ │ │ ├── 06_CLRBinding.meta │ │ │ │ │ │ ├── 06_CLRBinding │ │ │ │ │ │ ├── CLRBindingDemo.cs │ │ │ │ │ │ └── CLRBindingDemo.cs.meta │ │ │ │ │ │ ├── 07_Coroutine.meta │ │ │ │ │ │ ├── 07_Coroutine │ │ │ │ │ │ ├── CoroutineAdapter.cs │ │ │ │ │ │ ├── CoroutineAdapter.cs.meta │ │ │ │ │ │ ├── CoroutineDemo.cs │ │ │ │ │ │ └── CoroutineDemo.cs.meta │ │ │ │ │ │ ├── 08_MonoBehaviour.meta │ │ │ │ │ │ ├── 08_MonoBehaviour │ │ │ │ │ │ ├── Editor.meta │ │ │ │ │ │ ├── Editor │ │ │ │ │ │ │ ├── MonoBehaviourAdapterEditor.cs │ │ │ │ │ │ │ └── MonoBehaviourAdapterEditor.cs.meta │ │ │ │ │ │ ├── MonoBehaviourAdapter.cs │ │ │ │ │ │ ├── MonoBehaviourAdapter.cs.meta │ │ │ │ │ │ ├── MonoBehaviourDemo.cs │ │ │ │ │ │ └── MonoBehaviourDemo.cs.meta │ │ │ │ │ │ ├── 09_Reflection.meta │ │ │ │ │ │ ├── 09_Reflection │ │ │ │ │ │ ├── ReflectionDemo.cs │ │ │ │ │ │ └── ReflectionDemo.cs.meta │ │ │ │ │ │ ├── 10_LitJson.meta │ │ │ │ │ │ ├── 10_LitJson │ │ │ │ │ │ ├── LitJsonDemo.cs │ │ │ │ │ │ └── LitJsonDemo.cs.meta │ │ │ │ │ │ ├── 11_ValueTypeBinding.meta │ │ │ │ │ │ ├── 11_ValueTypeBinding │ │ │ │ │ │ ├── QuaternionBinder.cs │ │ │ │ │ │ ├── QuaternionBinder.cs.meta │ │ │ │ │ │ ├── ValueTypeBindingDemo.cs │ │ │ │ │ │ ├── ValueTypeBindingDemo.cs.meta │ │ │ │ │ │ ├── Vector2Binder.cs │ │ │ │ │ │ ├── Vector2Binder.cs.meta │ │ │ │ │ │ ├── Vector3Binder.cs │ │ │ │ │ │ └── Vector3Binder.cs.meta │ │ │ │ │ │ ├── 12_Performance.meta │ │ │ │ │ │ └── 12_Performance │ │ │ │ │ │ ├── Performance.cs │ │ │ │ │ │ └── Performance.cs.meta │ │ │ │ │ ├── _Scenes.meta │ │ │ │ │ ├── _Scenes │ │ │ │ │ ├── Examples.meta │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── 01_HelloWorld.unity │ │ │ │ │ │ ├── 01_HelloWorld.unity.meta │ │ │ │ │ │ ├── 02_Invocation.unity │ │ │ │ │ │ ├── 02_Invocation.unity.meta │ │ │ │ │ │ ├── 03_DelegateDemo.unity │ │ │ │ │ │ ├── 03_DelegateDemo.unity.meta │ │ │ │ │ │ ├── 04_Inheritance.unity │ │ │ │ │ │ ├── 04_Inheritance.unity.meta │ │ │ │ │ │ ├── 05_CLRRedirection.unity │ │ │ │ │ │ ├── 05_CLRRedirection.unity.meta │ │ │ │ │ │ ├── 06_CLRBinding.unity │ │ │ │ │ │ ├── 06_CLRBinding.unity.meta │ │ │ │ │ │ ├── 07_Coroutine.unity │ │ │ │ │ │ ├── 07_Coroutine.unity.meta │ │ │ │ │ │ ├── 08_MonoBehaviour.unity │ │ │ │ │ │ ├── 08_MonoBehaviour.unity.meta │ │ │ │ │ │ ├── 09_Reflection.unity │ │ │ │ │ │ ├── 09_Reflection.unity.meta │ │ │ │ │ │ ├── 10_LitJson.unity │ │ │ │ │ │ ├── 10_LitJson.unity.meta │ │ │ │ │ │ ├── 11_ValueTypeBinding.unity │ │ │ │ │ │ ├── 11_ValueTypeBinding.unity.meta │ │ │ │ │ │ ├── 12_Performance.unity │ │ │ │ │ │ ├── 12_Performance.unity.meta │ │ │ │ │ │ ├── 12_PerformanceSettings.lighting │ │ │ │ │ │ └── 12_PerformanceSettings.lighting.meta │ │ │ │ │ ├── performance.lua │ │ │ │ │ └── performance.lua.meta │ │ │ ├── package.json │ │ │ └── package.json.meta │ │ ├── LitJson.meta │ │ └── LitJson │ │ │ ├── IJsonWrapper.cs │ │ │ ├── IJsonWrapper.cs.meta │ │ │ ├── JsonData.cs │ │ │ ├── JsonData.cs.meta │ │ │ ├── JsonException.cs │ │ │ ├── JsonException.cs.meta │ │ │ ├── JsonMapper.cs │ │ │ ├── JsonMapper.cs.meta │ │ │ ├── JsonMockWrapper.cs │ │ │ ├── JsonMockWrapper.cs.meta │ │ │ ├── JsonReader.cs │ │ │ ├── JsonReader.cs.meta │ │ │ ├── JsonWriter.cs │ │ │ ├── JsonWriter.cs.meta │ │ │ ├── Lexer.cs │ │ │ ├── Lexer.cs.meta │ │ │ ├── ParserToken.cs │ │ │ └── ParserToken.cs.meta │ ├── YooAssetSetting.meta │ └── YooAssetSetting │ │ ├── AssetBundleBuilderSetting.asset │ │ ├── AssetBundleBuilderSetting.asset.meta │ │ ├── AssetBundleCollectorConfig.xml │ │ ├── AssetBundleCollectorConfig.xml.meta │ │ ├── AssetBundleCollectorSetting.asset │ │ └── AssetBundleCollectorSetting.asset.meta ├── Game │ ├── Game_Project.csproj │ ├── Game_Project.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scrpits │ │ ├── Audio │ │ │ └── AudioPlayerSetting.cs │ │ ├── Battle │ │ │ ├── BattleDefine.cs │ │ │ ├── CharacterAnimation.cs │ │ │ ├── CharacterData.cs │ │ │ ├── CharacterMove.cs │ │ │ ├── CharacterSkill.cs │ │ │ ├── EntityAvatar.cs │ │ │ ├── EntityCharacter.cs │ │ │ ├── EntityMonster.cs │ │ │ ├── EntityObject.cs │ │ │ ├── EntityPlayer.cs │ │ │ └── GameWorld.cs │ │ ├── Config │ │ │ ├── AssetConfig.cs │ │ │ ├── AutoGenerateConfig │ │ │ │ ├── CfgAnimation.cs │ │ │ │ ├── CfgAutoGenerateLanguage.cs │ │ │ │ ├── CfgAvatar.cs │ │ │ │ ├── CfgMonster.cs │ │ │ │ ├── CfgPlayer.cs │ │ │ │ ├── CfgSkill.cs │ │ │ │ └── CfgUILanguage.cs │ │ │ └── LANG.cs │ │ ├── Data │ │ │ ├── DataBase.cs │ │ │ ├── DataManager.cs │ │ │ ├── Datas │ │ │ │ ├── DataLogin.cs │ │ │ │ └── DataPlayer.cs │ │ │ └── EDataType.cs │ │ ├── Event │ │ │ ├── GameEventDefine.cs │ │ │ └── GameEventManager.cs │ │ ├── Fsm │ │ │ ├── FsmManager.cs │ │ │ └── Nodes │ │ │ │ ├── NodeInit.cs │ │ │ │ ├── NodeLogin.cs │ │ │ │ └── NodeTown.cs │ │ ├── GameEvent.cs │ │ ├── GameLog.cs │ │ ├── Main.cs │ │ ├── Utility │ │ │ └── TypeHelper.cs │ │ └── Window │ │ │ ├── EWindowLayer.cs │ │ │ ├── UITools.cs │ │ │ └── Windows │ │ │ ├── UILoading.cs │ │ │ ├── UILogin.cs │ │ │ ├── UIMain.cs │ │ │ ├── UISetting.cs │ │ │ └── _UIXXX.cs │ └── UnityDlls │ │ ├── UnityEngine.CoreModule.dll │ │ ├── UnityEngine.IMGUIModule.dll │ │ ├── UnityEngine.UIModule.dll │ │ └── UnityEngine.dll ├── ILRuntime.csproj ├── Packages │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── AutoStreamingSettings.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UPRSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Unity.DeviceSimulator.Editor.csproj ├── Unity.PlayableGraphVisualizer.Editor.csproj ├── Unity.PlayableGraphVisualizer.csproj ├── Unity.ScriptableBuildPipeline.Editor.csproj ├── Unity.ScriptableBuildPipeline.csproj ├── Unity.VisualStudio.Editor.csproj ├── UnityEditor.CacheServer.csproj ├── UnityEditor.TestRunner.csproj └── UnityEngine.TestRunner.csproj ├── 工具 ├── Docs │ └── Image │ │ ├── img1.png │ │ ├── img2.png │ │ ├── img3.png │ │ └── img4.png ├── FlashExcel-bin-v1.0.4.zip └── README.md └── 表格 ├── Animation.xlsx ├── AutoGenerateLanguage.xlsx ├── Avatar.xlsx ├── Monster.xlsx ├── Player.xlsx ├── Skill.xlsx └── UILanguage.xlsx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Docs/Image/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/Docs/Image/img2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/README.md -------------------------------------------------------------------------------- /RPG/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/.vsconfig -------------------------------------------------------------------------------- /RPG/Assets/GameArt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/Materials.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@attack.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@attack.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@attack.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@attack.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@attack02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@attack02.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@attack02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@attack02.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@attack03.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@attack03.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@attack03.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@attack03.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@defend.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@defend.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@defend.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@defend.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@die.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@die.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@die.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@die.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@getHit.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@getHit.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@getHit.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@getHit.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@idle.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@idle.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@idle.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@idle.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@idle02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@idle02.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@idle02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@idle02.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@idle03.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@idle03.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@idle03.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@idle03.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@jump.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@jump.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@jump.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@jump.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@run.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@run.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@run.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@run.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@taunt.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@taunt.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@taunt.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@taunt.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@walk.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@walk.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@walk.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@walk.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleForward.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleForward.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleLeft.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleLeft.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleRight.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleRight.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/FBX.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/FBX/footman.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/FBX/footman.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/FBX/footman.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/FBX/footman.fbx.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Material.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRBlue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Material/footmanPBRBlue.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRBlue.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Material/footmanPBRBlue.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRGreen.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Material/footmanPBRGreen.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRGreen.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Material/footmanPBRGreen.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRRed.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Material/footmanPBRRed.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRRed.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Material/footmanPBRRed.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRYellow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Material/footmanPBRYellow.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRYellow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Material/footmanPBRYellow.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Texture.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_AO.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_AO.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_AO.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_AO.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Scene.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Scene/Canvas.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Scene/Canvas.unity -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Scene/Canvas.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Scene/Canvas.unity.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Heart.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Heart.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Heart.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Background.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Health.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Health.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Health.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Power.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Power.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Power.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_IconFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_IconFrame.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_IconFrame.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_IconFrame.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Waterdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Waterdrop.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Waterdrop.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Waterdrop.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Accpet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Accpet.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Accpet.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Accpet.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cogwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cogwheel.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cogwheel.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cogwheel.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cross.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cross.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cross.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Flag.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Flag.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Flag.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Star.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Star.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Star.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Foreground.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Thumb.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Thumb.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Thumb.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Background.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0000.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0000.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0000.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0001.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0001.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0001.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0002.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0002.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0002.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0003.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0003.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0003.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0004.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0004.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0004.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0005.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0005.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0005.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0006.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0006.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0006.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0007.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0007.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0007.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0008.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0008.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0008.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0009.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0009.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0009.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0010.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0010.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0010.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0011.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0011.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0011.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0012.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0012.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0012.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0013.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0013.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0013.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0014.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0014.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0014.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0015.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0015.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0015.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0016.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0016.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0016.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0017.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0017.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0017.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0018.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0018.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0018.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0019.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0019.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0019.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0020.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0020.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0020.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0021.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0021.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0021.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Arrows_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Arrows_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Arrows_128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Arrows_128.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Deathkiss_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Deathkiss_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Deathkiss_128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Deathkiss_128.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Fireball_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Fireball_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Fireball_128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Fireball_128.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Leafs_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Leafs_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Leafs_128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Leafs_128.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Shield_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Shield_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Shield_128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Shield_128.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Sword_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Sword_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Sword_128.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Sword_128.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Shield.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Shield.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Shield.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Sword.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Sword.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Sword.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Swords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Swords.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Swords.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Swords.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background2.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Background.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Close_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Close_Button.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Close_Button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Close_Button.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Decoration_Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Decoration_Left.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Decoration_Left.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Decoration_Left.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header_2.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header_2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header_2.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWordArt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWordArt.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWordArt/login_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWordArt/login_title.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWordArt/login_title.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Panel/Sprite/UIWordArt/login_title.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Fir_v1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Fir_v1.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Fir_v1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Fir_v1.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_1.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_1.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_2.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_2.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v1_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Grass_v1_1.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v1_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Grass_v1_1.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v1_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Grass_v1_2.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v1_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Grass_v1_2.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v1_3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Grass_v1_3.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v1_3.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Grass_v1_3.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v2_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Grass_v2_1.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v2_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Grass_v2_1.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Pine_v1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Pine_v1.mat -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Pine_v1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Material/Pine_v1.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Model.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Model/Forest_pack_models_set.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Model/Forest_pack_models_set.FBX -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Model/Forest_pack_models_set.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Model/Forest_pack_models_set.FBX.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Fir_v1_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Fir_v1_1.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Fir_v1_1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Fir_v1_1.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Fir_v1_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Fir_v1_2.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Fir_v1_2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Fir_v1_2.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_1.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_1.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_2.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_2.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v1_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Grass_v1_1.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v1_1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Grass_v1_1.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v1_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Grass_v1_2.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v1_2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Grass_v1_2.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v1_3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Grass_v1_3.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v1_3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Grass_v1_3.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v2_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Grass_v2_1.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v2_1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Grass_v2_1.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Pine_v1_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Pine_v1_1.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Pine_v1_1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Pine_v1_1.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Pine_v1_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Pine_v1_2.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Pine_v1_2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Prefab/Pine_v1_2.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Fir_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Fir_v1.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Fir_v1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Fir_v1.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_1.tga -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_1.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_1.tga.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_2.tga -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_2.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_2.tga.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Grass_v1_1.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v1_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Grass_v1_1.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Grass_v1_2.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v1_2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Grass_v1_2.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Grass_v1_3.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v1_3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Grass_v1_3.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Grass_v2_1.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v2_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Grass_v2_1.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Pine_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Pine_v1.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Pine_v1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Scene/Texture/Pine_v1.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/ShaderVariants.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/ShaderVariants.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.json -------------------------------------------------------------------------------- /RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.json.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.shadervariants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.shadervariants -------------------------------------------------------------------------------- /RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.shadervariants.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.shadervariants.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Shaders.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Shaders/StandardMobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Shaders/StandardMobile.cginc -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Shaders/StandardMobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Shaders/StandardMobile.cginc.meta -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Shaders/StandardMobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Shaders/StandardMobile.shader -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Shaders/StandardMobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameArt/Shaders/StandardMobile.shader.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Assembly.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly/GameDLL.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Assembly/GameDLL.bytes -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly/GameDLL.bytes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Assembly/GameDLL.bytes.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly/GamePDB.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Assembly/GamePDB.bytes -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly/GamePDB.bytes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Assembly/GamePDB.bytes.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Attack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Attack.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Attack.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Attack.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Death.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Death.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Death.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Death.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Help.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Help.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Help.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Help.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Hit1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Hit1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Hit1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Hit1.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Hit2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Hit2.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Hit2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Hit2.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Hit3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Hit3.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Hit3.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Hit3.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/OnMyWay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/OnMyWay.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/OnMyWay.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/OnMyWay.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Yes.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Yes.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Yes.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Yes.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Yes2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Yes2.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Yes2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Footman/Yes2.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Music.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Music.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Music/town.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Music/town.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Music/town.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/Music/town.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_accept1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_accept1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_accept1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_accept1.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_click1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_click1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_click1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_click1.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_error1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_error1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_error1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_error1.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_return1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_return1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_return1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_return1.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_rover1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_rover1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_rover1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/sfx_rover1.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/stinger_lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/stinger_lose.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/stinger_lose.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/stinger_lose.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/stinger_win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/stinger_win.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/stinger_win.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Audio/UI/stinger_win.mp3.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity/Character.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Blue.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity/Character/footman_Blue.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Blue.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity/Character/footman_Blue.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Green.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity/Character/footman_Green.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Green.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity/Character/footman_Green.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Red.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity/Character/footman_Red.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Red.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity/Character/footman_Red.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Yellow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity/Character/footman_Yellow.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Yellow.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Entity/Character/footman_Yellow.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Boot.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Boot.unity -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Boot.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Boot.unity.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Login.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Login.unity -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Login.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Login.unity.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Town.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Town.unity -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Town.unity.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Town/LightingData.asset -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Town/LightingData.asset.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Town/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/Scene/Town/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UICommon.spriteatlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UICommon.spriteatlas -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UICommon.spriteatlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UICommon.spriteatlas.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UILoading.spriteatlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UILoading.spriteatlas -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UILoading.spriteatlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UILoading.spriteatlas.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UISpellIcon.spriteatlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UISpellIcon.spriteatlas -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UISpellIcon.spriteatlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UISpellIcon.spriteatlas.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UIWindow.spriteatlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UIWindow.spriteatlas -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UIWindow.spriteatlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UIWindow.spriteatlas.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UIWordArt.spriteatlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UIWordArt.spriteatlas -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UIWordArt.spriteatlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIAtlas/UIWordArt.spriteatlas.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UILoading.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UILoading.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UILoading.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UILoading.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UILogin.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UILogin.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UILogin.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UILogin.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UIMain.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UIMain.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UIMain.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UIMain.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UIRoot.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UIRoot.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UIRoot.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UIRoot.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UISetting.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UISetting.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UISetting.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/UISetting.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/_UIXXX.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/_UIXXX.prefab -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/_UIXXX.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UIPanel/_UIXXX.prefab.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UITexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UITexture.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UITexture/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UITexture/bg1.jpg -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UITexture/bg1.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UITexture/bg1.jpg.meta -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UITexture/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UITexture/bg2.png -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UITexture/bg2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameRes/UITexture/bg2.png.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/EditorInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/EditorInitialize.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/EditorInitialize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/EditorInitialize.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/ILRuntime.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeAssemblyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeAssemblyBuilder.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeAssemblyBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeAssemblyBuilder.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeCLRBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeCLRBinding.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeCLRBinding.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeCLRBinding.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeInitialize.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeInitialize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeInitialize.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ModelMaterialProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/ModelMaterialProcessor.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ModelMaterialProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Editor/ModelMaterialProcessor.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/GameLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/GameLauncher.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/GameLauncher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/GameLauncher.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/GameUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/GameUtility.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/GameUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/GameUtility.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/AssetConfigAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/AssetConfigAdapter.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/AssetConfigAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/AssetConfigAdapter.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/CanvasWindowAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/CanvasWindowAdapter.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/CanvasWindowAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/CanvasWindowAdapter.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/ConfigTableAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/ConfigTableAdapter.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/ConfigTableAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/ConfigTableAdapter.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/CoroutineAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/CoroutineAdapter.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/CoroutineAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/CoroutineAdapter.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/IEventMessageAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/IEventMessageAdapter.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/IEventMessageAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/IEventMessageAdapter.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/IFsmNodeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/IFsmNodeAdapter.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/IFsmNodeAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/IFsmNodeAdapter.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/IMessageAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/IMessageAdapter.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/IMessageAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRAdapter/IMessageAdapter.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRBinding.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRBinding.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/AdaptMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/AdaptMethod.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/AdaptMethod.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/AdaptMethod.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ILRDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/ILRDefine.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ILRDefine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/ILRDefine.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ILRManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/ILRManager.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ILRManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/ILRManager.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ILRRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/ILRRegister.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ILRRegister.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/ILRRegister.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/ILRStaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/ILRStaticMethod.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/IStaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/IStaticMethod.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/MonoStaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/MonoStaticMethod.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder/Vector2Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder/Vector2Binder.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder/Vector3Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder/Vector3Binder.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/Utility.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility/BhvCameraFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/Utility/BhvCameraFlow.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility/BhvCameraFlow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/Utility/BhvCameraFlow.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/Utility/ObjectPool.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility/ObjectPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/Utility/ObjectPool.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility/UIJoystick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/Utility/UIJoystick.cs -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility/UIJoystick.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/GameScript/Runtime/Utility/UIJoystick.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/MotionAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/MotionAssets.meta -------------------------------------------------------------------------------- /RPG/Assets/MotionAssets/ModelDefaultMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/MotionAssets/ModelDefaultMaterial.mat -------------------------------------------------------------------------------- /RPG/Assets/MotionAssets/ModelDefaultMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/MotionAssets/ModelDefaultMaterial.mat.meta -------------------------------------------------------------------------------- /RPG/Assets/MotionFramework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/MotionFramework.zip -------------------------------------------------------------------------------- /RPG/Assets/MotionFramework.zip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/MotionFramework.zip.meta -------------------------------------------------------------------------------- /RPG/Assets/MotionSetting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/MotionSetting.meta -------------------------------------------------------------------------------- /RPG/Assets/MotionSetting/UIPanelSetting.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/MotionSetting/UIPanelSetting.asset -------------------------------------------------------------------------------- /RPG/Assets/MotionSetting/UIPanelSetting.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/MotionSetting/UIPanelSetting.asset.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/ByteArray.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ByteArray.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/ByteArray.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/ByteString.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ByteString.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/ByteString.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/CodedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/CodedInputStream.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/CodedInputStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/CodedInputStream.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.ComputeSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.ComputeSize.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/FieldCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/FieldCodec.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/FieldCodec.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/FieldCodec.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ICustomDiagnosticMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/ICustomDiagnosticMessage.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ICustomDiagnosticMessage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/ICustomDiagnosticMessage.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/IMessage.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/IMessage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/IMessage.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/InvalidProtocolBufferException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/InvalidProtocolBufferException.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/LimitedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/LimitedInputStream.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/LimitedInputStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/LimitedInputStream.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/MessageExtensions.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/MessageExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/MessageExtensions.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/MessageParser.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/MessageParser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/MessageParser.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/PropertyInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/PropertyInfoExtensions.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/PropertyInfoExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/PropertyInfoExtensions.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ProtoPreconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/ProtoPreconditions.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ProtoPreconditions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/ProtoPreconditions.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/README.txt -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/README.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/README.txt.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/RepeatedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/RepeatedField.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/RepeatedField.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/RepeatedField.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/StreamExtensions.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/StreamExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/StreamExtensions.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/WireFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/WireFormat.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/WireFormat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/Google.Protobuf/WireFormat.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CHANGELOG.md -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CHANGELOG.md.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/CLRMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/CLRMethod.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/CLRMethod.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/CLRMethod.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ExceptionHandler.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ExceptionHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ExceptionHandler.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ILMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ILMethod.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ILMethod.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ILMethod.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethod.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethod.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethod.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethodExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethodExtensions.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethodExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethodExtensions.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/CLRType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/CLRType.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/CLRType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/CLRType.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/ILGenericParameterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/ILGenericParameterType.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/ILType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/ILType.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/ILType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/ILType.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/IType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/IType.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/IType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/IType.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Utils.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Utils/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Utils/Extensions.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Utils/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/CLR/Utils/Extensions.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/ILRuntime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/ILRuntime.asmdef -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/ILRuntime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/ILRuntime.asmdef.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/LICENSE.md -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/LICENSE.md.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/ByReferenceKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/ByReferenceKeyComparer.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/ByReferenceKeyComparer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/ByReferenceKeyComparer.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/DelegateExportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/DelegateExportAttribute.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/DelegateExportAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/DelegateExportAttribute.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/NeedAdaptorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/NeedAdaptorAttribute.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/NeedAdaptorAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/NeedAdaptorAttribute.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/ThreadSafeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/ThreadSafeDictionary.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/ThreadSafeDictionary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/ThreadSafeDictionary.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedList.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedList.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedStack.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedStack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedStack.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.dll.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.pdb -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.pdb.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.dll.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.pdb.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.dll -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.dll.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.pdb -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.pdb.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.pdb.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/README.md -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/README.md.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/Extensions.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/Extensions.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeConstructorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeConstructorInfo.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeFieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeFieldInfo.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeFieldInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeFieldInfo.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeMethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeMethodInfo.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeMethodInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeMethodInfo.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeParameterInfo.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeParameterInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeParameterInfo.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimePropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimePropertyInfo.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimePropertyInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimePropertyInfo.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeType.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeType.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeWrapperType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeWrapperType.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeWrapperType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeWrapperType.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Adaptors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Adaptors.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/CLRBindingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/CLRBindingUtils.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/BreakPointContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/BreakPointContext.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/BreakpointInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/BreakpointInfo.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/BreakpointInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/BreakpointInfo.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugMessageType.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugMessageType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugMessageType.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugService.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugService.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugSocket.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugSocket.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugSocket.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebuggerServer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebuggerServer.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSExecute.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSStep.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSStep.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSStep.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StackFrameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StackFrameInfo.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StackFrameInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StackFrameInfo.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StepTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StepTypes.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StepTypes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StepTypes.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/VariableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/VariableInfo.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/VariableInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/VariableInfo.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/AppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/AppDomain.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/AppDomain.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/AppDomain.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/CLRRedirections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/CLRRedirections.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/CrossBindingAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/CrossBindingAdaptor.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/DelegateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/DelegateManager.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/InvocationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/InvocationContext.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/ValueTypeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/ValueTypeBinder.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Extensions.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Extensions.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/ILRuntimeJITAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/ILRuntimeJITAttribute.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/ILRuntimeJITAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/ILRuntimeJITAttribute.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/DelegateAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/DelegateAdapter.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILIntepreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILIntepreter.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILIntepreter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILIntepreter.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILRuntimeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILRuntimeException.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILTypeInstance.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILTypeInstance.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILTypeInstance.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCode.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCode.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCodeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCodeEnum.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCodeREnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCodeREnum.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/RuntimeStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/RuntimeStack.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/RuntimeStack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/RuntimeStack.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackFrame.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackFrame.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackFrame.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackObject.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackObject.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackObjectAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackObjectAllocator.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Editor.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonData.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonMapper.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonReader.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonWriter.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/Lexer.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/Lexer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/Lexer.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/performance.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/performance.lua -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/performance.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/performance.lua.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/package.json -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/ILRuntime/package.json.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/IJsonWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/IJsonWrapper.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/IJsonWrapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/IJsonWrapper.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonData.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonData.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonException.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonException.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonMapper.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonMapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonMapper.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonMockWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonMockWrapper.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonMockWrapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonMockWrapper.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonReader.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonReader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonReader.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonWriter.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonWriter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/JsonWriter.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/Lexer.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/Lexer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/Lexer.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/ParserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/ParserToken.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/ParserToken.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/ThirdParty/LitJson/ParserToken.cs.meta -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/YooAssetSetting.meta -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting/AssetBundleBuilderSetting.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/YooAssetSetting/AssetBundleBuilderSetting.asset -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting/AssetBundleBuilderSetting.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/YooAssetSetting/AssetBundleBuilderSetting.asset.meta -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting/AssetBundleCollectorConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/YooAssetSetting/AssetBundleCollectorConfig.xml -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting/AssetBundleCollectorConfig.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/YooAssetSetting/AssetBundleCollectorConfig.xml.meta -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting/AssetBundleCollectorSetting.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/YooAssetSetting/AssetBundleCollectorSetting.asset -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting/AssetBundleCollectorSetting.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Assets/YooAssetSetting/AssetBundleCollectorSetting.asset.meta -------------------------------------------------------------------------------- /RPG/Game/Game_Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Game_Project.csproj -------------------------------------------------------------------------------- /RPG/Game/Game_Project.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Game_Project.sln -------------------------------------------------------------------------------- /RPG/Game/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Audio/AudioPlayerSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Audio/AudioPlayerSetting.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/BattleDefine.cs: -------------------------------------------------------------------------------- 1 | 2 | public enum EHeroType 3 | { 4 | Soldier = 1, 5 | } -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/CharacterAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/CharacterAnimation.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/CharacterData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/CharacterData.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/CharacterMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/CharacterMove.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/CharacterSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/CharacterSkill.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/EntityAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/EntityAvatar.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/EntityCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/EntityCharacter.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/EntityMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/EntityMonster.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/EntityObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/EntityObject.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/EntityPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/EntityPlayer.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/GameWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Battle/GameWorld.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Config/AssetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Config/AssetConfig.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgAnimation.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgAutoGenerateLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgAutoGenerateLanguage.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgAvatar.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgMonster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgMonster.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgPlayer.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgSkill.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgUILanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Config/AutoGenerateConfig/CfgUILanguage.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Config/LANG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Config/LANG.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Data/DataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Data/DataBase.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Data/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Data/DataManager.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Data/Datas/DataLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Data/Datas/DataLogin.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Data/Datas/DataPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Data/Datas/DataPlayer.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Data/EDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Data/EDataType.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Event/GameEventDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Event/GameEventDefine.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Event/GameEventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Event/GameEventManager.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Fsm/FsmManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Fsm/FsmManager.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Fsm/Nodes/NodeInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Fsm/Nodes/NodeInit.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Fsm/Nodes/NodeLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Fsm/Nodes/NodeLogin.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Fsm/Nodes/NodeTown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Fsm/Nodes/NodeTown.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/GameEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/GameEvent.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/GameLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/GameLog.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Main.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Utility/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Utility/TypeHelper.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Window/EWindowLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Window/EWindowLayer.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Window/UITools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Window/UITools.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Window/Windows/UILoading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Window/Windows/UILoading.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Window/Windows/UILogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Window/Windows/UILogin.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Window/Windows/UIMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Window/Windows/UIMain.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Window/Windows/UISetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Window/Windows/UISetting.cs -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Window/Windows/_UIXXX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/Scrpits/Window/Windows/_UIXXX.cs -------------------------------------------------------------------------------- /RPG/Game/UnityDlls/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/UnityDlls/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /RPG/Game/UnityDlls/UnityEngine.IMGUIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/UnityDlls/UnityEngine.IMGUIModule.dll -------------------------------------------------------------------------------- /RPG/Game/UnityDlls/UnityEngine.UIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/UnityDlls/UnityEngine.UIModule.dll -------------------------------------------------------------------------------- /RPG/Game/UnityDlls/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Game/UnityDlls/UnityEngine.dll -------------------------------------------------------------------------------- /RPG/ILRuntime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ILRuntime.csproj -------------------------------------------------------------------------------- /RPG/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Packages/manifest.json -------------------------------------------------------------------------------- /RPG/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Packages/packages-lock.json -------------------------------------------------------------------------------- /RPG/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/AutoStreamingSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/AutoStreamingSettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /RPG/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/UPRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/UPRSettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /RPG/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /RPG/Unity.DeviceSimulator.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Unity.DeviceSimulator.Editor.csproj -------------------------------------------------------------------------------- /RPG/Unity.PlayableGraphVisualizer.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Unity.PlayableGraphVisualizer.Editor.csproj -------------------------------------------------------------------------------- /RPG/Unity.PlayableGraphVisualizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Unity.PlayableGraphVisualizer.csproj -------------------------------------------------------------------------------- /RPG/Unity.ScriptableBuildPipeline.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Unity.ScriptableBuildPipeline.Editor.csproj -------------------------------------------------------------------------------- /RPG/Unity.ScriptableBuildPipeline.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Unity.ScriptableBuildPipeline.csproj -------------------------------------------------------------------------------- /RPG/Unity.VisualStudio.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/Unity.VisualStudio.Editor.csproj -------------------------------------------------------------------------------- /RPG/UnityEditor.CacheServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/UnityEditor.CacheServer.csproj -------------------------------------------------------------------------------- /RPG/UnityEditor.TestRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/UnityEditor.TestRunner.csproj -------------------------------------------------------------------------------- /RPG/UnityEngine.TestRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/RPG/UnityEngine.TestRunner.csproj -------------------------------------------------------------------------------- /工具/Docs/Image/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/工具/Docs/Image/img1.png -------------------------------------------------------------------------------- /工具/Docs/Image/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/工具/Docs/Image/img2.png -------------------------------------------------------------------------------- /工具/Docs/Image/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/工具/Docs/Image/img3.png -------------------------------------------------------------------------------- /工具/Docs/Image/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/工具/Docs/Image/img4.png -------------------------------------------------------------------------------- /工具/FlashExcel-bin-v1.0.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/工具/FlashExcel-bin-v1.0.4.zip -------------------------------------------------------------------------------- /工具/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/工具/README.md -------------------------------------------------------------------------------- /表格/Animation.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/表格/Animation.xlsx -------------------------------------------------------------------------------- /表格/AutoGenerateLanguage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/表格/AutoGenerateLanguage.xlsx -------------------------------------------------------------------------------- /表格/Avatar.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/表格/Avatar.xlsx -------------------------------------------------------------------------------- /表格/Monster.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/表格/Monster.xlsx -------------------------------------------------------------------------------- /表格/Player.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/表格/Player.xlsx -------------------------------------------------------------------------------- /表格/Skill.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/表格/Skill.xlsx -------------------------------------------------------------------------------- /表格/UILanguage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/HEAD/表格/UILanguage.xlsx --------------------------------------------------------------------------------