├── .gitignore ├── LuaPhysicsEngine.omwscripts ├── README.md ├── Sources ├── ChunkExporter.py └── tx_ash_cloud_dense.pdn ├── icons └── m │ └── debris.dds ├── images ├── Physics1.gif ├── Physics2.gif ├── banner1.png └── banner2.png ├── meshes ├── debris │ ├── misc_com_bottle_&01&10__blue_straw_chunk_0.nif │ ├── misc_com_bottle_&01&10__blue_straw_chunk_1.nif │ ├── misc_com_bottle_&01&10__blue_straw_chunk_2.nif │ ├── misc_com_bottle_&01&10__blue_straw_chunk_3.nif │ ├── misc_com_bottle_&01&10__blue_straw_chunk_4.nif │ ├── misc_com_bottle_&01&10__blue_straw_chunk_5.nif │ ├── misc_com_bottle_&02&08__green_chunk_0.nif │ ├── misc_com_bottle_&02&08__green_chunk_1.nif │ ├── misc_com_bottle_&02&08__green_chunk_2.nif │ ├── misc_com_bottle_&02&08__green_chunk_3.nif │ ├── misc_com_bottle_&02&08__green_chunk_4.nif │ ├── misc_com_bottle_&02&08__green_chunk_5.nif │ ├── misc_com_bottle_&03__green_jug_chunk_0.nif │ ├── misc_com_bottle_&03__green_jug_chunk_1.nif │ ├── misc_com_bottle_&03__green_jug_chunk_2.nif │ ├── misc_com_bottle_&03__green_jug_chunk_3.nif │ ├── misc_com_bottle_&03__green_jug_chunk_4.nif │ ├── misc_com_bottle_&03__green_jug_chunk_5.nif │ ├── misc_com_bottle_&03__green_jug_chunk_6.nif │ ├── misc_com_bottle_&04&09__green_wicker_chunk_0.nif │ ├── misc_com_bottle_&04&09__green_wicker_chunk_1.nif │ ├── misc_com_bottle_&04&09__green_wicker_chunk_2.nif │ ├── misc_com_bottle_&04&09__green_wicker_chunk_3.nif │ ├── misc_com_bottle_&04&09__green_wicker_chunk_4.nif │ ├── misc_com_bottle_&04&09__green_wicker_chunk_5.nif │ ├── misc_com_bottle_&05&06__blue_chunk_0.nif │ ├── misc_com_bottle_&05&06__blue_chunk_1.nif │ ├── misc_com_bottle_&05&06__blue_chunk_2.nif │ ├── misc_com_bottle_&05&06__blue_chunk_3.nif │ ├── misc_com_bottle_&05&06__blue_chunk_4.nif │ ├── misc_com_bottle_&05&06__blue_chunk_5.nif │ ├── misc_com_bottle_&07__blue_jug_chunk_0.nif │ ├── misc_com_bottle_&07__blue_jug_chunk_1.nif │ ├── misc_com_bottle_&07__blue_jug_chunk_2.nif │ ├── misc_com_bottle_&07__blue_jug_chunk_3.nif │ ├── misc_com_bottle_&07__blue_jug_chunk_4.nif │ ├── misc_com_bottle_&07__blue_jug_chunk_5.nif │ ├── misc_com_bottle_&07__blue_jug_chunk_6.nif │ ├── misc_com_bottle_&11&14__brown_chunk_0.nif │ ├── misc_com_bottle_&11&14__brown_chunk_1.nif │ ├── misc_com_bottle_&11&14__brown_chunk_2.nif │ ├── misc_com_bottle_&11&14__brown_chunk_3.nif │ ├── misc_com_bottle_&11&14__brown_chunk_4.nif │ ├── misc_com_bottle_&11&14__brown_chunk_5.nif │ ├── misc_com_bottle_&12__brown_jug_chunk_0.nif │ ├── misc_com_bottle_&12__brown_jug_chunk_1.nif │ ├── misc_com_bottle_&12__brown_jug_chunk_2.nif │ ├── misc_com_bottle_&12__brown_jug_chunk_3.nif │ ├── misc_com_bottle_&12__brown_jug_chunk_4.nif │ ├── misc_com_bottle_&12__brown_jug_chunk_5.nif │ ├── misc_com_bottle_&12__brown_jug_chunk_6.nif │ ├── misc_com_bottle_&13&15__brown_straw_chunk_0.nif │ ├── misc_com_bottle_&13&15__brown_straw_chunk_1.nif │ ├── misc_com_bottle_&13&15__brown_straw_chunk_2.nif │ ├── misc_com_bottle_&13&15__brown_straw_chunk_3.nif │ ├── misc_com_bottle_&13__brown_straw_chunk_4.nif │ ├── misc_com_bottle_&13__brown_straw_chunk_5.nif │ ├── misc_com_bottle__brown_chunk_0.nif │ ├── misc_com_bottle__brown_chunk_1.nif │ ├── misc_com_bottle__brown_chunk_2.nif │ ├── misc_com_bottle__brown_chunk_3.nif │ ├── misc_com_bottle__brown_chunk_4.nif │ └── misc_com_bottle__brown_chunk_5.nif └── e │ ├── impact │ ├── cloudSmall.nif │ └── cloudSmall.thick.noemit.nif │ └── physics │ └── transparent_liquid_shatter.nif ├── scripts └── MaxYari │ └── LuaPhysics │ ├── PhysicsDestructibleGlobal.lua │ ├── PhysicsDestructibleObject.lua │ ├── PhysicsDestructiblePlayer.lua │ ├── PhysicsEngineGlobal.lua │ ├── PhysicsEngineLocal.lua │ ├── PhysicsEngineNPC.lua │ ├── PhysicsEnginePlayer.lua │ ├── PhysicsObject.lua │ ├── libs │ ├── json.lua │ └── randomlua.lua │ ├── scripts │ ├── anim_manager.lua │ ├── events_manager.lua │ ├── gutils.lua │ ├── item_utils.lua │ ├── movement_utils.lua │ ├── physics_ai_system.lua │ ├── physics_defs.lua │ ├── physics_material_system.lua │ ├── physics_sound_system.lua │ └── physics_utils.lua │ ├── settingsPageGlobal.lua │ └── settingsPagePlayer.lua ├── sounds ├── physics │ ├── Book__01.wav │ ├── Book__02.wav │ ├── Carpet__01.wav │ ├── Carpet__02.wav │ ├── Ceramic_Crash__01.wav │ ├── Ceramic_Crash__02.wav │ ├── Ceramic_Crash__04.wav │ ├── Ceramic_Ring__01.wav │ ├── Ceramic_Small__01.wav │ ├── Ceramic__02.wav │ ├── Ceramic__03.wav │ ├── Dirt__1.wav │ ├── Dirt__2.wav │ ├── Dirt__3.wav │ ├── Fabric__01.wav │ ├── Fabric__02.wav │ ├── Glass_Crash_Wet__01.wav │ ├── Glass_Crash__01.wav │ ├── Glass_Crash__02.wav │ ├── Glass_Small__01.wav │ ├── Glass__01.wav │ ├── Metal_Small__01.wav │ ├── Metal_Small__02.wav │ ├── Metal__01.wav │ ├── Metal__02.wav │ ├── Organic__01.wav │ ├── Organic__02.wav │ ├── Paper__01.wav │ ├── Paper__02.wav │ ├── Soulgem__01.wav │ ├── Soulgem__02.wav │ ├── Soulgem__03.wav │ ├── Stone__01.wav │ ├── Stone__03.wav │ ├── Wood_Crash__01.wav │ ├── Wood_Crash__02.wav │ ├── Wood_Small__01.wav │ ├── Wood_Small__02.wav │ ├── Wood__01.wav │ ├── Wood__02.wav │ └── extra │ │ └── liquid_spill.wav └── unused │ ├── Cearmic04.wav │ ├── Cearmic05.wav │ ├── Ceramic02Wet.wav │ ├── Ceramic__01.wav │ ├── Fabric__01.wav │ ├── Fabric__02.wav │ ├── Fall01.wav │ ├── Fall02.wav │ ├── Fall05Rev.wav │ ├── Glass01.wav │ ├── Glass02.wav │ ├── Glass03Wet.wav │ ├── Glass07CrushRev.wav │ ├── Glass_Small__01.wav │ ├── Leather01.wav │ ├── Leather02.wav │ ├── Leather03.wav │ ├── Leather04.wav │ ├── Leather05.wav │ ├── Leather06.wav │ ├── Metal01.wav │ ├── Wet01.wav │ ├── Wet02.wav │ ├── Wood01.wav │ ├── Wood03Rev.wav │ ├── Wood04Rev.wav │ ├── Wood04Small.wav │ └── Wood_Small__02.wav └── textures ├── tx_ash_cloud_dense.tga └── vfx ├── Kenney License.txt ├── RO2FX_SMOKE_SE_15.dds ├── circle_01.png ├── circle_02.png ├── circle_03.png ├── circle_04.png ├── circle_05.png ├── dirt_01.png ├── dirt_02.png ├── dirt_03.png ├── fire_01.png ├── fire_01.tga ├── fire_02.png ├── flame_01.png ├── flame_02.png ├── flame_03.png ├── flame_04.png ├── flame_05.png ├── flame_06.png ├── flare_01.png ├── light_01.png ├── light_02.png ├── light_03.png ├── magic_01.png ├── magic_02.png ├── magic_03.png ├── magic_04.png ├── magic_05.png ├── magic_flare.dds ├── moisture_mist.dds ├── moisture_splatter.tga ├── muzzle_01.png ├── muzzle_02.png ├── muzzle_03.png ├── muzzle_04.png ├── muzzle_05.png ├── scorch_01.png ├── scorch_02.png ├── scorch_03.png ├── scratch_01.png ├── slash_01.png ├── slash_02.png ├── slash_03.png ├── slash_04.png ├── smoke_01.png ├── smoke_02.png ├── smoke_03.png ├── smoke_04.png ├── smoke_05.png ├── smoke_06.png ├── smoke_07.png ├── smoke_08.png ├── smoke_09.png ├── smoke_10.png ├── spark_01.png ├── spark_02.png ├── spark_03.png ├── spark_04.png ├── spark_05.png ├── spark_06.png ├── spark_07.png ├── star_01.png ├── star_02.png ├── star_03.png ├── star_04.png ├── star_05.png ├── star_06.png ├── star_07.png ├── star_08.png ├── star_09.png ├── symbol_01.png ├── symbol_02.png ├── trace_01.png ├── trace_02.png ├── trace_03.png ├── trace_04.png ├── trace_05.png ├── trace_06.png ├── trace_07.png ├── twirl_01.png ├── twirl_02.png ├── twirl_03.png ├── window_01.png ├── window_02.png ├── window_03.png └── window_04.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/.gitignore -------------------------------------------------------------------------------- /LuaPhysicsEngine.omwscripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/LuaPhysicsEngine.omwscripts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ChunkExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/Sources/ChunkExporter.py -------------------------------------------------------------------------------- /Sources/tx_ash_cloud_dense.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/Sources/tx_ash_cloud_dense.pdn -------------------------------------------------------------------------------- /icons/m/debris.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/icons/m/debris.dds -------------------------------------------------------------------------------- /images/Physics1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/images/Physics1.gif -------------------------------------------------------------------------------- /images/Physics2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/images/Physics2.gif -------------------------------------------------------------------------------- /images/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/images/banner1.png -------------------------------------------------------------------------------- /images/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/images/banner2.png -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&01&10__blue_straw_chunk_5.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&02&08__green_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&02&08__green_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&02&08__green_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&02&08__green_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&02&08__green_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&02&08__green_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&02&08__green_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&02&08__green_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&02&08__green_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&02&08__green_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&02&08__green_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&02&08__green_chunk_5.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&03__green_jug_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&03__green_jug_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&03__green_jug_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&03__green_jug_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&03__green_jug_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&03__green_jug_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&03__green_jug_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&03__green_jug_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&03__green_jug_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&03__green_jug_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&03__green_jug_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&03__green_jug_chunk_5.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&03__green_jug_chunk_6.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&03__green_jug_chunk_6.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&04&09__green_wicker_chunk_5.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&05&06__blue_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&05&06__blue_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&05&06__blue_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&05&06__blue_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&05&06__blue_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&05&06__blue_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&05&06__blue_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&05&06__blue_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&05&06__blue_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&05&06__blue_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&05&06__blue_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&05&06__blue_chunk_5.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&07__blue_jug_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&07__blue_jug_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&07__blue_jug_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&07__blue_jug_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&07__blue_jug_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&07__blue_jug_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&07__blue_jug_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&07__blue_jug_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&07__blue_jug_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&07__blue_jug_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&07__blue_jug_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&07__blue_jug_chunk_5.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&07__blue_jug_chunk_6.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&07__blue_jug_chunk_6.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&11&14__brown_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&11&14__brown_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&11&14__brown_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&11&14__brown_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&11&14__brown_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&11&14__brown_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&11&14__brown_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&11&14__brown_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&11&14__brown_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&11&14__brown_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&11&14__brown_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&11&14__brown_chunk_5.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&12__brown_jug_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&12__brown_jug_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&12__brown_jug_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&12__brown_jug_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&12__brown_jug_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&12__brown_jug_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&12__brown_jug_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&12__brown_jug_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&12__brown_jug_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&12__brown_jug_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&12__brown_jug_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&12__brown_jug_chunk_5.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&12__brown_jug_chunk_6.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&12__brown_jug_chunk_6.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&13&15__brown_straw_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&13&15__brown_straw_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&13&15__brown_straw_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&13&15__brown_straw_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&13&15__brown_straw_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&13&15__brown_straw_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&13&15__brown_straw_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&13&15__brown_straw_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&13__brown_straw_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&13__brown_straw_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle_&13__brown_straw_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle_&13__brown_straw_chunk_5.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle__brown_chunk_0.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle__brown_chunk_0.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle__brown_chunk_1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle__brown_chunk_1.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle__brown_chunk_2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle__brown_chunk_2.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle__brown_chunk_3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle__brown_chunk_3.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle__brown_chunk_4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle__brown_chunk_4.nif -------------------------------------------------------------------------------- /meshes/debris/misc_com_bottle__brown_chunk_5.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/debris/misc_com_bottle__brown_chunk_5.nif -------------------------------------------------------------------------------- /meshes/e/impact/cloudSmall.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/e/impact/cloudSmall.nif -------------------------------------------------------------------------------- /meshes/e/impact/cloudSmall.thick.noemit.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/e/impact/cloudSmall.thick.noemit.nif -------------------------------------------------------------------------------- /meshes/e/physics/transparent_liquid_shatter.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/meshes/e/physics/transparent_liquid_shatter.nif -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/PhysicsDestructibleGlobal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/PhysicsDestructibleGlobal.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/PhysicsDestructibleObject.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/PhysicsDestructibleObject.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/PhysicsDestructiblePlayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/PhysicsDestructiblePlayer.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/PhysicsEngineGlobal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/PhysicsEngineGlobal.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/PhysicsEngineLocal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/PhysicsEngineLocal.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/PhysicsEngineNPC.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/PhysicsEngineNPC.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/PhysicsEnginePlayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/PhysicsEnginePlayer.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/PhysicsObject.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/PhysicsObject.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/libs/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/libs/json.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/libs/randomlua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/libs/randomlua.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/anim_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/anim_manager.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/events_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/events_manager.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/gutils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/gutils.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/item_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/item_utils.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/movement_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/movement_utils.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/physics_ai_system.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/physics_ai_system.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/physics_defs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/physics_defs.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/physics_material_system.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/physics_material_system.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/physics_sound_system.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/physics_sound_system.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/scripts/physics_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/scripts/physics_utils.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/settingsPageGlobal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/settingsPageGlobal.lua -------------------------------------------------------------------------------- /scripts/MaxYari/LuaPhysics/settingsPagePlayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/scripts/MaxYari/LuaPhysics/settingsPagePlayer.lua -------------------------------------------------------------------------------- /sounds/physics/Book__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Book__01.wav -------------------------------------------------------------------------------- /sounds/physics/Book__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Book__02.wav -------------------------------------------------------------------------------- /sounds/physics/Carpet__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Carpet__01.wav -------------------------------------------------------------------------------- /sounds/physics/Carpet__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Carpet__02.wav -------------------------------------------------------------------------------- /sounds/physics/Ceramic_Crash__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Ceramic_Crash__01.wav -------------------------------------------------------------------------------- /sounds/physics/Ceramic_Crash__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Ceramic_Crash__02.wav -------------------------------------------------------------------------------- /sounds/physics/Ceramic_Crash__04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Ceramic_Crash__04.wav -------------------------------------------------------------------------------- /sounds/physics/Ceramic_Ring__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Ceramic_Ring__01.wav -------------------------------------------------------------------------------- /sounds/physics/Ceramic_Small__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Ceramic_Small__01.wav -------------------------------------------------------------------------------- /sounds/physics/Ceramic__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Ceramic__02.wav -------------------------------------------------------------------------------- /sounds/physics/Ceramic__03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Ceramic__03.wav -------------------------------------------------------------------------------- /sounds/physics/Dirt__1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Dirt__1.wav -------------------------------------------------------------------------------- /sounds/physics/Dirt__2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Dirt__2.wav -------------------------------------------------------------------------------- /sounds/physics/Dirt__3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Dirt__3.wav -------------------------------------------------------------------------------- /sounds/physics/Fabric__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Fabric__01.wav -------------------------------------------------------------------------------- /sounds/physics/Fabric__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Fabric__02.wav -------------------------------------------------------------------------------- /sounds/physics/Glass_Crash_Wet__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Glass_Crash_Wet__01.wav -------------------------------------------------------------------------------- /sounds/physics/Glass_Crash__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Glass_Crash__01.wav -------------------------------------------------------------------------------- /sounds/physics/Glass_Crash__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Glass_Crash__02.wav -------------------------------------------------------------------------------- /sounds/physics/Glass_Small__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Glass_Small__01.wav -------------------------------------------------------------------------------- /sounds/physics/Glass__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Glass__01.wav -------------------------------------------------------------------------------- /sounds/physics/Metal_Small__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Metal_Small__01.wav -------------------------------------------------------------------------------- /sounds/physics/Metal_Small__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Metal_Small__02.wav -------------------------------------------------------------------------------- /sounds/physics/Metal__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Metal__01.wav -------------------------------------------------------------------------------- /sounds/physics/Metal__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Metal__02.wav -------------------------------------------------------------------------------- /sounds/physics/Organic__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Organic__01.wav -------------------------------------------------------------------------------- /sounds/physics/Organic__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Organic__02.wav -------------------------------------------------------------------------------- /sounds/physics/Paper__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Paper__01.wav -------------------------------------------------------------------------------- /sounds/physics/Paper__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Paper__02.wav -------------------------------------------------------------------------------- /sounds/physics/Soulgem__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Soulgem__01.wav -------------------------------------------------------------------------------- /sounds/physics/Soulgem__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Soulgem__02.wav -------------------------------------------------------------------------------- /sounds/physics/Soulgem__03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Soulgem__03.wav -------------------------------------------------------------------------------- /sounds/physics/Stone__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Stone__01.wav -------------------------------------------------------------------------------- /sounds/physics/Stone__03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Stone__03.wav -------------------------------------------------------------------------------- /sounds/physics/Wood_Crash__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Wood_Crash__01.wav -------------------------------------------------------------------------------- /sounds/physics/Wood_Crash__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Wood_Crash__02.wav -------------------------------------------------------------------------------- /sounds/physics/Wood_Small__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Wood_Small__01.wav -------------------------------------------------------------------------------- /sounds/physics/Wood_Small__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Wood_Small__02.wav -------------------------------------------------------------------------------- /sounds/physics/Wood__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Wood__01.wav -------------------------------------------------------------------------------- /sounds/physics/Wood__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/Wood__02.wav -------------------------------------------------------------------------------- /sounds/physics/extra/liquid_spill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/physics/extra/liquid_spill.wav -------------------------------------------------------------------------------- /sounds/unused/Cearmic04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Cearmic04.wav -------------------------------------------------------------------------------- /sounds/unused/Cearmic05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Cearmic05.wav -------------------------------------------------------------------------------- /sounds/unused/Ceramic02Wet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Ceramic02Wet.wav -------------------------------------------------------------------------------- /sounds/unused/Ceramic__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Ceramic__01.wav -------------------------------------------------------------------------------- /sounds/unused/Fabric__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Fabric__01.wav -------------------------------------------------------------------------------- /sounds/unused/Fabric__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Fabric__02.wav -------------------------------------------------------------------------------- /sounds/unused/Fall01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Fall01.wav -------------------------------------------------------------------------------- /sounds/unused/Fall02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Fall02.wav -------------------------------------------------------------------------------- /sounds/unused/Fall05Rev.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Fall05Rev.wav -------------------------------------------------------------------------------- /sounds/unused/Glass01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Glass01.wav -------------------------------------------------------------------------------- /sounds/unused/Glass02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Glass02.wav -------------------------------------------------------------------------------- /sounds/unused/Glass03Wet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Glass03Wet.wav -------------------------------------------------------------------------------- /sounds/unused/Glass07CrushRev.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Glass07CrushRev.wav -------------------------------------------------------------------------------- /sounds/unused/Glass_Small__01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Glass_Small__01.wav -------------------------------------------------------------------------------- /sounds/unused/Leather01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Leather01.wav -------------------------------------------------------------------------------- /sounds/unused/Leather02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Leather02.wav -------------------------------------------------------------------------------- /sounds/unused/Leather03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Leather03.wav -------------------------------------------------------------------------------- /sounds/unused/Leather04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Leather04.wav -------------------------------------------------------------------------------- /sounds/unused/Leather05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Leather05.wav -------------------------------------------------------------------------------- /sounds/unused/Leather06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Leather06.wav -------------------------------------------------------------------------------- /sounds/unused/Metal01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Metal01.wav -------------------------------------------------------------------------------- /sounds/unused/Wet01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Wet01.wav -------------------------------------------------------------------------------- /sounds/unused/Wet02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Wet02.wav -------------------------------------------------------------------------------- /sounds/unused/Wood01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Wood01.wav -------------------------------------------------------------------------------- /sounds/unused/Wood03Rev.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Wood03Rev.wav -------------------------------------------------------------------------------- /sounds/unused/Wood04Rev.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Wood04Rev.wav -------------------------------------------------------------------------------- /sounds/unused/Wood04Small.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Wood04Small.wav -------------------------------------------------------------------------------- /sounds/unused/Wood_Small__02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/sounds/unused/Wood_Small__02.wav -------------------------------------------------------------------------------- /textures/tx_ash_cloud_dense.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/tx_ash_cloud_dense.tga -------------------------------------------------------------------------------- /textures/vfx/Kenney License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/Kenney License.txt -------------------------------------------------------------------------------- /textures/vfx/RO2FX_SMOKE_SE_15.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/RO2FX_SMOKE_SE_15.dds -------------------------------------------------------------------------------- /textures/vfx/circle_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/circle_01.png -------------------------------------------------------------------------------- /textures/vfx/circle_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/circle_02.png -------------------------------------------------------------------------------- /textures/vfx/circle_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/circle_03.png -------------------------------------------------------------------------------- /textures/vfx/circle_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/circle_04.png -------------------------------------------------------------------------------- /textures/vfx/circle_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/circle_05.png -------------------------------------------------------------------------------- /textures/vfx/dirt_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/dirt_01.png -------------------------------------------------------------------------------- /textures/vfx/dirt_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/dirt_02.png -------------------------------------------------------------------------------- /textures/vfx/dirt_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/dirt_03.png -------------------------------------------------------------------------------- /textures/vfx/fire_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/fire_01.png -------------------------------------------------------------------------------- /textures/vfx/fire_01.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/fire_01.tga -------------------------------------------------------------------------------- /textures/vfx/fire_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/fire_02.png -------------------------------------------------------------------------------- /textures/vfx/flame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/flame_01.png -------------------------------------------------------------------------------- /textures/vfx/flame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/flame_02.png -------------------------------------------------------------------------------- /textures/vfx/flame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/flame_03.png -------------------------------------------------------------------------------- /textures/vfx/flame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/flame_04.png -------------------------------------------------------------------------------- /textures/vfx/flame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/flame_05.png -------------------------------------------------------------------------------- /textures/vfx/flame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/flame_06.png -------------------------------------------------------------------------------- /textures/vfx/flare_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/flare_01.png -------------------------------------------------------------------------------- /textures/vfx/light_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/light_01.png -------------------------------------------------------------------------------- /textures/vfx/light_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/light_02.png -------------------------------------------------------------------------------- /textures/vfx/light_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/light_03.png -------------------------------------------------------------------------------- /textures/vfx/magic_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/magic_01.png -------------------------------------------------------------------------------- /textures/vfx/magic_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/magic_02.png -------------------------------------------------------------------------------- /textures/vfx/magic_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/magic_03.png -------------------------------------------------------------------------------- /textures/vfx/magic_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/magic_04.png -------------------------------------------------------------------------------- /textures/vfx/magic_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/magic_05.png -------------------------------------------------------------------------------- /textures/vfx/magic_flare.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/magic_flare.dds -------------------------------------------------------------------------------- /textures/vfx/moisture_mist.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/moisture_mist.dds -------------------------------------------------------------------------------- /textures/vfx/moisture_splatter.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/moisture_splatter.tga -------------------------------------------------------------------------------- /textures/vfx/muzzle_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/muzzle_01.png -------------------------------------------------------------------------------- /textures/vfx/muzzle_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/muzzle_02.png -------------------------------------------------------------------------------- /textures/vfx/muzzle_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/muzzle_03.png -------------------------------------------------------------------------------- /textures/vfx/muzzle_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/muzzle_04.png -------------------------------------------------------------------------------- /textures/vfx/muzzle_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/muzzle_05.png -------------------------------------------------------------------------------- /textures/vfx/scorch_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/scorch_01.png -------------------------------------------------------------------------------- /textures/vfx/scorch_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/scorch_02.png -------------------------------------------------------------------------------- /textures/vfx/scorch_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/scorch_03.png -------------------------------------------------------------------------------- /textures/vfx/scratch_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/scratch_01.png -------------------------------------------------------------------------------- /textures/vfx/slash_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/slash_01.png -------------------------------------------------------------------------------- /textures/vfx/slash_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/slash_02.png -------------------------------------------------------------------------------- /textures/vfx/slash_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/slash_03.png -------------------------------------------------------------------------------- /textures/vfx/slash_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/slash_04.png -------------------------------------------------------------------------------- /textures/vfx/smoke_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_01.png -------------------------------------------------------------------------------- /textures/vfx/smoke_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_02.png -------------------------------------------------------------------------------- /textures/vfx/smoke_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_03.png -------------------------------------------------------------------------------- /textures/vfx/smoke_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_04.png -------------------------------------------------------------------------------- /textures/vfx/smoke_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_05.png -------------------------------------------------------------------------------- /textures/vfx/smoke_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_06.png -------------------------------------------------------------------------------- /textures/vfx/smoke_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_07.png -------------------------------------------------------------------------------- /textures/vfx/smoke_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_08.png -------------------------------------------------------------------------------- /textures/vfx/smoke_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_09.png -------------------------------------------------------------------------------- /textures/vfx/smoke_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/smoke_10.png -------------------------------------------------------------------------------- /textures/vfx/spark_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/spark_01.png -------------------------------------------------------------------------------- /textures/vfx/spark_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/spark_02.png -------------------------------------------------------------------------------- /textures/vfx/spark_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/spark_03.png -------------------------------------------------------------------------------- /textures/vfx/spark_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/spark_04.png -------------------------------------------------------------------------------- /textures/vfx/spark_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/spark_05.png -------------------------------------------------------------------------------- /textures/vfx/spark_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/spark_06.png -------------------------------------------------------------------------------- /textures/vfx/spark_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/spark_07.png -------------------------------------------------------------------------------- /textures/vfx/star_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/star_01.png -------------------------------------------------------------------------------- /textures/vfx/star_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/star_02.png -------------------------------------------------------------------------------- /textures/vfx/star_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/star_03.png -------------------------------------------------------------------------------- /textures/vfx/star_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/star_04.png -------------------------------------------------------------------------------- /textures/vfx/star_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/star_05.png -------------------------------------------------------------------------------- /textures/vfx/star_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/star_06.png -------------------------------------------------------------------------------- /textures/vfx/star_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/star_07.png -------------------------------------------------------------------------------- /textures/vfx/star_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/star_08.png -------------------------------------------------------------------------------- /textures/vfx/star_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/star_09.png -------------------------------------------------------------------------------- /textures/vfx/symbol_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/symbol_01.png -------------------------------------------------------------------------------- /textures/vfx/symbol_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/symbol_02.png -------------------------------------------------------------------------------- /textures/vfx/trace_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/trace_01.png -------------------------------------------------------------------------------- /textures/vfx/trace_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/trace_02.png -------------------------------------------------------------------------------- /textures/vfx/trace_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/trace_03.png -------------------------------------------------------------------------------- /textures/vfx/trace_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/trace_04.png -------------------------------------------------------------------------------- /textures/vfx/trace_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/trace_05.png -------------------------------------------------------------------------------- /textures/vfx/trace_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/trace_06.png -------------------------------------------------------------------------------- /textures/vfx/trace_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/trace_07.png -------------------------------------------------------------------------------- /textures/vfx/twirl_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/twirl_01.png -------------------------------------------------------------------------------- /textures/vfx/twirl_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/twirl_02.png -------------------------------------------------------------------------------- /textures/vfx/twirl_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/twirl_03.png -------------------------------------------------------------------------------- /textures/vfx/window_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/window_01.png -------------------------------------------------------------------------------- /textures/vfx/window_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/window_02.png -------------------------------------------------------------------------------- /textures/vfx/window_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/window_03.png -------------------------------------------------------------------------------- /textures/vfx/window_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxYari/OpenMWLuaPhysics/HEAD/textures/vfx/window_04.png --------------------------------------------------------------------------------