├── .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: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Docs/Image/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/Docs/Image/img2.png -------------------------------------------------------------------------------- /RPG/.vsconfig: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "components": [ 4 | "Microsoft.VisualStudio.Workload.ManagedGame" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7945a78e8f8eb32449b718e0060fd796 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce14760278d4eb24cae09f0a2aeb4d7b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18794c413d15d8a4897a1b4038f00afd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 446b67edb2cc0c640903adc7b69660a8 3 | folderAsset: yes 4 | timeCreated: 1472874806 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca8b24b54c2914148b5cd05aec91337f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@attack.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@attack.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@attack02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@attack02.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@attack03.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@attack03.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@defend.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@defend.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@die.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@die.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@getHit.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@getHit.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@idle.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@idle.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@idle02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@idle02.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@idle03.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@idle03.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@jump.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@jump.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@run.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@run.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@taunt.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@taunt.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@walk.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@walk.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleBackward.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleBackward.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleForward.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/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/880e84ac23ab8b3c775dde0ce7430dfed26554a0/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/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Animation/footman@walkBattleRight.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/FBX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b00a0b059b3307141b48c0a0b5defa26 3 | folderAsset: yes 4 | timeCreated: 1472874817 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/FBX/footman.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/FBX/footman.fbx -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5d32c49e9e2b8641913f92c21fdeae5 3 | folderAsset: yes 4 | timeCreated: 1472822385 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRBlue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 892c139d6ce687b478eab700aa1871f2 3 | timeCreated: 1472890932 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRGreen.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8c3708594c30d941ba3b6fe54531dbd 3 | timeCreated: 1472890955 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRRed.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5de734270eabfca49bc1f81b728ff410 3 | timeCreated: 1472890920 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Material/footmanPBRYellow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5af10191357b9fc478999480d8f88f7a 3 | timeCreated: 1472874662 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ebc56f909d7844459c044fc161958d3 3 | folderAsset: yes 4 | timeCreated: 1471913701 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f170503a39165f4faa3891b144780c8 3 | folderAsset: yes 4 | timeCreated: 1472891111 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_AO.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_Albedo.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_Metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_Metallic.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRBlue/footman_Normal.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0be7eff0bc9bbe54187f2a5e04ad8b62 3 | folderAsset: yes 4 | timeCreated: 1472891123 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_AO.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_Albedo.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_Metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_Metallic.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRGreen/footman_Normal.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b3c34f8a0159bc42a9dbb838688fced 3 | folderAsset: yes 4 | timeCreated: 1472891101 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_AO.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_Albedo.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_Metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_Metallic.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRRed/footman_Normal.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: accd15314525fde4a997499d1a784a38 3 | folderAsset: yes 4 | timeCreated: 1472891059 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_AO.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_Albedo.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_Metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_Metallic.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Character/Footman/Texture/footmanPBRYellow/footman_Normal.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bfaaece07cc091499cfb2c352133a09 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c269567217519464ea49519453569faf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Scene/Canvas.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8eabba00247876a48873bf7cfbed45f9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ec59f09eaed47f4ca41ff640e6c7d2d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6ff3a27e3e85d344bed050e9aad5be0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ce134a30438cf8439737c5494864df2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Circular_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Circular_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Circular_Press_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Circular_Press_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Rectangular_Large_Green_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Rectangular_Large_Green_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Rectangular_Large_Red_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Rectangular_Large_Red_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Rectangular_Medium_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Rectangular_Medium_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Rectangular_Medium_Press_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Rectangular_Medium_Press_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Background2.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Background3.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Press_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Press_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Press_Overlay2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Press_Overlay2.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Press_Overlay3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SBrown_Press_Overlay3.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SYellow_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SYellow_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SYellow_Press_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Button/Button_Square_SYellow_Press_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c363ed6ad04d1a946bbd337848c8412e 3 | folderAsset: yes 4 | timeCreated: 1465051304 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller/Controller_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller/Controller_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller/Controller_Handle_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller/Controller_Handle_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller/Controller_Handle_Foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller/Controller_Handle_Foreground.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller/Controller_Handle_Press_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Controller/Controller_Handle_Press_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27abb9a40b3e6024e91e5b0d5d04da14 3 | folderAsset: yes 4 | timeCreated: 1465047244 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Heart.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Health.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_Fill_Power.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_IconFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/UnitFrame_IconFrame.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Waterdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Head/Waterdrop.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ed908f8c5e0c6a48b7c1aa810e56aa9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Accpet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Accpet.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cogwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cogwheel.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Cross.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Flag.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Icon/Star.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 016a809334f85e049b1602c2c907da08 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/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/880e84ac23ab8b3c775dde0ce7430dfed26554a0/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/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Thumb.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Thumb_Press_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Slider/Slider_Thumb_Press_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9543d51e6ac66594195854703fcb7718 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField/Text_Field_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField/Text_Field_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField/Text_Field_Focus_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField/Text_Field_Focus_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField/Text_Field_Icon_Pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField/Text_Field_Icon_Pass.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField/Text_Field_Icon_User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/TextField/Text_Field_Icon_User.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b0170cdb2159e4429f97cf6be7c6069 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Checkbox_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Checkbox_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Checkbox_Foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Checkbox_Foreground.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Checkbox_Press_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Checkbox_Press_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Radio_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Radio_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Radio_Foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Radio_Foreground.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Radio_Press_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UICommon/Toggle/Toggle_Radio_Press_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1288fd74c50c1d7429a2b838eaedfde2 3 | folderAsset: yes 4 | timeCreated: 1465108426 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0000.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0001.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0002.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0003.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0004.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0005.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0006.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0007.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0008.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0009.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0010.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0011.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0012.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0013.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0014.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0015.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0016.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0017.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0018.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0019.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0020.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UILoading/Loading_Frame_0021.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29f27e4abf667c04b88a3996d8cdadfc 3 | folderAsset: yes 4 | timeCreated: 1463750431 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Arrows_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Arrows_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Deathkiss_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Deathkiss_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Fireball_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Fireball_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Leafs_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Leafs_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Shield_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Shield_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Sword_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Icon_Sword_128.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Shield.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Sword.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Swords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UISpellIcon/Swords.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4c210dea10b94a40954b8060824b35c 3 | folderAsset: yes 4 | timeCreated: 1463486939 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background2.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background2_Extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background2_Extension.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background_Extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Control_Area_Background_Extension.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Background.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Close_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Close_Button.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Close_Button_Press_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Close_Button_Press_Overlay.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Decoration_Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Decoration_Left.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Decoration_Left_Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Decoration_Left_Bottom.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWindow/Window_Header_2.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWordArt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 975b647c7d7b5854786d2a8b5275ff7e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Panel/Sprite/UIWordArt/login_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Panel/Sprite/UIWordArt/login_title.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e291d90d45688a4fa6b24d74e4201cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78afff967dd4784479abf7581d16203e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Fir_v1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf582717bc9abf7479ddfdc7552793fd 3 | timeCreated: 1555755501 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff877304ec6ab8d4ba4c9b6a346c5775 3 | timeCreated: 1555755503 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Floor_Grass_v1_2.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72c5e0d26b8636c41b8d2dab8ac89bb4 3 | timeCreated: 1555755502 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v1_1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1523a0f878da8e44aa9166a0a9553429 3 | timeCreated: 1555755503 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v1_2.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 541867319ef080d44b29c65a3c9d5b19 3 | timeCreated: 1555755503 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v1_3.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 628ed950aa8383043806c5458764725f 3 | timeCreated: 1555755503 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Grass_v2_1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59871923837676c4faba6f9673ff6d79 3 | timeCreated: 1555755503 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Material/Pine_v1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f4b3829380d6c48b3b0bad301f2497 3 | timeCreated: 1555755502 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Model.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6f31443f7fa0dc45982d7e3fae532d5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Model/Forest_pack_models_set.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Scene/Model/Forest_pack_models_set.FBX -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c7a8838d075e1645bcd8d4e6613698c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Fir_v1_1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a47d7ad739a48614babdcba6106ead5f 3 | timeCreated: 1555821263 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Fir_v1_2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97fa5d2e177822c4084dda50fa0986c6 3 | timeCreated: 1555821264 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e43cdca195a1664d966791f28202d31 3 | timeCreated: 1555821266 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Floor_Grass_v1_2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2fbc4036fe0e9f40899ea784ee93073 3 | timeCreated: 1555821267 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v1_1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28f60661728ddb148a424ba31b70ccc4 3 | timeCreated: 1555821274 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v1_2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7943b8da41d75045a6bd919f15691ec 3 | timeCreated: 1555821268 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v1_3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b46a3851f431d14fb24389945dd98d7 3 | timeCreated: 1555821269 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Grass_v2_1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bca1934b3991fe648b8181db36dfcfcb 3 | timeCreated: 1555821273 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Pine_v1_1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13f47203b7fe8ff479a289d12f2f47ed 3 | timeCreated: 1555821278 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Prefab/Pine_v1_2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07232b84fecc54e45b2e071b6885bb96 3 | timeCreated: 1555821280 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ea66866b44c93144a09d0ef478d3cbd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Fir_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Scene/Texture/Fir_v1.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_1.tga -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Scene/Texture/Floor_Grass_v1_2.tga -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Scene/Texture/Grass_v1_1.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Scene/Texture/Grass_v1_2.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Scene/Texture/Grass_v1_3.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Grass_v2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Scene/Texture/Grass_v2_1.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Scene/Texture/Pine_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameArt/Scene/Texture/Pine_v1.png -------------------------------------------------------------------------------- /RPG/Assets/GameArt/ShaderVariants.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7b9dfc91ba63144f80cb8eae26d6967 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e77054acd859ab4998b79029e3f10ca 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/ShaderVariants/MyShaderVariants.shadervariants.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 052475998c92b514d8e0f6113966b006 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 20000000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 383733c391d1c314cbad12252f7d8726 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Shaders/StandardMobile.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3da53e94e926e0140a44a19326e2b2b3 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | preprocessorOverride: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /RPG/Assets/GameArt/Shaders/StandardMobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba67c8b1d5e59dc428ad9fc9270f8353 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | preprocessorOverride: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a52c6b2580b8154bbdfbb58b540449e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25be8e38d0899b540968267d1a105111 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly/GameDLL.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Assembly/GameDLL.bytes -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly/GameDLL.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b35490d94c7b74f489b1d55c937c9bed 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly/GamePDB.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Assembly/GamePDB.bytes -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Assembly/GamePDB.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3155b49361a2e9438d19a844eb8363d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab37fa6b15eef2f479e3f8ba173cd302 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a03fe57a94e6314409c65a5f41988793 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Attack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Footman/Attack.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Death.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Footman/Death.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Help.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Footman/Help.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Hit1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Footman/Hit1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Hit2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Footman/Hit2.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Hit3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Footman/Hit3.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/OnMyWay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Footman/OnMyWay.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Yes.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Footman/Yes.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Footman/Yes2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Footman/Yes2.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Music.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca141794262d24146b956efdecb85268 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/Music/town.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/Music/town.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2a65612dff91d84c99f521332eaaa35 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_accept1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/UI/sfx_accept1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_click1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/UI/sfx_click1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_error1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/UI/sfx_error1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_return1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/UI/sfx_return1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/sfx_rover1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/UI/sfx_rover1.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/stinger_lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/UI/stinger_lose.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Audio/UI/stinger_win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Audio/UI/stinger_win.mp3 -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f4e2200bf092bb4e81c51d399935ba1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21c951ed561fe944ba0c121205168c6a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Blue.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5bad295ed8f6754e9bd894fae5183f7 3 | timeCreated: 1474423076 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Green.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24fa9e3e1d2eec940ad985538026a810 3 | timeCreated: 1474423176 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Red.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e43321bd9a3dcf41912909572abad37 3 | timeCreated: 1474423123 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Entity/Character/footman_Yellow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6f91a002e7310d498905f21109aed46 3 | timeCreated: 1474422828 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed70850d927e00e459d621866555013b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Boot.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff82fa087c95cb742afc70cb7c8b21ce 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Login.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26eec709cc92168438127221c4b90a45 3 | timeCreated: 1555841430 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ff945d6b81187b4188c9667c77658d6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a08a0ecce1946164293a4085af36ce58 3 | timeCreated: 1555841430 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Scene/Town/LightingData.asset -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town/LightingData.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffb79d08c18968c4f95ab7aa0996a9b4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/Scene/Town/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/Scene/Town/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ae66269934dcb84fbd69163d0befcb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UICommon.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9383e90d8fd76f241af15da9d73d2e55 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UILoading.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eb7f7b722b77f6479e55067cde230b8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UISpellIcon.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1679f4d6c3aca0549bfab2e3f327a98b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UIWindow.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e75075111027eb49b0fbe6fd37992c0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIAtlas/UIWordArt.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 900eed85748626f4e81b068deb06435e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 901c991e19f3cfc4db85cb6fe8346799 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UILoading.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75109108f3392ce48bcc44fdeb9ce4be 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UILogin.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ad24d404cac2cb47bf9eb6a9afbe068 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UIMain.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9935e53d0c303f447bc56971d8293e15 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UIRoot.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e997dfcb78ab50409b689be4bc3c0fb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/UISetting.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0f843be4f7f87b4894253ba9dc7d5ef 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UIPanel/_UIXXX.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e85dc03da195668468853297748c0a16 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UITexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5fd16540998a2042a245007aeaa0cb8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UITexture/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/UITexture/bg1.jpg -------------------------------------------------------------------------------- /RPG/Assets/GameRes/UITexture/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/GameRes/UITexture/bg2.png -------------------------------------------------------------------------------- /RPG/Assets/GameScript.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae2d042aded19184a91d647f6a05dcc5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a7ab709b4f505644b97de49f175fb4a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/EditorInitialize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5df2a2eb2c98964aa031985fc4819d3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03a75eb6aa9b36c41803a52c2c677dc5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeAssemblyBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83a29c9792cee924f8f425673ad20c36 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeCLRBinding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a82d18b50f5dd964d9a9b4b871f44aca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ILRuntime/ILRuntimeInitialize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ddaf67e9f997da459ae2c9ba79d19a8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Editor/ModelMaterialProcessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b0764edfd96df749beba969750ebdfd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79337e928ea02ef40b2dfa0035d10b3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/GameLauncher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ee161f446e3f04386d3f5a2302d8eb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/GameUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6441b47d498293f45bf79126e91d10e3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bf613df1110944408d0b28180a2a3f1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/AssetConfigAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46303a019fa40454b9f9b74189578725 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/CanvasWindowAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3345d58356092d84ebcd0b4f0dd0c823 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/ConfigTableAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee5d67063b8376e4998a846b964025da 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/CoroutineAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0081ad1f8008dc4a83e67cb89f90eee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/IEventMessageAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b937adcdb75669e4fa85ea84760872f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/IFsmNodeAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85d242f1d1c2b3949b6ab75bdd00f292 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRAdapter/IMessageAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b09471344526c644979f054a6862006 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRBinding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 036f4540f0171fe48b1d03bebe78f0f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f840c4315556fb3478ee0d852013d7a2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/AdaptMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f84539e6dc349e47869663fdd6177cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ILRDefine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d96a157ae4b4e89438c48ddb380a8651 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ILRManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdc6ebc1f87fc8b44b8ed4cbd720df31 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ILRRegister.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11fb6c8770caae04399ab2e58489d437 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11205333b5c6cf9439e840d5861281be 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/ILRStaticMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 322636fed830ca844818d28ea567054a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/IStaticMethod.cs: -------------------------------------------------------------------------------- 1 |  2 | public interface IStaticMethod 3 | { 4 | object Invoke(); 5 | object Invoke(object arg0); 6 | object Invoke(object arg0, object arg1); 7 | object Invoke(object arg0, object arg1, object arg2); 8 | object Invoke(params object[] args); 9 | } -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/IStaticMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 401020da5bd8e7e44bedd130654b89a2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/StaticMethod/MonoStaticMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da728df0bb7560a42b91a3d454a4dc87 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 688c49290c65326499b7d2228d378880 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder/QuaternionBinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 920822d60c630494b979b168b6b29bf2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder/Vector2Binder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d65f866908de9f498e37a8bd9eb153b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/ILRManager/ValueTypeBinder/Vector3Binder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4116bef76d5eca04285d64ec0b8ac9c4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00c6fe7a887feff49b625c468c80935d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility/BhvCameraFlow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca6704cb5f337424dbe5cad026e53b3f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility/ObjectPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a36572aec1846f349879bcbea73cf181 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/GameScript/Runtime/Utility/UIJoystick.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b8e08c79e96997429da7ca4d0f23b5f 3 | timeCreated: 1449938022 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /RPG/Assets/MotionAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9f91f643119f9b4abe5a64fcadc39a0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/MotionAssets/ModelDefaultMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84be42703625d0542a4cfeb281c1d23a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/MotionFramework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/MotionFramework.zip -------------------------------------------------------------------------------- /RPG/Assets/MotionFramework.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe4bbd092ead4744d91ad5a50b1feffb 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/MotionSetting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51fc6ba9ad7434e4780a931ae87d8b29 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/MotionSetting/UIPanelSetting.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffba3c1877445a24b9b4e573ae2011d0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a788cb8a0cfec78419195c0d36ce126c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82473a4eec21b5448842e7e6205ffdd9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ByteArray.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc6f6a4c966390c4da2d54d15368bd0d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/Google.Protobuf/ByteString.cs -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ByteString.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0495e4b3ba1ec7f498d877a234323a35 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/CodedInputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1df2eb703cafa984fa2b4ea1d596b0cd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.ComputeSize.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c94acc4c66cb8e14ca00789b21ef4dde 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4768e92c8082c14db86e6dd81843cf7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/FieldCodec.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc2f63c5dd762a74785e957e9e2ff0c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ICustomDiagnosticMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e3f9f48b78790d40b93778ba6fc08aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/IMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99b4394158577934492f893a057dc06f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/InvalidProtocolBufferException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3eb2be644ccc6fc4187e38443cc47ea5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/LimitedInputStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f02379e5cbe40714dba4d002f8980dbf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/MessageExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23cd5cb094c72654abdb3a2a71ee5a80 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/MessageParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c7045bb59482bd4ba45e875f377820b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/PropertyInfoExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1ba303b1b8d9d943a4c0189a878a77f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/ProtoPreconditions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec2d66cb17ca74d49890f00206696580 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/Google.Protobuf/README.txt -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f17c1d9bfeecf0b479baa80d9f39ddcd 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/RepeatedField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 462fd9852b348c34094dbb0e82649335 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/StreamExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51467fdc5aeb0374baba8cb484d68f4c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/Google.Protobuf/WireFormat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bf59a3ce666cd14392ea36d61668d87 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6320e01f2fecda42a33082518a8bd6a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee846e3bb70144a40bb4b6dacfad6a2d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 630d5a56e0670f14ebe45d5248255ee6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37eb0c31a0810da4f9bc4e69dc8d97ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/CLRMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3dbb125e68906a48be4f935a3afee69 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ExceptionHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ea24423aece28540bf598c2511638cb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/ILMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a8bbfb1b47c9994c83cb7eb35e90639 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94f2b2d1ba58cd141b177997a22508f6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Method/IMethodExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdad1a8e799e64045914beddc4e98b52 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13a19d28799170d478262730fbdd95ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/CLRType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbf9c103a76c8bf4c95aa6efc8081cb4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/ILGenericParameterType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81e0dd1b7ff368243965a9dc77c3cb13 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/ILType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecb8554215240e14788666c77abb0b98 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/TypeSystem/IType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0026e65e27dab214184ea616a1c64108 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6da6bf27e9d32c64991cc2aac2cb21f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/CLR/Utils/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1c6c8d2be5ae6f409bc1eb649c8f822 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/ILRuntime.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a1fa966b0ea23f40a6a4dc4dab1e297 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa616c00e9e57fb41a7cec065eeb0d67 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad9fec4d933baf946a9d4aa76282bab5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/ByReferenceKeyComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 877c884c00f51e94eb15715c410aeb65 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/DelegateExportAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c656c3c6ab0195041be3be42a2f5a779 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/NeedAdaptorAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace ILRuntime.Other 2 | { 3 | /// 4 | /// A Class Custom Attr, It tells the CodeGenerationTools :there is a class need to generate an adaptor for ILScript 5 | /// 6 | public class NeedAdaptorAttribute : System.Attribute 7 | { 8 | 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/NeedAdaptorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5517305d8c7565a4789fd4716fbf0879 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/ThreadSafeDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff0697365add40349b35057a6d7534e4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 956eddfbedf965d4989e121cdd809333 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Other/UncheckedStack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7619baff3bf58d04ab1642b819426b1e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3524fa4850bc0d443887ecd7e23d5af9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.pdb -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Mdb.pdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54fbe58b59d96d34a86afb1b4ca42785 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.Pdb.pdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a0fd1cedb05e944ea34b7ecad1667d2 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.dll -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.pdb -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Plugins/ILRuntime.Mono.Cecil.pdb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba882d82b239a07418acdc5813ea1991 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9b5a3baa1af3994ea80808cbb4e530c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1647d7001770e83438d3c3f4490d84b1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 907859df2631f99408e540f7b3d2ae85 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeConstructorInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d8048a7710a4de4ead9b8b370232cad 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeFieldInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27d0b6abaf7ccf04aa2478d69b8eeb91 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeMethodInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fdf8ccce21667d428fdfc8b1d68c221 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeParameterInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12b94f4dff81610439eb2bf2d894603a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimePropertyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7463a61c46426b948a2b1b0ccf326f29 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6425724fba61994d9da9255d6562819 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Reflection/ILRuntimeWrapperType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: faae6fcd74930714082356a8bb9bf7c1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d58c7481e0bd90439d950993b62b51b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Adaptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 401f07f3f5729b049b57db8a498075ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Adaptors/CLRCrossBindingAdaptors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29de6a3f901fe904f8811562feb21f3e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79eadd3fd5cf1164dbbb8cd882c4e13f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/BindingCodeGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5956f648783a1bd49beaeec0f2a1fa30 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/BindingGeneratorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcf9d79f9a552324b8242250c32d5196 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/CLRBindingUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc4b1a536798d3547abe8dcce161021a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/CommonBindingGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66f3c205a7bb1434aa285551b8f7f923 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/ConstructorBindingGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55d2b97d1c843944c8df15818d8b95c6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/FieldBindingGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dda70f3f61981ff45b4011f051928024 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/MethodBindingGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 655255f7339dd11478043663ba8d78d2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/CLRBinding/ValueTypeBindingGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f42d8adead9b884aae5f85fe0308cf8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65835fa8e4b7f9b429be01c904e26047 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/BreakPointContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc65ac89c5291864b83a43a432daa604 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/BreakpointInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ac5a4449372dc341a4132749f67e36c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugMessageType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77ca2f81ddd0ebf4c8bc4be85a3c02af 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4b6734a800c1bc418f20b5134d06b4f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebugSocket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb127c479e2bea34c97a8e5fcad335c8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebuggerServer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 872ddceccde5db343af921b9e24c41e1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/DebuggerServer/DebuggerServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db1c7b1db9fc6164f8b87af231356da5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caec89a6f7a7c6a4f87770e07ed3367b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSBindBreakpoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 798cb6ed84a432c4bb082d36d6533ead 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSDeleteBreakpoint.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ILRuntime.Runtime.Debugger.Protocol 7 | { 8 | public class CSDeleteBreakpoint 9 | { 10 | public int BreakpointHashCode { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSDeleteBreakpoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c57939c2b7ab7004ba504b26fe480fcc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSEnumChildren.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f1b6c2924929764c915363b0e803a64 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSExecute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ILRuntime.Runtime.Debugger.Protocol 7 | { 8 | public class CSExecute 9 | { 10 | public int ThreadHashCode { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSExecute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8129efce623e104fbb40c3b5ba30897 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSResolveIndexer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 315e1096683f769418db4f9160f3e9db 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSResolveVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92ad7c3a5f28022418372915e27d60c1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSStep.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ILRuntime.Runtime.Debugger.Protocol 7 | { 8 | public class CSStep 9 | { 10 | public int ThreadHashCode { get; set; } 11 | public StepTypes StepType { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/CSStep.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22416ef0de1858e4b897e5a4bb9b5c1a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCAttachResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b48669c612e546b45904127a4ccd15f1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCBindBreakpointResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7346c58a9feebb645a0f138914dd5597 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCBreakpointHit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3b9d5648b90de94e80a7c403eeb9aee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCEnumChildrenResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ILRuntime.Runtime.Debugger.Protocol 7 | { 8 | public class SCEnumChildrenResult 9 | { 10 | public VariableInfo[] Children { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCEnumChildrenResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eabd1721aeb7fc54bacd226ce07ff2f2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCModuleLoaded.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ILRuntime.Runtime.Debugger.Protocol 7 | { 8 | public class SCModuleLoaded 9 | { 10 | public string ModuleName { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCModuleLoaded.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 178bc2cf4a0e5684cadbfbeafe80d30b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCResolveVariableResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ILRuntime.Runtime.Debugger.Protocol 7 | { 8 | public class SCResolveVariableResult 9 | { 10 | public VariableInfo Info { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCResolveVariableResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 097cf517f9d7f70448400d0999dd4733 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCStepComplete.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dffd87ac52569aa4098696df5254de99 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/Protocol/SCThreadStarted.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9208b4060c34134098c5b5c643453b9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StackFrameInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6336208dcb09ad041bfbdbfc246c9901 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StepTypes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ILRuntime.Runtime.Debugger 7 | { 8 | public enum StepTypes 9 | { 10 | None, 11 | Into, 12 | Over, 13 | Out, 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/StepTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbbcab3c15ab32b4a89185c39d7241d4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Debugger/VariableInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d72d254940e20444bbcca33705ddb712 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9f84f8eb2ce75c4fa1bd23fd683357d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/AppDomain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d2979e3e00f1034a9796400d60154f2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/CLRRedirections.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69ac1600e35e1d54b9c7f890b7f44d14 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/CrossBindingAdaptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa27ae190f249674cbda08b87991fda6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/CrossBindingCodeGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c3a059b9709c244098552b08fac4abc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/CrossBindingMethodInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb3bc6dadeed64140a09673bbfcd8b1d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/DelegateManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd8f3a57093a8ed47ae043aa7231aded 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/InvocationContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0db2b73e9aa72f74d90d5b6b9525c557 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Enviorment/ValueTypeBinder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a37d41c55f279a94dad2454e78957f66 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ad46f04be9640e449c799dc4797e380 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/ILRuntimeJITAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 628e4128eda57f34fb73fc244250853b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97bd772d95eee0f49bd20961e962d2e6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/DelegateAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e377b70aad59a7b4ebb0738a82627bc4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILIntepreter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77e7463043b2f6f42811c847d996c056 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILRuntimeException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e7d3903d47560f46a92c2fe90284fc4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/ILTypeInstance.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70c7a5628f1198c4291dbe23b8d08578 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c82c9a97977db4c45b97195b9cb3dc73 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29b9cc57219107648acd6faf60e3a0f5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCodeEnum.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10e1ce2a3a7cc5a49a22cf9637f69bf7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/OpCodes/OpCodeREnum.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0c50748c379768438a1533f0ac05e3b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25582018d46245449803fb7053eb0a88 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/AsyncJITCompileWorker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 444a16b0db8a8f341b3b57aeb1479e81 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/CodeBasicBlock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: add61a2912fe01649804e7aac2d71e90 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/ILIntepreter.Register.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68a80e23f283207479fb0ad89e4ad387 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/JITCompiler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 159143ac771426642a438f481f71d08e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/Optimizer.BCP.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6091188f9eda3e64f86bce466ad994bc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/Optimizer.ELDC.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dff3a9d85d501814c9504eb74692a0fd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/Optimizer.FCP.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc72a336f3e5a6544abb87630bdde59d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/Optimizer.InlineMethod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59552d5f41b69454688c62ce7ccbf654 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/Optimizer.RegisterCleanup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 119daba63e520d94d8c478b937b41e1b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Intepreter/RegisterVM/Optimizer.Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99db09b498825dd48a0f400b01c27387 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8acb4fa59b7345a4aafae038b6adb217 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/RuntimeStack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13f8818b245d2d84cbbceeeeece3bd08 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackFrame.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff2e1030c82bad3458b4aa24c0fc575e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d829812451ae0843bc1c0466706c508 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Runtime/Stack/StackObjectAllocator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9117193ea112934bb4170948e2c4323 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Debugger~/ILRuntimeDebuggerLauncher.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Debugger~/ILRuntimeDebuggerLauncher.vsix -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b954049b638ae87459d020b08e751075 3 | folderAsset: yes 4 | timeCreated: 1487041628 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Editor/ILRuntimeCrossBinding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c7a8312d4408db4d90df8cf627e124b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Editor/ILRuntimeMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bc9b09d590588549b0d1efc0936274c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/TestCLRRedirection.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace HotFix_Project 5 | { 6 | public class TestCLRRedirection 7 | { 8 | public static void RunTest() 9 | { 10 | UnityEngine.Debug.Log("看看这行的详细Log信息"); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.CoreModule.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.CoreModule.pdb -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.InputLegacyModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.InputLegacyModule.dll -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.UIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.UIModule.dll -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.UIModule.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/HotFix_Project~/UnityDlls/UnityEngine.UIModule.pdb -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: feab2fabf79187c48bbc4aeb3f483571 3 | folderAsset: yes 4 | timeCreated: 1499871438 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0698a207332b63040b8ff6588024c70a 3 | timeCreated: 1499871438 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/JsonMapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 934218b2d4d36e94099e4fd9c2b038cf 3 | timeCreated: 1499871438 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/LitJson/Lexer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dba2340c538ddd4b89e83b99a240a67 3 | timeCreated: 1499871438 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a16cfebe6d6f5d4d993595fd4b8aa38 3 | folderAsset: yes 4 | timeCreated: 1486954235 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dc20622787032f458a1db8737436507 3 | folderAsset: yes 4 | timeCreated: 1486954247 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/01_HelloWorld.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f408f075b262a484e8fe60aac0aac27b 3 | folderAsset: yes 4 | timeCreated: 1486954273 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/02_Invocation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3ec7d16af5c0ad45a3c94bf6c720e81 3 | folderAsset: yes 4 | timeCreated: 1486956141 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/03_Delegate.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18d7afa00c3388e438f4d4842505ab85 3 | folderAsset: yes 4 | timeCreated: 1486967031 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/04_Inheritance.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb129b1627ae5b549b95e5be7f15ef8e 3 | folderAsset: yes 4 | timeCreated: 1486973884 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/05_CLRRedirection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a8b22746af4c794b9a7e23ce81d4833 3 | folderAsset: yes 4 | timeCreated: 1486978498 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/06_CLRBinding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b52b499082cc424ea83c9a70b8619ad 3 | folderAsset: yes 4 | timeCreated: 1486981701 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/07_Coroutine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80071404efbe25940b912634722c3737 3 | folderAsset: yes 4 | timeCreated: 1486985928 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/08_MonoBehaviour.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0489e060e59dbf14c8664a8112bf30a2 3 | folderAsset: yes 4 | timeCreated: 1487041277 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/08_MonoBehaviour/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9b084e14e4f94e439943da41f6a6dd8 3 | folderAsset: yes 4 | timeCreated: 1487053478 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/09_Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 325fbd9984600d944af58bfdfe005b3b 3 | folderAsset: yes 4 | timeCreated: 1488788392 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/10_LitJson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d714c728f14e1ef42a729f2406efc034 3 | folderAsset: yes 4 | timeCreated: 1499916003 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/11_ValueTypeBinding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90b437250469f8844ae68cda3e955037 3 | folderAsset: yes 4 | timeCreated: 1506324119 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/Scripts/Examples/12_Performance.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15252ad84286d324abb778fff861c29c 3 | folderAsset: yes 4 | timeCreated: 1486954273 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5233767601eadb4da055198b8997450 3 | folderAsset: yes 4 | timeCreated: 1482553746 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef48e6492d3193840b15b97f976b8060 3 | folderAsset: yes 4 | timeCreated: 1486955800 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/01_HelloWorld.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/01_HelloWorld.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/01_HelloWorld.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56620a4653ae58343b8300b6074ad088 3 | timeCreated: 1482555128 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/02_Invocation.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/02_Invocation.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/02_Invocation.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d1ef1b8988e83946b4289682e65776b 3 | timeCreated: 1486957720 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/03_DelegateDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/03_DelegateDemo.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/03_DelegateDemo.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9211fe9e0c54a54cb65e37363affa53 3 | timeCreated: 1486968330 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/04_Inheritance.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/04_Inheritance.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/04_Inheritance.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56daea5211179b24fbe1750a0fe90c5c 3 | timeCreated: 1486974349 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/05_CLRRedirection.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/05_CLRRedirection.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/05_CLRRedirection.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbe4520c722e31f45958d69012b93660 3 | timeCreated: 1486980461 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/06_CLRBinding.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/06_CLRBinding.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/06_CLRBinding.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 330a99d437556e44fae2f9536625858d 3 | timeCreated: 1486982044 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/07_Coroutine.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/07_Coroutine.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/07_Coroutine.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 680af673a4eadd149869ad62e2dd67e5 3 | timeCreated: 1486986220 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/08_MonoBehaviour.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/08_MonoBehaviour.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/08_MonoBehaviour.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7ac49f24aa667841af3280176319af5 3 | timeCreated: 1487043325 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/09_Reflection.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/09_Reflection.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/09_Reflection.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80c487acaa278b54ea9d19f6583ff9b0 3 | timeCreated: 1488788392 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/10_LitJson.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/10_LitJson.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/10_LitJson.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0de1e449c9b1f65419c9098f9a888a4c 3 | timeCreated: 1499916025 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/11_ValueTypeBinding.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/11_ValueTypeBinding.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/11_ValueTypeBinding.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7185ea4f44cf454da8050bf03a1f58f 3 | timeCreated: 1506324221 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/12_Performance.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/12_Performance.unity -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/12_Performance.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0678d5b24b6c6b24bad373b88d615886 3 | timeCreated: 1482555128 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/12_PerformanceSettings.lighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/12_PerformanceSettings.lighting -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/_Scenes/Examples/12_PerformanceSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a96ee217c57f90a41a400054dbdf962b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4890085278179872738 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/Samples~/Basic Demo/performance.lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2066d148020d826439e5238eaf0f1495 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/ILRuntime/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d986ba9c5b3c59941899a494758864da 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a9b4c60bf87c9b4b8940515cac77acc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/IJsonWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa120043e96c1a44cb145e04c7c5e72d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe1fa06756c294343ae7a91b61de7b95 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a047f4855fae8b4f9f57af88d6fea37 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonMapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e494938dca61314086bdd1a858ae790 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonMockWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c21fe5b2d9d0cc499fe1866e5ca5e19 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a38e4953ebaacf54aae7781c29fa0f48 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/JsonWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae0a0009f5eab624bb01a9ac317e91b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/Lexer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e6ca0a4f32763c4ea436ce8c43db45f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/ThirdParty/LitJson/ParserToken.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1c0eda711a49744c90338b19a1399d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74e78e8cd354bf549ba94ab522c229ba 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting/AssetBundleBuilderSetting.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 655efe305d7c58a48b2cab2b30d1c3ff 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting/AssetBundleCollectorConfig.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fee4cd5eb746a345892f5061220f103 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /RPG/Assets/YooAssetSetting/AssetBundleCollectorSetting.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6c54d53febbcd2428f8880e5b2fb4a2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Battle/BattleDefine.cs: -------------------------------------------------------------------------------- 1 |  2 | public enum EHeroType 3 | { 4 | Soldier = 1, 5 | } -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Data/Datas/DataPlayer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | 5 | public class DataPlayer : DataBase 6 | { 7 | public override void OnCreate() 8 | { 9 | } 10 | public override void OnUpdate() 11 | { 12 | } 13 | public override void OnDestroy() 14 | { 15 | } 16 | } -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Data/EDataType.cs: -------------------------------------------------------------------------------- 1 |  2 | public enum EDataType 3 | { 4 | DataLogin, 5 | DataPlayer, 6 | } -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Event/GameEventDefine.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using MotionFramework.Event; 4 | 5 | public class GameEventDefine 6 | { 7 | public class TestEvent : IEventMessage 8 | { 9 | } 10 | } -------------------------------------------------------------------------------- /RPG/Game/Scrpits/Window/EWindowLayer.cs: -------------------------------------------------------------------------------- 1 |  2 | public enum EWindowLayer 3 | { 4 | Background = 0, //背景层 5 | HUD = 100, //HUD层 6 | Panel = 1000, //面板层 7 | Tips = 30000, //提示层 8 | Guide = 30100, //引导层 9 | Mask = 30200, //遮罩层 10 | Loading = 30300, //加载层 11 | Max = 32767 //Short.MaxValue 12 | } -------------------------------------------------------------------------------- /RPG/Game/UnityDlls/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Game/UnityDlls/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /RPG/Game/UnityDlls/UnityEngine.IMGUIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Game/UnityDlls/UnityEngine.IMGUIModule.dll -------------------------------------------------------------------------------- /RPG/Game/UnityDlls/UnityEngine.UIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Game/UnityDlls/UnityEngine.UIModule.dll -------------------------------------------------------------------------------- /RPG/Game/UnityDlls/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/RPG/Game/UnityDlls/UnityEngine.dll -------------------------------------------------------------------------------- /RPG/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /RPG/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/GameRes/Scene/Boot.unity 10 | guid: ff82fa087c95cb742afc70cb7c8b21ce 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /RPG/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /RPG/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.4.40f1c1 2 | m_EditorVersionWithRevision: 2019.4.40f1c1 (bcafa7f80565) 3 | -------------------------------------------------------------------------------- /RPG/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /RPG/ProjectSettings/UPRSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!487778994 &1 4 | UPRManager: 5 | m_openweb: 1 6 | m_screenshotEnable: 1 7 | m_objectProfilerTicker: 0 8 | -------------------------------------------------------------------------------- /RPG/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_RenderPipeSettingsPath: 10 | m_FixedTimeStep: 0.016666668 11 | m_MaxDeltaTime: 0.05 12 | -------------------------------------------------------------------------------- /RPG/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /工具/Docs/Image/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/工具/Docs/Image/img1.png -------------------------------------------------------------------------------- /工具/Docs/Image/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/工具/Docs/Image/img2.png -------------------------------------------------------------------------------- /工具/Docs/Image/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/工具/Docs/Image/img3.png -------------------------------------------------------------------------------- /工具/Docs/Image/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/工具/Docs/Image/img4.png -------------------------------------------------------------------------------- /工具/FlashExcel-bin-v1.0.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/工具/FlashExcel-bin-v1.0.4.zip -------------------------------------------------------------------------------- /表格/Animation.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/表格/Animation.xlsx -------------------------------------------------------------------------------- /表格/AutoGenerateLanguage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/表格/AutoGenerateLanguage.xlsx -------------------------------------------------------------------------------- /表格/Avatar.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/表格/Avatar.xlsx -------------------------------------------------------------------------------- /表格/Monster.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/表格/Monster.xlsx -------------------------------------------------------------------------------- /表格/Player.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/表格/Player.xlsx -------------------------------------------------------------------------------- /表格/Skill.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/表格/Skill.xlsx -------------------------------------------------------------------------------- /表格/UILanguage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework-Demo/880e84ac23ab8b3c775dde0ce7430dfed26554a0/表格/UILanguage.xlsx --------------------------------------------------------------------------------