├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── feature.yaml │ └── question.yaml ├── pull_request_template.md └── workflows │ └── ZipOnTag.yml ├── .gitignore ├── .vsconfig ├── Config ├── DefaultEditor.ini ├── DefaultEngine.ini ├── DefaultGame.ini └── DefaultInput.ini ├── Content ├── Blueprints │ ├── BP_LEDBanner.uasset │ ├── BP_LightSystem2.uasset │ └── NewGameMode.uasset ├── Composure │ ├── ComposureAdditionalBps │ │ ├── BP_AnimationSelector.uasset │ │ ├── BP_EditorTicker.uasset │ │ ├── BP_LevelLoader.uasset │ │ ├── BP_MatteObjects.uasset │ │ ├── BP_Planeaimer.uasset │ │ ├── BP_PlaneaimerBlank.uasset │ │ ├── BP_ShowHideMeshes.uasset │ │ ├── Draft │ │ │ └── TalentPlaneAimer.uasset │ │ ├── EditorTick │ │ │ ├── BPI_EditorTick.uasset │ │ │ └── BP_EditorTicker.uasset │ │ ├── MediaOutputMod.uasset │ │ ├── PlaneAimer_Blueprint.uasset │ │ ├── TalentPlane.uasset │ │ └── TalentPlaneAimer.uasset │ ├── Effects │ │ ├── MF_Hash23.uasset │ │ ├── M_SinglePassDespill3.uasset │ │ ├── M_SinglePassDespill_2.uasset │ │ ├── M_cropping.uasset │ │ ├── PP_2DCameraShake.uasset │ │ ├── PP_Blur.uasset │ │ ├── PP_BlurSharpen.uasset │ │ ├── PP_Displace.uasset │ │ ├── PP_DistanceBlur.uasset │ │ ├── PP_DistanceBlur_2.uasset │ │ ├── PP_EdgeBlur2.uasset │ │ ├── PP_EdgeBlur2_2.uasset │ │ ├── PP_HueSaturation.uasset │ │ ├── PP_Rain.uasset │ │ ├── PP_VHS.uasset │ │ ├── PP_Vignette2.uasset │ │ ├── PP_VignetteCathode.uasset │ │ ├── PP_VignetteSubtle.uasset │ │ ├── TP_mcropping2.uasset │ │ └── WeatherScreenDrops.uasset │ ├── HUDRendering │ │ ├── M_HUDExport.uasset │ │ └── UI_HUDexport.uasset │ ├── Keying │ │ ├── M_CompKeyToPlane.uasset │ │ ├── M_CompKeyToPlane_Inst.uasset │ │ ├── M_CompKeyToPlane_Inst_2.uasset │ │ ├── M_KeyedLightingCapture.uasset │ │ └── M_KyedShadowCapture.uasset │ ├── MediaPlayers │ │ ├── MediaPlayer.uasset │ │ ├── Ms_Talent1.uasset │ │ ├── NewFileMediaSource.uasset │ │ ├── NewMediaBundle_InnerAssets │ │ │ ├── MI_NewMediaBundle.uasset │ │ │ ├── MediaP_NewMediaBundle.uasset │ │ │ ├── RT_NewMediaBundle_LensDisplacement.uasset │ │ │ └── T_NewMediaBundle_BC.uasset │ │ ├── NewMediaPlayer.uasset │ │ ├── NewMediaPlayer1.uasset │ │ ├── NewMediaPlayer1_Video.uasset │ │ └── NewMediaPlayer_Video.uasset │ ├── OCIO │ │ ├── HUDRenderer.uasset │ │ └── OCIOOutputConfig.uasset │ ├── OuptutPreview.uasset │ ├── RenderTargets │ │ ├── OuptutPreview.uasset │ │ ├── OuptutPreview2.uasset │ │ ├── OuptutPreview2_Mat.uasset │ │ ├── OutputProgram.uasset │ │ ├── RTScreen2.uasset │ │ ├── RT_Backscreen1.uasset │ │ ├── RT_Compkeyed.uasset │ │ ├── RT_GreenScreenTest.uasset │ │ ├── RT_Screen.uasset │ │ └── RT_Screen1.uasset │ ├── Screens │ │ ├── MM_ScreenSimple.uasset │ │ ├── M_OWL_VideoPlane.uasset │ │ ├── M_Screen1.uasset │ │ ├── M_Screen2.uasset │ │ ├── M_Screen3.uasset │ │ ├── M_VideoToPlaneTransform.uasset │ │ ├── OLWVideoPlaneScreen2.uasset │ │ ├── OLWVideoPlaneScreen3.uasset │ │ ├── RT_Screen_Mat.uasset │ │ └── T_OWL_VideoPlacementPlane.uasset │ └── TransformPasses │ │ ├── TP2ScreenLayout.uasset │ │ ├── TP3ScreenLayout.uasset │ │ ├── TP_1ScreenLayout.uasset │ │ ├── TP_2LayerComp.uasset │ │ ├── TP_2ScreenLayout.uasset │ │ ├── TP_3LayerComp.uasset │ │ ├── TP_3ScreenLayout.uasset │ │ ├── TP_3Tetcomp.uasset │ │ ├── TP_4LightingOnly.uasset │ │ ├── TP_4ShadowOnly.uasset │ │ ├── TP_5LayerComp.uasset │ │ ├── TP_5LayerComp2.uasset │ │ ├── TP_DualPlateComp.uasset │ │ ├── TP_DualPlateSimple.uasset │ │ └── TP_OWLCopyToRT.uasset ├── DeveloperContent │ ├── Blueprints │ │ ├── BP_Screen.uasset │ │ ├── Inputs │ │ │ ├── BPI_SpoutSources.uasset │ │ │ ├── BP_VPcontroller.uasset │ │ │ ├── E_inputType.uasset │ │ │ └── STR_SourceNameToTexture.uasset │ │ ├── Screen.uasset │ │ ├── TalentPlane.uasset │ │ ├── TalentPlane2.uasset │ │ └── TalentPlaneAlbedo.uasset │ ├── CompSwitcherTests │ │ ├── InProgress │ │ │ └── BP_ComposureComp.uasset │ │ └── SequencerSwitcher │ │ │ └── BP_SequencerSwitcher.uasset │ ├── EditorTick │ │ ├── BPI_EditorTick.uasset │ │ └── BP_EditorTicker.uasset │ ├── Fonts │ │ ├── Cera_Pro_Light.uasset │ │ └── Cera_Pro_Light_Font.uasset │ ├── GameModes │ │ ├── VPGameMode.uasset │ │ └── VP_Pawn.uasset │ ├── Materials │ │ ├── Animated │ │ │ ├── MM_ConcentricCircles.uasset │ │ │ ├── MM_NDispace.uasset │ │ │ ├── MM_SpinningLogo.uasset │ │ │ ├── MM_SpinningLogo_2.uasset │ │ │ ├── M_Fire.uasset │ │ │ └── complex-soap.uasset │ │ ├── Emissive │ │ │ ├── Emissive1.uasset │ │ │ ├── MM_2ColourFlash.uasset │ │ │ ├── M_Glow_Inst6_2.uasset │ │ │ ├── M_Glow_Inst6_3.uasset │ │ │ └── M_Glow_Master_Inst_2.uasset │ │ ├── FlatColours │ │ │ └── MM_RegularColour.uasset │ │ ├── MM_TextMat1.uasset │ │ ├── MirrorPlaneMaterial.uasset │ │ ├── MirrorPlaneMaterial_Inst_2.uasset │ │ └── RealWorld │ │ │ ├── MM_Chrome.uasset │ │ │ ├── MM_Triplanar.uasset │ │ │ ├── MM_WorldAlignedBlend.uasset │ │ │ ├── M_Blend1.uasset │ │ │ ├── M_Blend1_Inst_6.uasset │ │ │ └── T_Cast_In_Situ_Concrete_vcfice0_2K_D_Mat.uasset │ ├── Textures │ │ ├── Splash │ │ │ ├── EdSplash.png │ │ │ ├── EdSplash.uasset │ │ │ ├── Splash.png │ │ │ └── Splash.uasset │ │ ├── T_BowtiOffWorld_Albedo.uasset │ │ ├── T_OffWorldBowtiGridNM.uasset │ │ └── T_WipeMarks_uh4scioc_2K_MR.uasset │ └── structs │ │ └── Struct_Program1.uasset ├── EditorTimecodeClock │ ├── BP_TimecodeClock.uasset │ ├── M_DefaultTextMaterialEmissive.uasset │ └── M_TimerBody.uasset ├── Environment │ ├── LightRigs │ │ ├── BP_LightBox1.uasset │ │ ├── BP_LightRig1.uasset │ │ ├── BP_LightSwitcher.uasset │ │ └── M_LampEmissive.uasset │ ├── Materials │ │ ├── Animated │ │ │ ├── MI_ConcentricCircles.uasset │ │ │ ├── MI_ConcentricCircles2.uasset │ │ │ ├── MI_Displace23.uasset │ │ │ ├── MI_NDisplaceSlow.uasset │ │ │ ├── MI_NDisplaceSlow_Inst1.uasset │ │ │ ├── MI_NoiseDisplaceFast.uasset │ │ │ ├── MI_NoiseDisplaceFast2.uasset │ │ │ ├── MI_NoiseDisplaceMultiple.uasset │ │ │ ├── MI_NoiseDisplacemeFast3.uasset │ │ │ ├── MI_NoiseDisplacement_Inst1_Inst.uasset │ │ │ ├── MI_NoiseDisplacement_Inst1_Inst1.uasset │ │ │ ├── MI_RainbowShader.uasset │ │ │ ├── MI_RainbowShader_Inst.uasset │ │ │ ├── MI_SpinningLogo_Grid.uasset │ │ │ ├── MI_SpinningLogo_Inst.uasset │ │ │ ├── MI_SpinningLogo_Inst2.uasset │ │ │ ├── M_EmissiveLEDWall_Inst2.uasset │ │ │ └── M_Fire_Inst.uasset │ │ ├── Cast_In_Situ_Concrete_vcfice0 │ │ │ ├── T_Cast_In_Situ_Concrete_vcfice0_2K_D.uasset │ │ │ ├── T_Cast_In_Situ_Concrete_vcfice0_2K_D_Mat_Inst_2.uasset │ │ │ └── T_Cast_In_Situ_Concrete_vcfice0_2K_N.uasset │ │ ├── Emissives │ │ │ ├── Emissive1_Inst_2.uasset │ │ │ ├── MI_LEDBanner.uasset │ │ │ ├── MI_MainLight.uasset │ │ │ ├── MI_MainLight_2.uasset │ │ │ ├── MI_MainLight_3.uasset │ │ │ ├── MI_MainLight_4.uasset │ │ │ ├── MI_MainLight_Inst_2.uasset │ │ │ ├── MI_MainLight_Inst_Inst_2.uasset │ │ │ ├── MI_NDisplaceSlow_Inst1.uasset │ │ │ ├── MM_2ColourFlash_Inst.uasset │ │ │ ├── M_WallGlow3.uasset │ │ │ ├── M_WallGlow3_Inst.uasset │ │ │ └── M_WallLightEm.uasset │ │ ├── FlatColours │ │ │ └── MI_Colour_Purple.uasset │ │ ├── MI_Glass_Windows.uasset │ │ ├── M_Glass_Master1.uasset │ │ ├── MaterialFunctions │ │ │ └── MF_Rotate2D.uasset │ │ ├── RealWorld │ │ │ ├── MI_Floor5.uasset │ │ │ ├── MI_StudioFloor1.uasset │ │ │ ├── MI_Triplanar.uasset │ │ │ ├── MI_Triplanar_3.uasset │ │ │ ├── MI_Triplanar_Floor1.uasset │ │ │ ├── MI_Triplanar_Floor2.uasset │ │ │ ├── MI_Triplanar_Floor3.uasset │ │ │ ├── MI_Triplanar_Inst-Floor1.uasset │ │ │ ├── MI_Triplanar_Inst-Floor2.uasset │ │ │ ├── MI_Wood_Planks.uasset │ │ │ ├── MI_Wood_Planks_2.uasset │ │ │ ├── MM_WorldAlignedBlend_Inst.uasset │ │ │ └── M_floor1.uasset │ │ └── Textured_Concrete_Pavement_wjwibjx │ │ │ ├── T_Textured_Concrete_Pavement_wjwibjx_2K_D.uasset │ │ │ └── T_Textured_Concrete_Pavement_wjwibjx_2K_N.uasset │ ├── Meshes │ │ ├── Bespoke_Pack1 │ │ │ ├── Cables1.uasset │ │ │ ├── Cables2.uasset │ │ │ ├── Emissive1.uasset │ │ │ ├── LEDScroll1.uasset │ │ │ ├── MI_LEDBanner.uasset │ │ │ ├── M_BlackReg.uasset │ │ │ ├── Material_001.uasset │ │ │ ├── Material_002.uasset │ │ │ ├── Material_040.uasset │ │ │ ├── Material_042.uasset │ │ │ ├── SM_Blob1.uasset │ │ │ ├── SM_Cage1.uasset │ │ │ ├── SM_CeilingScreen1.uasset │ │ │ ├── SM_Chair2.uasset │ │ │ ├── SM_CircleDetail1.uasset │ │ │ ├── SM_CurvedLEDWall1920x1080_Cylinder.uasset │ │ │ ├── SM_CurvedScreen1.uasset │ │ │ ├── SM_CurvedScreen2.uasset │ │ │ ├── SM_Dome.uasset │ │ │ ├── SM_FloorRug.uasset │ │ │ ├── SM_NatureFloor.uasset │ │ │ ├── SM_Platform.uasset │ │ │ ├── SM_PlatformCorner.uasset │ │ │ ├── SM_PlatformStairs.uasset │ │ │ ├── SM_Ramp1.uasset │ │ │ ├── SM_Scaffold.uasset │ │ │ ├── SM_ScaffoldBase.uasset │ │ │ ├── SM_Screen1.uasset │ │ │ ├── SM_SpeakerS.uasset │ │ │ ├── SM_StageFloorHexagon.uasset │ │ │ ├── SM_StageFloorLong.uasset │ │ │ ├── SM_StageFloorSingle.uasset │ │ │ ├── SM_StageFloorTriple.uasset │ │ │ ├── SM_StudioScaffold.uasset │ │ │ ├── SM_TV.uasset │ │ │ ├── SM_TV2.uasset │ │ │ ├── SM_TVScreen.uasset │ │ │ ├── SM_Table.uasset │ │ │ ├── SM_TechWall_MRGD.uasset │ │ │ ├── SM_TechnicalSides.uasset │ │ │ ├── SM_TechnicalSidesPipes.uasset │ │ │ ├── SM_TechnicalSidesWall.uasset │ │ │ ├── SM_Truss1.uasset │ │ │ ├── SM_Truss2.uasset │ │ │ ├── SM_WallLight.uasset │ │ │ ├── SpeakerInner.uasset │ │ │ ├── SpeakerOuter.uasset │ │ │ ├── TVBack.uasset │ │ │ ├── TVChrome.uasset │ │ │ └── TVScreen.uasset │ │ ├── BlobbyPack1 │ │ │ ├── Blobby--Plant3.uasset │ │ │ ├── Blobby--Reeds1.uasset │ │ │ ├── Blobby--Reeds2.uasset │ │ │ ├── Blobby-1.uasset │ │ │ ├── Blobby-Arch1.uasset │ │ │ ├── Blobby-Plant1.uasset │ │ │ ├── Blobby-Plant2.uasset │ │ │ ├── Blobby-Plant3.uasset │ │ │ ├── Blobby-Sphere.uasset │ │ │ ├── Blobby-Torus1.uasset │ │ │ ├── Material.uasset │ │ │ └── Material_001.uasset │ │ ├── Lanterns │ │ │ ├── Lantern.uasset │ │ │ ├── LanternHandle.uasset │ │ │ ├── LanternRibs.uasset │ │ │ ├── LanternTassels.uasset │ │ │ ├── LanternTop.uasset │ │ │ ├── OWLBunny_ncl1_1.uasset │ │ │ ├── OWLbunny.uasset │ │ │ ├── lantern_low.uasset │ │ │ ├── lantern_low_Handle_BaseColor.uasset │ │ │ ├── lantern_low_Handle_Normal.uasset │ │ │ ├── lantern_low_Handle_OcclusionRoughnessMetallic.uasset │ │ │ ├── lantern_low_Lantern_BaseColor.uasset │ │ │ ├── lantern_low_Lantern_Normal.uasset │ │ │ ├── lantern_low_Lantern_OcclusionRoughnessMetallic.uasset │ │ │ ├── lantern_low_Ribs_BaseColor.uasset │ │ │ ├── lantern_low_Ribs_Normal.uasset │ │ │ ├── lantern_low_Ribs_OcclusionRoughnessMetallic.uasset │ │ │ ├── lantern_low_Tassels_BaseColor.uasset │ │ │ ├── lantern_low_Tassels_Normal.uasset │ │ │ ├── lantern_low_Tassels_OcclusionRoughnessMetallic.uasset │ │ │ ├── lantern_low_Top_BaseColor.uasset │ │ │ ├── lantern_low_Top_Normal.uasset │ │ │ └── lantern_low_Top_OcclusionRoughnessMetallic.uasset │ │ ├── Merged │ │ │ ├── SM_MERGED_LargeWall.uasset │ │ │ ├── SM_MERGED_RampWay.uasset │ │ │ ├── SM_MERGED_Scaffold.uasset │ │ │ ├── SM_MERGED_StartingRoom.uasset │ │ │ ├── SM_MERGED_Sudio1.uasset │ │ │ ├── SM_MergedWarehouseHalf.uasset │ │ │ ├── SM_MergedWarehouseHalfLong.uasset │ │ │ └── SM_Towers.uasset │ │ ├── ModularPack1 │ │ │ ├── SM_BackWall.uasset │ │ │ ├── SM_BackWall_Light.uasset │ │ │ ├── SM_Backwall2.uasset │ │ │ ├── SM_CornerCurved1.uasset │ │ │ ├── SM_CornerCurved2.uasset │ │ │ ├── SM_Desk1.uasset │ │ │ ├── SM_Desk2.uasset │ │ │ ├── SM_Facade1.uasset │ │ │ ├── SM_FloorBlock.uasset │ │ │ ├── SM_FloorDetail1.uasset │ │ │ ├── SM_FloorGridded.uasset │ │ │ ├── SM_FloorTile.uasset │ │ │ ├── SM_FloorTileLight.uasset │ │ │ ├── SM_Floor_400x400.uasset │ │ │ ├── SM_Frame1.uasset │ │ │ ├── SM_Frame3.uasset │ │ │ ├── SM_Pedastol1.uasset │ │ │ ├── SM_Pedastol2.uasset │ │ │ ├── SM_SoundProofing_SM_SoundProofing1.uasset │ │ │ ├── SM_SoundProofing_SM_SoundProofing2.uasset │ │ │ ├── SM_SoundProofing_SM_SoundProofing3.uasset │ │ │ ├── SM_StageTowerSingle.uasset │ │ │ ├── SM_StairsCorner2.uasset │ │ │ ├── SM_Stairs_Corner.uasset │ │ │ ├── SM_Stairs_Short.uasset │ │ │ ├── SM_Stairs_Tall.uasset │ │ │ ├── SM_WallBlock.uasset │ │ │ ├── SM_WallDetail1.uasset │ │ │ ├── SM_WallMountLarge.uasset │ │ │ ├── SM_WallMountSml.uasset │ │ │ └── SM_Wall_300x300.uasset │ │ ├── NPMeshes │ │ │ ├── Lamp │ │ │ │ └── Textures │ │ │ │ │ ├── Rings_emission.uasset │ │ │ │ │ ├── light_Rings_BaseColor.uasset │ │ │ │ │ ├── light_Rings_Normal.uasset │ │ │ │ │ └── light_Rings_OcclusionRoughnessMetallic.uasset │ │ │ ├── NMeshesMaster.uasset │ │ │ ├── Speakers │ │ │ │ ├── SM_speaker_Merged.uasset │ │ │ │ ├── speaker_Speaker-Suckers_BaseColor.uasset │ │ │ │ ├── speaker_Speaker-Suckers_BaseColor_Mat.uasset │ │ │ │ ├── speaker_Speaker-Suckers_Emissive.uasset │ │ │ │ ├── speaker_Speaker-Suckers_Normal.uasset │ │ │ │ ├── speaker_Speaker-Suckers_OcclusionRoughnessMetallic.uasset │ │ │ │ ├── speaker_Speaker_Body_BaseColor.uasset │ │ │ │ ├── speaker_Speaker_Body_BaseColor_Mat.uasset │ │ │ │ ├── speaker_Speaker_Body_Normal.uasset │ │ │ │ └── speaker_Speaker_Body_OcclusionRoughnessMetallic.uasset │ │ │ └── StudioLight │ │ │ │ ├── M_LightBarnDoor.uasset │ │ │ │ ├── M_LightRings.uasset │ │ │ │ ├── M_Light_Disc.uasset │ │ │ │ └── light-tex │ │ │ │ ├── light_Light-Barn-Doors_BaseColor.uasset │ │ │ │ ├── light_Light-Barn-Doors_Normal.uasset │ │ │ │ ├── light_Light-Barn-Doors_OcclusionRoughnessMetallic.uasset │ │ │ │ ├── light_Light-Body_BaseColor.uasset │ │ │ │ ├── light_Light-Body_Normal.uasset │ │ │ │ └── light_Light-Body_OcclusionRoughnessMetallic.uasset │ │ ├── OWLTools_Meshes │ │ │ ├── 360OffWorldCaptureCamera.uasset │ │ │ ├── M_360OffWorldCaptureCamera.uasset │ │ │ ├── OWLCAptureCamera_Roughness.uasset │ │ │ ├── OWLCaptureCamera_BaseColor.uasset │ │ │ ├── OWLCaptureCamera_Metallic.uasset │ │ │ ├── OWLCaptureCamera_Normal.uasset │ │ │ ├── OffWorldCaptureCameraMaterial.uasset │ │ │ ├── OffWorldCineCamCapture.uasset │ │ │ ├── SM_LightFixture1.uasset │ │ │ ├── SM_NPLight.uasset │ │ │ ├── smooth_DefaultMaterial_BaseColor.uasset │ │ │ ├── smooth_DefaultMaterial_Normal.uasset │ │ │ └── smooth_DefaultMaterial_OcclusionRoughnessMetallic.uasset │ │ ├── Screens │ │ │ ├── Material.uasset │ │ │ ├── Material_001.uasset │ │ │ ├── Material_2.uasset │ │ │ ├── Material_3.uasset │ │ │ ├── Material_4.uasset │ │ │ ├── SM_Screen1.uasset │ │ │ ├── SM_Screen2.uasset │ │ │ ├── SM_Screen3.uasset │ │ │ ├── SM_Screen4.uasset │ │ │ └── SM_ScreenCombo.uasset │ │ └── VirtualStudioPack2 │ │ │ ├── Desk1.uasset │ │ │ ├── Desk2.uasset │ │ │ ├── Desk3.uasset │ │ │ ├── Floor3.uasset │ │ │ ├── FloorPiece3.uasset │ │ │ ├── Material_003.uasset │ │ │ ├── Pillar1.uasset │ │ │ ├── Pillar2.uasset │ │ │ ├── Pillar2Base.uasset │ │ │ ├── Pillar2Top.uasset │ │ │ ├── PillarSlanted.uasset │ │ │ ├── Screen1.uasset │ │ │ ├── Screen2.uasset │ │ │ ├── Screen2Sml.uasset │ │ │ ├── Slope1.uasset │ │ │ ├── Stand1.uasset │ │ │ ├── Stand2.uasset │ │ │ └── StandRound.uasset │ ├── SkeletalMeshes │ │ ├── Breakdance_Uprock_Var_2.uasset │ │ ├── Breakdance_Uprock_Var_2_Anim_CINEMA_4D_Main.uasset │ │ ├── Breakdance_Uprock_Var_2_Anim_mixamo_com.uasset │ │ ├── Breakdance_Uprock_Var_2_PhysicsAsset.uasset │ │ ├── Breakdance_Uprock_Var_2_Skeleton.uasset │ │ ├── EffyJustClothes1.uasset │ │ ├── EffyJustClothes1_PhysicsAsset.uasset │ │ ├── EffyJustClothes1_Skeleton.uasset │ │ ├── FR-1.uasset │ │ ├── FR-1_PhysicsAsset.uasset │ │ ├── FR-1_Skeleton.uasset │ │ ├── FR.uasset │ │ ├── Materials │ │ │ ├── Mat.uasset │ │ │ ├── Mat_1.uasset │ │ │ ├── Material_001.uasset │ │ │ ├── Material_003.uasset │ │ │ ├── Material_007.uasset │ │ │ ├── Material_009.uasset │ │ │ ├── Material_010.uasset │ │ │ ├── Material_012.uasset │ │ │ ├── Material_013.uasset │ │ │ ├── Material_016.uasset │ │ │ ├── Material_026.uasset │ │ │ ├── Skin_001.uasset │ │ │ ├── Top_001.uasset │ │ │ └── Trousers_001.uasset │ │ ├── Unarmed_Walk_Forward.uasset │ │ ├── Unarmed_Walk_Forward_PhysicsAsset.uasset │ │ └── Unarmed_Walk_Forward_Skeleton.uasset │ ├── Textures │ │ ├── CRT.uasset │ │ ├── FizzyBlue.uasset │ │ ├── OWLLiveScrollingText1.uasset │ │ ├── ShinyPuddles.uasset │ │ ├── T_BowtiOffWorld_Albedo.uasset │ │ ├── T_Damaged_Asphalt_vizhdcz_2K_D_copy.uasset │ │ ├── T_Damaged_Asphalt_vizhdcz_2K_N_copy.uasset │ │ ├── T_OffWorldBowtiGridNM.uasset │ │ ├── T_WipeMarks.uasset │ │ ├── T_WipeMarks_uh4scioc_2K_MR.uasset │ │ ├── UE_OWLLogo1.uasset │ │ ├── download.uasset │ │ ├── rain_drops.uasset │ │ └── twirl.uasset │ └── Virtual_Studio_Kit │ │ ├── Maps │ │ └── TrackerlessStudio.umap │ │ ├── Materials │ │ ├── Decals │ │ │ └── M_Decal_Logo_Inst.uasset │ │ ├── Glossy │ │ │ └── M_Floor_Inst8.uasset │ │ ├── Glow │ │ │ ├── MI_Circle_Light_Inst.uasset │ │ │ └── M_Glow_Inst6.uasset │ │ ├── LEDWalls │ │ │ └── MI_Mon_Horz.uasset │ │ ├── Metals │ │ │ ├── MI_Alum_Brushed.uasset │ │ │ ├── MI_Alum_Brushed_Random.uasset │ │ │ ├── M_Metal_Int_01.uasset │ │ │ ├── M_Metal_Int_01_Inst.uasset │ │ │ └── M_Metal_Int_01_Inst1.uasset │ │ └── Wood │ │ │ ├── MI_Wood_Dark.uasset │ │ │ └── MI_Wood_Planks.uasset │ │ └── Meshes │ │ ├── Floors │ │ └── SM_ModularKit_01_Floor_20x20_Inner.uasset │ │ ├── Frames │ │ └── SM_Wall_10x10_Bookcase.uasset │ │ ├── Paragon │ │ └── Mod_Ceiling_Tile.uasset │ │ ├── Props │ │ ├── BP_CircleLight.uasset │ │ ├── SM_Light_Stand.uasset │ │ ├── SM_Light_Stand_Base.uasset │ │ └── SM_Trusses_Arc_Tube.uasset │ │ └── Railings │ │ └── SM_Railing.uasset ├── ExternalPacks │ └── Virtual_Studio_Kit │ │ ├── IES │ │ └── XArrowSoft.uasset │ │ ├── Maps │ │ ├── Studio_D.umap │ │ └── TrackerlessStudio.umap │ │ ├── Materials │ │ ├── Brick │ │ │ └── MI_Brick_Wihte.uasset │ │ ├── Concrete │ │ │ ├── MI_Concrete.uasset │ │ │ ├── M_Concrete.uasset │ │ │ └── M_Floor_Inst3.uasset │ │ ├── Decals │ │ │ ├── MI_Decal_Tape.uasset │ │ │ ├── MI_Decal_Tape_Inst.uasset │ │ │ ├── M_Decal_Logo.uasset │ │ │ ├── M_Decal_Logo_Inst.uasset │ │ │ ├── M_Decal_Logo_Inst5.uasset │ │ │ └── M_Decal_Logo_Inst7.uasset │ │ ├── Glass │ │ │ ├── MI_Glass_Inst.uasset │ │ │ ├── M_Glass.uasset │ │ │ ├── M_Glass_Int_01_Inst.uasset │ │ │ └── M_Glass_Master.uasset │ │ ├── Glossy │ │ │ ├── MI_Black_Glossy_Pattern.uasset │ │ │ ├── MI_Black_Glossy_Pattern1.uasset │ │ │ ├── MI_Glossy_Inst_Inst.uasset │ │ │ ├── MI_Glossy_Inst_Inst1.uasset │ │ │ ├── MI_Red_Glossy_Pattern.uasset │ │ │ ├── MI_White_Glossy_Pattern.uasset │ │ │ ├── M_Floor_Inst10.uasset │ │ │ ├── M_Floor_Inst4.uasset │ │ │ ├── M_Floor_Inst7.uasset │ │ │ ├── M_Floor_Inst8.uasset │ │ │ ├── M_Floor_Inst9.uasset │ │ │ ├── M_Glossy.uasset │ │ │ ├── M_Glossy_Floor.uasset │ │ │ ├── M_Glossy_Floor_Inst3.uasset │ │ │ └── M_Glossy_Floor_Inst6.uasset │ │ ├── Glow │ │ │ ├── MI_Circle_Light_Inst.uasset │ │ │ ├── MI_Glow_02.uasset │ │ │ ├── MI_Glow_03.uasset │ │ │ ├── MI_Glow_05.uasset │ │ │ ├── MI_Glow_07.uasset │ │ │ ├── MI_Glow_Full.uasset │ │ │ ├── M_Circle_Light.uasset │ │ │ ├── M_Decal_Light.uasset │ │ │ ├── M_Glow.uasset │ │ │ ├── M_Glow_Inst.uasset │ │ │ ├── M_Glow_Inst2.uasset │ │ │ ├── M_Glow_Inst3.uasset │ │ │ ├── M_Glow_Inst4.uasset │ │ │ ├── M_Glow_Inst6.uasset │ │ │ ├── M_Glow_Master.uasset │ │ │ ├── M_Glow_Master_Inst.uasset │ │ │ └── M_Light_Ring.uasset │ │ ├── LEDWalls │ │ │ ├── DesignA │ │ │ │ ├── MI_Mon_DesignA.uasset │ │ │ │ ├── MI_Mon_DesignA1.uasset │ │ │ │ ├── MI_Mon_DesignA2.uasset │ │ │ │ ├── MI_Mon_DesignA3.uasset │ │ │ │ ├── M_Mon_A.uasset │ │ │ │ └── Tex │ │ │ │ │ ├── T_Monintor_A_Design_01.uasset │ │ │ │ │ ├── T_Monintor_A_Design_02_Full.uasset │ │ │ │ │ ├── T_Monintor_A_Design_04_Full.uasset │ │ │ │ │ ├── T_Monintor_A_Design_05_Full.uasset │ │ │ │ │ └── T_Monitor_A_01.uasset │ │ │ ├── Generic │ │ │ │ ├── T_Monitor_Template.uasset │ │ │ │ ├── T_Monitor_Template_Vertical.uasset │ │ │ │ └── T_SkyLine_02.uasset │ │ │ ├── MI_Mon_Horz.uasset │ │ │ ├── MI_Mon_Vert.uasset │ │ │ ├── MI_Monitor_Inst11.uasset │ │ │ ├── M_Monitor.uasset │ │ │ └── Paragon │ │ │ │ ├── M_16x9_Monitor10.uasset │ │ │ │ ├── M_Auraura.uasset │ │ │ │ ├── M_Duratran.uasset │ │ │ │ ├── M_Enviro1.uasset │ │ │ │ ├── M_Glossy_Floor_Red.uasset │ │ │ │ ├── M_Glow_Blue.uasset │ │ │ │ ├── M_Glow_Yellow.uasset │ │ │ │ ├── M_Glow_Yellow3.uasset │ │ │ │ ├── M_Lin.uasset │ │ │ │ └── M_Phase.uasset │ │ ├── M_Basic_Wall.uasset │ │ ├── M_Metal_Chrome.uasset │ │ ├── M_Substance_Master.uasset │ │ ├── Metals │ │ │ ├── MI_Alum_Brushed.uasset │ │ │ ├── MI_Alum_Brushed_Random.uasset │ │ │ ├── M_Metal_Int_01.uasset │ │ │ ├── M_Metal_Int_01_Inst.uasset │ │ │ ├── M_Metal_Int_01_Inst1.uasset │ │ │ ├── M_Metal_Int_01_Inst2.uasset │ │ │ └── M_Mirror_Ball.uasset │ │ └── Wood │ │ │ ├── MI_Wood_Dark.uasset │ │ │ └── MI_Wood_Planks.uasset │ │ ├── Meshes │ │ ├── Facades │ │ │ └── SM_Facade_Grids.uasset │ │ ├── Floors │ │ │ ├── SM_Floor_Patterns_Circle_01.uasset │ │ │ ├── SM_Floor_Patterns_Circle_02.uasset │ │ │ ├── SM_ModularKit_01_Floor_20x20.uasset │ │ │ ├── SM_ModularKit_01_Floor_20x20_Inner.uasset │ │ │ └── SM_ModularKit_01_Floor_Triangle.uasset │ │ ├── Frames │ │ │ ├── SM_ModularKit_01_Frame_10x10_Windows_2.uasset │ │ │ ├── SM_ModularKit_01_Wall_10x10_Angles_2.uasset │ │ │ └── SM_Wall_10x10_Bookcase.uasset │ │ ├── Monitors │ │ │ ├── SM_Monitors_Horizontal_Bezels16x9.uasset │ │ │ └── SM_Monitors_Vertical_Bezels16x9.uasset │ │ ├── Paragon │ │ │ ├── M_Ring_Light.uasset │ │ │ ├── Mod_16x9_moniotr.uasset │ │ │ ├── Mod_Angle_Wall.uasset │ │ │ ├── Mod_Beam_Feet.uasset │ │ │ ├── Mod_Cable.uasset │ │ │ ├── Mod_Ceiling_Tile.uasset │ │ │ ├── Mod_Circle_light.uasset │ │ │ ├── Mod_Desk.uasset │ │ │ ├── Mod_Duratran.uasset │ │ │ ├── Mod_Eithernet_Cables.uasset │ │ │ ├── Mod_Eithernet_Cables_001.uasset │ │ │ ├── Mod_Floor_20x20.uasset │ │ │ ├── Mod_Floor_30x6.uasset │ │ │ ├── Mod_Floor_400x400.uasset │ │ │ ├── Mod_HAV_Straight_20ft.uasset │ │ │ ├── Mod_Ibeam_20ft.uasset │ │ │ ├── Mod_Ibeam_20ft_High.uasset │ │ │ ├── Mod_Ibeam_Base.uasset │ │ │ ├── Mod_Light_Fixture_10ft.uasset │ │ │ ├── Mod_Platform.uasset │ │ │ ├── Mod_Railing_200cm.uasset │ │ │ ├── Mod_Square_Light.uasset │ │ │ ├── Mod_Square_Light_SM.uasset │ │ │ ├── Mod_Stage_Light_01.uasset │ │ │ ├── Mod_Stair_Railing.uasset │ │ │ ├── Mod_Stairs.uasset │ │ │ ├── Mod_Stairway_Blocker.uasset │ │ │ ├── Mod_Truss_6ft.uasset │ │ │ ├── Mod_Wall_10ft.uasset │ │ │ ├── Mod_Wall_Stripes.uasset │ │ │ ├── Mod_Window_Treatment.uasset │ │ │ ├── Mod_light_001.uasset │ │ │ └── Plastic.uasset │ │ ├── Props │ │ │ ├── 6_meshes_Merge.uasset │ │ │ ├── 6_meshes_Merge_Diffuse.uasset │ │ │ ├── 6_meshes_Merge_Normal.uasset │ │ │ ├── BP_CircleLight.uasset │ │ │ ├── BP_Nando_Light.uasset │ │ │ ├── BP_SpotLight.uasset │ │ │ ├── BP_Tape_Decales.uasset │ │ │ ├── BaloonPlatform_polysurface7.uasset │ │ │ ├── EZLogoEmmisive.uasset │ │ │ ├── EZLogoOpacity.uasset │ │ │ ├── Fresnel │ │ │ │ └── M_Prop.uasset │ │ │ ├── NandoBeam │ │ │ │ ├── MI_Nando_Base.uasset │ │ │ │ ├── MI_Nando_Handle.uasset │ │ │ │ ├── SM_Nandobeam-S9_Light_Seprate_Base.uasset │ │ │ │ ├── SM_Nandobeam-S9_Light_Seprate_Bulb.uasset │ │ │ │ ├── SM_Nandobeam-S9_Light_Seprate_Handle.uasset │ │ │ │ ├── T_Nandobeam-S9_Light_Low_Base_BaseColor.uasset │ │ │ │ ├── T_Nandobeam-S9_Light_Low_Base_Normal.uasset │ │ │ │ ├── T_Nandobeam-S9_Light_Low_Base_OcclusionRoughnessMetallic.uasset │ │ │ │ ├── T_Nandobeam-S9_Light_Low_Handles_BaseColor.uasset │ │ │ │ ├── T_Nandobeam-S9_Light_Low_Handles_Normal.uasset │ │ │ │ ├── T_Nandobeam-S9_Light_Low_Handles_OcclusionRoughnessMetallic.uasset │ │ │ │ └── T_Nandobeam-S9_Light_Low_Mat_Emissive.uasset │ │ │ ├── SM_Arri_Sky_Panel_Low.uasset │ │ │ ├── SM_Ceiling_Grid_Trusses.uasset │ │ │ ├── SM_CircleLight.uasset │ │ │ ├── SM_Light_Stand.uasset │ │ │ ├── SM_Light_Stand_Base.uasset │ │ │ ├── SM_Trusses.uasset │ │ │ ├── SM_Trusses_Arc_Tube.uasset │ │ │ ├── SkyPanel │ │ │ │ ├── MI_Arri_Skypanel.uasset │ │ │ │ ├── T_Arri_Sky_Panel_Low_Arri_Light_BaseColor.uasset │ │ │ │ ├── T_Arri_Sky_Panel_Low_Arri_Light_Emissive.uasset │ │ │ │ ├── T_Arri_Sky_Panel_Low_Arri_Light_Normal.uasset │ │ │ │ └── T_Arri_Sky_Panel_Low_Arri_Light_OcclusionRoughnessMetallic.uasset │ │ │ └── Spotlight │ │ │ │ ├── MI_Spotlight_Base.uasset │ │ │ │ ├── MI_Spotlight_Blue.uasset │ │ │ │ ├── MI_Spotlight_Metal.uasset │ │ │ │ ├── MI_Spotlight_Metal1.uasset │ │ │ │ ├── MI_Spotlight_Plastic.uasset │ │ │ │ ├── MI_Spotlight_Yellow.uasset │ │ │ │ ├── SM_Spotlight_Seprate_Spotlight_Base.uasset │ │ │ │ ├── SM_Spotlight_Seprate_Spotlight_Handle.uasset │ │ │ │ ├── Spotlight_Low_Plastic_Base_BaseColor.uasset │ │ │ │ ├── T_Spotlight_Low_Metal_BaseColor.uasset │ │ │ │ ├── T_Spotlight_Low_Metal_Emissive.uasset │ │ │ │ ├── T_Spotlight_Low_Metal_Normal.uasset │ │ │ │ ├── T_Spotlight_Low_Metal_OcclusionRoughnessMetallic.uasset │ │ │ │ ├── T_Spotlight_Low_Plastic_BaseColor.uasset │ │ │ │ ├── T_Spotlight_Low_Plastic_Base_BaseColor.uasset │ │ │ │ ├── T_Spotlight_Low_Plastic_Base_Normal.uasset │ │ │ │ ├── T_Spotlight_Low_Plastic_Base_OcclusionRoughnessMetallic.uasset │ │ │ │ ├── T_Spotlight_Low_Plastic_Normal.uasset │ │ │ │ └── T_Spotlight_Low_Plastic_OcclusionRoughnessMetallic.uasset │ │ ├── Railings │ │ │ ├── SM_Railing.uasset │ │ │ └── SM_Railing_Glass_01.uasset │ │ ├── Risers │ │ │ ├── SM_ModularKit_Risers_Riser_A.uasset │ │ │ └── SM_Risers_Circular_02.uasset │ │ ├── Stairs │ │ │ ├── SM_Stairs_Mod_01.uasset │ │ │ ├── SM_Stairs_Mod_01_Platform.uasset │ │ │ └── SM_Stairs_Mod_01_Railing.uasset │ │ ├── Trims │ │ │ ├── SM_ModularKit_01_Floor_Trim.uasset │ │ │ ├── SM_ModularKit_01_Floor_Trim_20x2ft.uasset │ │ │ ├── SM_ModularKit_01_Floor_Trim_20x4in.uasset │ │ │ ├── SM_ModularKit_01_Floor_Trim_2_2.uasset │ │ │ └── SM_ModularKit_01_Frame_10x10_Trim_2.uasset │ │ └── Walls │ │ │ ├── SM_ModularKit_01_Door_1.uasset │ │ │ ├── SM_ModularKit_01_Wall_10x10.uasset │ │ │ ├── SM_ModularKit_01_Wall_10x10_Hole2.uasset │ │ │ ├── SM_ModularKit_01_Wall_20x10.uasset │ │ │ ├── SM_ModularKit_01_Wall_20x10_1.uasset │ │ │ ├── SM_ModularKit_01_Wall_20x10_2.uasset │ │ │ ├── SM_ModularKit_01_Wall_2_5x10ft.uasset │ │ │ └── SM_ModularKit_01_Wall_5x10_inner.uasset │ │ └── Textures │ │ ├── Brick_Wall_ao.uasset │ │ ├── Brick_Wall_basecolor.uasset │ │ ├── Brick_Wall_height.uasset │ │ ├── Brick_Wall_normal.uasset │ │ ├── Brick_Wall_roughness.uasset │ │ ├── Brushed_Metal_ambientocclusion.uasset │ │ ├── Brushed_Metal_basecolor.uasset │ │ ├── Brushed_Metal_normal.uasset │ │ ├── Brushed_Metal_roughness.uasset │ │ ├── Concrete_Floor_basecolor.uasset │ │ ├── Concrete_Floor_normal.uasset │ │ ├── Concrete_Floor_roughness.uasset │ │ ├── Concrete_basecolor.uasset │ │ ├── Concrete_normal.uasset │ │ ├── Concrete_roughness.uasset │ │ ├── Corrugated_HAV_basecolor.uasset │ │ ├── Corrugated_HAV_normal.uasset │ │ ├── Corrugated_HAV_roughness.uasset │ │ ├── Eithernet_Cables_ambientocclusion.uasset │ │ ├── Eithernet_Cables_basecolor.uasset │ │ ├── Eithernet_Cables_normal.uasset │ │ ├── Eithernet_Cables_roughness.uasset │ │ ├── Glossy_Floor_basecolor.uasset │ │ ├── Glossy_Floor_normal.uasset │ │ ├── Glossy_Floor_roughness.uasset │ │ ├── HDRI_Epic_Courtyard_Daylight.uasset │ │ ├── Mod_Stage_Light_01_Plastic_BaseColor.uasset │ │ ├── Mod_Stage_Light_01_Plastic_Emissive.uasset │ │ ├── Mod_Stage_Light_01_Plastic_Metallic.uasset │ │ ├── Mod_Stage_Light_01_Plastic_Normal.uasset │ │ ├── Mod_Stage_Light_01_Plastic_Roughness.uasset │ │ ├── T_Brick_White_AmbientOcclusion.uasset │ │ ├── T_Brick_White_basecolor.uasset │ │ ├── T_Brick_White_normal.uasset │ │ ├── T_Brick_White_roughness.uasset │ │ ├── T_Brushed_Aluminum_AmbientOcclusion.uasset │ │ ├── T_Brushed_Aluminum_basecolor.uasset │ │ ├── T_Brushed_Aluminum_normal.uasset │ │ ├── T_Brushed_Aluminum_roughness.uasset │ │ ├── T_Concrete_Rough_basecolor.uasset │ │ ├── T_Concrete_Rough_normal.uasset │ │ ├── T_Concrete_Rough_roughness.uasset │ │ ├── T_EpicGames-Logo.uasset │ │ ├── T_EpicGames-Logo_Solid.uasset │ │ ├── T_Gaffer_Tape.uasset │ │ ├── T_Generic_Sports_Network_Logo.uasset │ │ ├── T_Gloss_Scratches_Base_Color.uasset │ │ ├── T_Gloss_Scratches_Normal.uasset │ │ ├── T_Gloss_Scratches_Roughness.uasset │ │ ├── T_Glow_Border.uasset │ │ ├── T_Glow_Horiz.uasset │ │ ├── T_Grad_Square.uasset │ │ ├── T_Light_Ring.uasset │ │ ├── T_Light_Shape_Quad.uasset │ │ ├── T_Linear_Grad.uasset │ │ ├── T_MacroVariation.uasset │ │ ├── T_Marble_basecolor.uasset │ │ ├── T_Marble_normal.uasset │ │ ├── T_Marble_roughness.uasset │ │ ├── T_Metal_Steel_D.uasset │ │ ├── T_Metal_Swirls_basecolor.uasset │ │ ├── T_Metal_Swirls_normal.uasset │ │ ├── T_Metal_Swirls_roughness.uasset │ │ ├── T_Microbezel_NRM.uasset │ │ ├── T_Noise_01.uasset │ │ ├── T_Red_Gloss_Scratches_Base_Color.uasset │ │ ├── T_Red_Gloss_Scratches_Roughness.uasset │ │ ├── T_Ring_Light.uasset │ │ ├── T_ShoePrints.uasset │ │ ├── T_Wavy_NRM.uasset │ │ ├── T_Wavy_NRM_002.uasset │ │ ├── T_Wavy_Normal.uasset │ │ ├── T_White_Gloss_Scratches_Base_Color.uasset │ │ ├── T_Wood_Panels_AmbientOcclusion.uasset │ │ ├── T_Wood_Panels_Dark.uasset │ │ ├── T_Wood_Panels_basecolor.uasset │ │ ├── T_Wood_Panels_normal.uasset │ │ ├── T_Wood_Panels_roughness.uasset │ │ ├── Wood_Cherry_Floor_basecolor.uasset │ │ ├── Wood_Cherry_Floor_height.uasset │ │ ├── Wood_Cherry_Floor_normal.uasset │ │ └── Wood_Cherry_Floor_roughness.uasset ├── Levels │ ├── CustomLevel2.umap │ ├── Lighting_Example.uasset │ ├── OWLStudio_A.umap │ └── OWL_TemplateBlank.umap ├── MSPresets │ ├── MSTextures │ │ ├── Black.uasset │ │ ├── BlackPlaceholder.uasset │ │ ├── FlatNormal.uasset │ │ ├── Placeholder.uasset │ │ ├── Placeholder_Normal.uasset │ │ ├── White.uasset │ │ └── WhitePlaceholder.uasset │ ├── MSVTTextures │ │ ├── BlackPlaceholder.uasset │ │ ├── DefaultDiffuse.uasset │ │ ├── Placeholder_Normal.uasset │ │ └── WhitePlaceholder.uasset │ ├── M_MS_Billboard_Material │ │ └── M_MS_Billboard_Material.uasset │ ├── M_MS_Decal_Material │ │ ├── MF_QuixelDecalPOM.uasset │ │ └── M_MS_Decal_Material.uasset │ ├── M_MS_Decal_Material_VT │ │ ├── MF_QuixelDecalPOM.uasset │ │ └── M_MS_Decal_Material_VT.uasset │ ├── M_MS_Default_Fuzz_Material │ │ ├── Functions │ │ │ ├── MF_Fuzz.uasset │ │ │ └── MF_Tiling.uasset │ │ └── M_MS_Default_Fuzz_Material.uasset │ ├── M_MS_Default_Fuzz_Material_VT │ │ ├── Functions │ │ │ ├── MF_Fuzz.uasset │ │ │ └── MF_Tiling.uasset │ │ └── M_MS_Default_Fuzz_Material_VT.uasset │ ├── M_MS_Default_Material │ │ ├── Functions │ │ │ ├── MF_DetailNormalTiling.uasset │ │ │ ├── MF_Displacement.uasset │ │ │ ├── MF_Fuzz.uasset │ │ │ ├── MF_MapAdjustments.uasset │ │ │ ├── MF_ObjAdjustments.uasset │ │ │ ├── MF_Tiling.uasset │ │ │ └── MF_Transmission.uasset │ │ └── M_MS_Default_Material.uasset │ ├── M_MS_Default_Material_VT │ │ ├── Functions │ │ │ ├── MF_DetailNormalTiling.uasset │ │ │ ├── MF_Displacement.uasset │ │ │ ├── MF_Fuzz.uasset │ │ │ ├── MF_MapAdjustments.uasset │ │ │ ├── MF_ObjAdjustments.uasset │ │ │ ├── MF_Tiling.uasset │ │ │ └── MF_Transmission.uasset │ │ └── M_MS_Default_Material_VT.uasset │ ├── M_MS_Default_Transmission_Material │ │ ├── Functions │ │ │ └── MF_SSSObjAdjustments.uasset │ │ └── M_MS_Default_Transmission_Material.uasset │ ├── M_MS_Default_Transmission_Material_VT │ │ ├── Functions │ │ │ └── MF_SSSObjAdjustments.uasset │ │ └── M_MS_Default_Transmission_Material_VT.uasset │ ├── M_MS_Foliage_Material │ │ ├── Functions │ │ │ └── MF_Translucency.uasset │ │ ├── MF_Translucency.uasset │ │ └── M_MS_Foliage_Material.uasset │ ├── M_MS_Glass_Material │ │ ├── Functions │ │ │ ├── MF_FrameBlend.uasset │ │ │ ├── MF_FrameTextures.uasset │ │ │ ├── MF_Imperfection.uasset │ │ │ ├── MF_Refraction.uasset │ │ │ ├── MF_TranslucencyEmission.uasset │ │ │ ├── MF_TranslucencyMetallic.uasset │ │ │ ├── MF_WindowImperfection.uasset │ │ │ └── MF_WindowNormalStrength.uasset │ │ ├── MI_MS_Glass_Material_Inst.uasset │ │ ├── M_MS_Glass_Material.uasset │ │ └── Textures │ │ │ ├── Black.uasset │ │ │ ├── FlatNormal.uasset │ │ │ └── White.uasset │ ├── M_MS_ImperfectionDecal_Material │ │ └── M_MS_ImperfectionDecal_Material.uasset │ ├── M_MS_ImperfectionDecal_Material_VT │ │ └── M_MS_ImperfectionDecal_Material_VT.uasset │ ├── M_MS_Imperfection_Material │ │ ├── M_MS_Imperfection_Material.uasset │ │ └── M_MS_Imperfection_Material_Var.uasset │ ├── M_MS_Imperfection_Material_VT │ │ ├── M_MS_Imperfection_Material_VT.uasset │ │ └── M_MS_Imperfection_Material_Var_VT.uasset │ ├── M_MS_Imperfection_Material_Var │ │ └── M_MS_Imperfection_Material_Var.uasset │ ├── M_MS_SurfaceBlend_Material │ │ ├── LayerFunctions │ │ │ ├── Base │ │ │ │ ├── MF_BaseLayerAdjustments.uasset │ │ │ │ ├── MF_BaseLayerTessellation.uasset │ │ │ │ └── MF_BaseLayerTextures.uasset │ │ │ ├── MF_BlendScatter.uasset │ │ │ ├── MF_Displacement.uasset │ │ │ ├── MF_DisplacementBlend.uasset │ │ │ ├── MF_MaterialBlend.uasset │ │ │ ├── MF_NormalCorrection.uasset │ │ │ ├── MF_ScatterLayer.uasset │ │ │ ├── Middle │ │ │ │ ├── MF_MiddleLayerAdjustments.uasset │ │ │ │ ├── MF_MiddleLayerTessellation.uasset │ │ │ │ └── MF_MiddleLayerTextures.uasset │ │ │ ├── Puddle │ │ │ │ └── MF_PuddleLayer.uasset │ │ │ └── Top │ │ │ │ ├── MF_TopLayerAdjustments.uasset │ │ │ │ ├── MF_TopLayerTessellation.uasset │ │ │ │ └── MF_TopLayerTextures.uasset │ │ └── M_MS_SurfaceBlend_Material.uasset │ ├── M_MS_Surface_Material │ │ ├── Functions │ │ │ ├── MF_Displacement.uasset │ │ │ ├── MF_MapAdjustments.uasset │ │ │ ├── MF_ObjAdjustments.uasset │ │ │ ├── MF_Tiling.uasset │ │ │ └── MF_Transmission.uasset │ │ └── M_MS_Surface_Material.uasset │ └── M_MS_Surface_Material_VT │ │ ├── Functions │ │ ├── MF_Displacement.uasset │ │ ├── MF_MapAdjustments.uasset │ │ ├── MF_ObjAdjustments.uasset │ │ ├── MF_Tiling.uasset │ │ └── MF_Transmission.uasset │ │ └── M_MS_Surface_Material_VT.uasset ├── Megascans │ ├── 3D_Assets │ │ ├── Clay_Vase_uddlffshw │ │ │ ├── MI_Clay_Vase_uddlffshw_2K.uasset │ │ │ ├── S_Clay_Vase_uddlffshw_lod3.uasset │ │ │ ├── T_ClayVase_uddlffshw_2K_DpR.uasset │ │ │ ├── T_Clay_Vase_uddlffshw_2K_D.uasset │ │ │ └── T_Clay_Vase_uddlffshw_2K_N.uasset │ │ ├── Clay_Vase_udfldgohw │ │ │ ├── MI_Clay_Vase_udfldgohw_2K.uasset │ │ │ ├── S_Clay_Vase_udfldgohw_lod3.uasset │ │ │ ├── T_ClayVase_udfldgohw_2K_DpR.uasset │ │ │ ├── T_Clay_Vase_udfldgohw_2K_D.uasset │ │ │ └── T_Clay_Vase_udfldgohw_2K_N.uasset │ │ └── Clay_Vase_udukfdwiw │ │ │ ├── MI_Clay_Vase_udukfdwiw_2K.uasset │ │ │ ├── S_Clay_Vase_udukfdwiw_lod3_Var1.uasset │ │ │ ├── T_ClayVase_udukfdwiw_2K_DpR.uasset │ │ │ ├── T_Clay_Vase_udukfdwiw_2K_D.uasset │ │ │ └── T_Clay_Vase_udukfdwiw_2K_N.uasset │ ├── 3D_Plants │ │ └── Chinese_Fan_Palm_ud4geejja │ │ │ ├── Foliage │ │ │ ├── FT_Chinese_Fan_Palm_ud4geejja_Var1_lod1.uasset │ │ │ ├── FT_Chinese_Fan_Palm_ud4geejja_Var2_lod1.uasset │ │ │ ├── FT_Chinese_Fan_Palm_ud4geejja_Var3_lod1.uasset │ │ │ ├── FT_Chinese_Fan_Palm_ud4geejja_Var4_lod1.uasset │ │ │ ├── FT_Chinese_Fan_Palm_ud4geejja_Var5_lod1.uasset │ │ │ ├── FT_Chinese_Fan_Palm_ud4geejja_Var6_lod1.uasset │ │ │ └── FT_Chinese_Fan_Palm_ud4geejja_Var7_lod1.uasset │ │ │ ├── MI_Chinese_Fan_Palm_ud4geejja_2K.uasset │ │ │ ├── MI_Chinese_Fan_Palm_ud4geejja_Billboard_2K.uasset │ │ │ ├── S_Chinese_Fan_Palm_ud4geejja_Var1_lod1.uasset │ │ │ ├── S_Chinese_Fan_Palm_ud4geejja_Var2_lod1.uasset │ │ │ ├── S_Chinese_Fan_Palm_ud4geejja_Var3_lod1.uasset │ │ │ ├── S_Chinese_Fan_Palm_ud4geejja_Var4_lod1.uasset │ │ │ ├── S_Chinese_Fan_Palm_ud4geejja_Var5_lod1.uasset │ │ │ ├── S_Chinese_Fan_Palm_ud4geejja_Var6_lod1.uasset │ │ │ ├── S_Chinese_Fan_Palm_ud4geejja_Var7_lod1.uasset │ │ │ ├── T_ChineseFanPalm_ud4geejja_2K_ART.uasset │ │ │ ├── T_ChineseFanPalm_ud4geejja_2K_billboard_ART.uasset │ │ │ ├── T_Chinese_Fan_Palm_ud4geejja_2K_D.uasset │ │ │ ├── T_Chinese_Fan_Palm_ud4geejja_2K_N.uasset │ │ │ ├── T_Chinese_Fan_Palm_ud4geejja_Billboard_D.uasset │ │ │ └── T_Chinese_Fan_Palm_ud4geejja_Billboard_N.uasset │ ├── MSPresets │ │ ├── MSTextures │ │ │ ├── Black.uasset │ │ │ ├── BlackPlaceholder.uasset │ │ │ ├── FlatNormal.uasset │ │ │ ├── Placeholder.uasset │ │ │ ├── Placeholder_Normal.uasset │ │ │ ├── White.uasset │ │ │ └── WhitePlaceholder.uasset │ │ ├── MSVTTextures │ │ │ ├── BlackPlaceholder.uasset │ │ │ ├── DefaultDiffuse.uasset │ │ │ ├── Placeholder_Normal.uasset │ │ │ └── WhitePlaceholder.uasset │ │ ├── M_MS_Billboard_Material │ │ │ └── M_MS_Billboard_Material.uasset │ │ ├── M_MS_Decal_Material │ │ │ ├── MF_QuixelDecalPOM.uasset │ │ │ └── M_MS_Decal_Material.uasset │ │ ├── M_MS_Decal_Material_VT │ │ │ ├── MF_QuixelDecalPOM.uasset │ │ │ └── M_MS_Decal_Material_VT.uasset │ │ ├── M_MS_Default_Fuzz_Material │ │ │ ├── Functions │ │ │ │ ├── MF_Fuzz.uasset │ │ │ │ └── MF_Tiling.uasset │ │ │ └── M_MS_Default_Fuzz_Material.uasset │ │ ├── M_MS_Default_Fuzz_Material_VT │ │ │ ├── Functions │ │ │ │ ├── MF_Fuzz.uasset │ │ │ │ └── MF_Tiling.uasset │ │ │ └── M_MS_Default_Fuzz_Material_VT.uasset │ │ ├── M_MS_Default_Material │ │ │ ├── Functions │ │ │ │ ├── MF_DetailNormalTiling.uasset │ │ │ │ ├── MF_Displacement.uasset │ │ │ │ ├── MF_Fuzz.uasset │ │ │ │ ├── MF_MapAdjustments.uasset │ │ │ │ ├── MF_ObjAdjustments.uasset │ │ │ │ ├── MF_Tiling.uasset │ │ │ │ └── MF_Transmission.uasset │ │ │ └── M_MS_Default_Material.uasset │ │ ├── M_MS_Default_Material_VT │ │ │ ├── Functions │ │ │ │ ├── MF_DetailNormalTiling.uasset │ │ │ │ ├── MF_Displacement.uasset │ │ │ │ ├── MF_Fuzz.uasset │ │ │ │ ├── MF_MapAdjustments.uasset │ │ │ │ ├── MF_ObjAdjustments.uasset │ │ │ │ ├── MF_Tiling.uasset │ │ │ │ └── MF_Transmission.uasset │ │ │ └── M_MS_Default_Material_VT.uasset │ │ ├── M_MS_Default_Transmission_Material │ │ │ ├── Functions │ │ │ │ └── MF_SSSObjAdjustments.uasset │ │ │ └── M_MS_Default_Transmission_Material.uasset │ │ ├── M_MS_Default_Transmission_Material_VT │ │ │ ├── Functions │ │ │ │ └── MF_SSSObjAdjustments.uasset │ │ │ └── M_MS_Default_Transmission_Material_VT.uasset │ │ ├── M_MS_Foliage_Material │ │ │ ├── Functions │ │ │ │ └── MF_Translucency.uasset │ │ │ ├── MF_Translucency.uasset │ │ │ └── M_MS_Foliage_Material.uasset │ │ ├── M_MS_Glass_Material │ │ │ ├── Functions │ │ │ │ ├── MF_FrameBlend.uasset │ │ │ │ ├── MF_FrameTextures.uasset │ │ │ │ ├── MF_Imperfection.uasset │ │ │ │ ├── MF_Refraction.uasset │ │ │ │ ├── MF_TranslucencyEmission.uasset │ │ │ │ ├── MF_TranslucencyMetallic.uasset │ │ │ │ ├── MF_WindowImperfection.uasset │ │ │ │ └── MF_WindowNormalStrength.uasset │ │ │ ├── MI_MS_Glass_Material_Inst.uasset │ │ │ ├── M_MS_Glass_Material.uasset │ │ │ └── Textures │ │ │ │ ├── Black.uasset │ │ │ │ ├── FlatNormal.uasset │ │ │ │ └── White.uasset │ │ ├── M_MS_ImperfectionDecal_Material │ │ │ └── M_MS_ImperfectionDecal_Material.uasset │ │ ├── M_MS_ImperfectionDecal_Material_VT │ │ │ └── M_MS_ImperfectionDecal_Material_VT.uasset │ │ ├── M_MS_Imperfection_Material │ │ │ ├── M_MS_Imperfection_Material.uasset │ │ │ └── M_MS_Imperfection_Material_Var.uasset │ │ ├── M_MS_Imperfection_Material_VT │ │ │ ├── M_MS_Imperfection_Material_VT.uasset │ │ │ └── M_MS_Imperfection_Material_Var_VT.uasset │ │ ├── M_MS_Imperfection_Material_Var │ │ │ └── M_MS_Imperfection_Material_Var.uasset │ │ ├── M_MS_SurfaceBlend_Material │ │ │ ├── LayerFunctions │ │ │ │ ├── Base │ │ │ │ │ ├── MF_BaseLayerAdjustments.uasset │ │ │ │ │ ├── MF_BaseLayerTessellation.uasset │ │ │ │ │ └── MF_BaseLayerTextures.uasset │ │ │ │ ├── MF_BlendScatter.uasset │ │ │ │ ├── MF_Displacement.uasset │ │ │ │ ├── MF_DisplacementBlend.uasset │ │ │ │ ├── MF_MaterialBlend.uasset │ │ │ │ ├── MF_NormalCorrection.uasset │ │ │ │ ├── MF_ScatterLayer.uasset │ │ │ │ ├── Middle │ │ │ │ │ ├── MF_MiddleLayerAdjustments.uasset │ │ │ │ │ ├── MF_MiddleLayerTessellation.uasset │ │ │ │ │ └── MF_MiddleLayerTextures.uasset │ │ │ │ ├── Puddle │ │ │ │ │ └── MF_PuddleLayer.uasset │ │ │ │ └── Top │ │ │ │ │ ├── MF_TopLayerAdjustments.uasset │ │ │ │ │ ├── MF_TopLayerTessellation.uasset │ │ │ │ │ └── MF_TopLayerTextures.uasset │ │ │ └── M_MS_SurfaceBlend_Material.uasset │ │ ├── M_MS_Surface_Material │ │ │ ├── Functions │ │ │ │ ├── MF_Displacement.uasset │ │ │ │ ├── MF_MapAdjustments.uasset │ │ │ │ ├── MF_ObjAdjustments.uasset │ │ │ │ ├── MF_Tiling.uasset │ │ │ │ └── MF_Transmission.uasset │ │ │ └── M_MS_Surface_Material.uasset │ │ └── M_MS_Surface_Material_VT │ │ │ ├── Functions │ │ │ ├── MF_Displacement.uasset │ │ │ ├── MF_MapAdjustments.uasset │ │ │ ├── MF_ObjAdjustments.uasset │ │ │ ├── MF_Tiling.uasset │ │ │ └── MF_Transmission.uasset │ │ │ └── M_MS_Surface_Material_VT.uasset │ └── Surfaces │ │ ├── Mossy_Pavers_ucghfh0kw │ │ ├── MI_Mossy_Pavers_ucghfh0kw_2K.uasset │ │ ├── T_MossyPavers_ucghfh0kw_2K_ORDp.uasset │ │ ├── T_Mossy_Pavers_ucghfh0kw_2K_D.uasset │ │ └── T_Mossy_Pavers_ucghfh0kw_2K_N.uasset │ │ ├── Old_Velvet_Cloth_sbdkvup0 │ │ ├── MI_Old_Velvet_Cloth_sbdkvup0_2K.uasset │ │ ├── T_OldVelvetCloth_sbdkvup0_2K_ORDp.uasset │ │ ├── T_Old_Velvet_Cloth_sbdkvup0_2K_D.uasset │ │ └── T_Old_Velvet_Cloth_sbdkvup0_2K_N.uasset │ │ ├── Plush_Carpet_umonbbqdy │ │ ├── MI_Plush_Carpet_umonbbqdy_2K.uasset │ │ ├── T_PlushCarpet_umonbbqdy_2K_ORDp.uasset │ │ ├── T_Plush_Carpet_umonbbqdy_2K_D.uasset │ │ └── T_Plush_Carpet_umonbbqdy_2K_N.uasset │ │ ├── Rusty_Painted_Metal_Sheet_vbzkeis │ │ ├── MI_Rusty_Painted_Metal_Sheet_vbzkeis_2K.uasset │ │ ├── T_RustyPaintedMetalSheet_vbzkeis_2K_ORDp.uasset │ │ ├── T_Rusty_Painted_Metal_Sheet_vbzkeis_2K_D.uasset │ │ └── T_Rusty_Painted_Metal_Sheet_vbzkeis_2K_N.uasset │ │ ├── Rusty_Painted_Metal_Sheet_xiekfhtiw │ │ ├── MI_Rusty_Painted_Metal_Sheet_xiekfhtiw_2K.uasset │ │ ├── T_RustyPaintedMetalSheet_xiekfhtiw_2K_ORDp.uasset │ │ ├── T_Rusty_Painted_Metal_Sheet_xiekfhtiw_2K_D.uasset │ │ └── T_Rusty_Painted_Metal_Sheet_xiekfhtiw_2K_N.uasset │ │ ├── Stucco_Facade_vhhleat │ │ ├── MI_Stucco_Facade_vhhleat_2K.uasset │ │ ├── MI_Stucco_Facade_vhhleat_2K_2.uasset │ │ ├── T_StuccoFacade_vhhleat_2K_ORDp.uasset │ │ ├── T_Stucco_Facade_vhhleat_2K_D.uasset │ │ └── T_Stucco_Facade_vhhleat_2K_N.uasset │ │ └── Wooden_Planks_wczjegqs │ │ ├── MI_Wooden_Planks_wczjegqs_2K.uasset │ │ ├── MI_Wooden_Planks_wczjegqs_2K_2.uasset │ │ ├── T_WoodenPlanks_wczjegqs_2K_ORDp.uasset │ │ ├── T_Wooden_Planks_wczjegqs_2K_D.uasset │ │ └── T_Wooden_Planks_wczjegqs_2K_N.uasset ├── PodcastTemplate │ ├── HUD │ │ ├── Material_003.uasset │ │ └── UI_HUDController.uasset │ ├── Levels │ │ └── PodcastSetting1.umap │ ├── Ls_CloseUp1.uasset │ ├── Ls_CloseUp2.uasset │ ├── Ls_TwoShot.uasset │ ├── RenderTargets │ │ ├── M_CloseUp1.uasset │ │ ├── M_CloseUp2.uasset │ │ ├── RT_Closeup1.uasset │ │ ├── RT_Closeup2.uasset │ │ ├── RT_TwoShot.uasset │ │ ├── RT_TwoShot_Mat.uasset │ │ └── RT_TwoShot_Mat_Inst.uasset │ ├── Sequences │ │ ├── LS_Closeup1.uasset │ │ ├── LS_Closeup2.uasset │ │ ├── LS_CloseupLeft.uasset │ │ ├── LS_CloseupRight.uasset │ │ ├── LS_FlyIn.uasset │ │ ├── LS_LogoCloseup.uasset │ │ ├── LS_TwoShot.uasset │ │ ├── LS_TwoShot2.uasset │ │ ├── LS_TwoShot3.uasset │ │ ├── LS_TwoShot4.uasset │ │ ├── Original │ │ │ ├── LS_Closeup1.uasset │ │ │ └── LS_Closeup2.uasset │ │ ├── Presets │ │ │ ├── LS_PCLights1.uasset │ │ │ ├── LS_PCLights1_2.uasset │ │ │ ├── LS_PCPreset1.uasset │ │ │ ├── LS_PCText.uasset │ │ │ ├── LS_PC_Preset2.uasset │ │ │ ├── LS_PC_Reset.uasset │ │ │ └── LS_PhysicsActorReset.uasset │ │ └── ScreenMovement │ │ │ ├── LS_PC_Screen1.uasset │ │ │ └── LS_PC_Screenhide.uasset │ ├── Stingers │ │ ├── M_UI_VideoPlayback.uasset │ │ ├── M_UI_VideoPlayback_2.uasset │ │ └── UI_StingerWidget.uasset │ ├── TP_Podcast.uasset │ ├── Template │ │ └── PodcastTemplate.umap │ ├── _GENERATED │ │ └── Gen1 │ │ │ ├── Boolean_2D55E2C1.uasset │ │ │ ├── Box_242A4DCE.uasset │ │ │ ├── Cylinder_432E7167.uasset │ │ │ └── Cylinder_B0CFD99A.uasset │ └── meshes │ │ ├── Box003.uasset │ │ ├── FloorCombined.uasset │ │ ├── Line001.uasset │ │ ├── hatak.uasset │ │ ├── zanaveska.uasset │ │ └── zanaveska001.uasset ├── Podcasttemplate │ ├── LS_Closeup1.uasset │ ├── LS_Closeup2.uasset │ ├── LS_TwoShot.uasset │ ├── LS_TwoShot2.uasset │ ├── Levels │ │ └── PodcastSetting2.umap │ ├── Meshes │ │ ├── Box003.uasset │ │ ├── Line001.uasset │ │ ├── hatak.uasset │ │ ├── zanaveska.uasset │ │ └── zanaveska001.uasset │ ├── NewNiagaraSystem.uasset │ ├── OWLPodcastComp.umap │ ├── OWL_Podcast2.umap │ ├── OWL_TemplateBlank.umap │ ├── OWL_TemplateBlank3.umap │ ├── PodcastSetting2.umap │ ├── RT_TwoShot.uasset │ ├── RenderTargets │ │ ├── MI_CloseUp1.uasset │ │ ├── MI_CloseUp2.uasset │ │ ├── MI_TwoShot_Mat_Inst.uasset │ │ ├── M_TwoShot_Mat.uasset │ │ ├── M_TwoShot_Mat_Inst.uasset │ │ ├── RT_Closeup1.uasset │ │ ├── RT_Closeup2.uasset │ │ └── RT_TwoShot.uasset │ ├── Stingers │ │ ├── LS_Stinger1playback.uasset │ │ ├── Ls_Stinger1.uasset │ │ ├── MP_Stinger1.uasset │ │ ├── MP_Stinger1_Video.uasset │ │ ├── MS_Stinger1.uasset │ │ ├── NewNiagaraSystem.uasset │ │ ├── Stinger1.umap │ │ ├── TP_Stinger.uasset │ │ └── TP_alphaAdd.uasset │ └── TP_Podcast.uasset ├── StarterContent │ ├── Architecture │ │ ├── Floor_400x400.uasset │ │ ├── Pillar_50x500.uasset │ │ ├── SM_AssetPlatform.uasset │ │ ├── Wall_400x200.uasset │ │ ├── Wall_400x300.uasset │ │ ├── Wall_400x400.uasset │ │ ├── Wall_500x500.uasset │ │ ├── Wall_Door_400x300.uasset │ │ ├── Wall_Door_400x400.uasset │ │ ├── Wall_Window_400x300.uasset │ │ └── Wall_Window_400x400.uasset │ ├── Audio │ │ ├── Collapse01.uasset │ │ ├── Collapse02.uasset │ │ ├── Collapse_Cue.uasset │ │ ├── Explosion01.uasset │ │ ├── Explosion02.uasset │ │ ├── Explosion_Cue.uasset │ │ ├── Fire01.uasset │ │ ├── Fire01_Cue.uasset │ │ ├── Fire_Sparks01.uasset │ │ ├── Fire_Sparks01_Cue.uasset │ │ ├── Light01.uasset │ │ ├── Light01_Cue.uasset │ │ ├── Light02.uasset │ │ ├── Light02_Cue.uasset │ │ ├── Smoke01.uasset │ │ ├── Smoke01_Cue.uasset │ │ ├── Starter_Background_Cue.uasset │ │ ├── Starter_Birds01.uasset │ │ ├── Starter_Music01.uasset │ │ ├── Starter_Music_Cue.uasset │ │ ├── Starter_Wind05.uasset │ │ ├── Starter_Wind06.uasset │ │ ├── Steam01.uasset │ │ └── Steam01_Cue.uasset │ ├── Blueprints │ │ ├── Assets │ │ │ ├── FogBrightnessLUT.uasset │ │ │ ├── M_LightStage_Arrows.uasset │ │ │ ├── M_LightStage_Skybox_Black.uasset │ │ │ ├── M_LightStage_Skybox_HDRI.uasset │ │ │ ├── M_LightStage_Skybox_Master.uasset │ │ │ ├── SM_Arrows.uasset │ │ │ ├── Skybox.uasset │ │ │ └── SunlightColorLUT.uasset │ │ ├── BP_LightStudio.uasset │ │ ├── Blueprint_CeilingLight.uasset │ │ ├── Blueprint_Effect_Explosion.uasset │ │ ├── Blueprint_Effect_Fire.uasset │ │ ├── Blueprint_Effect_Smoke.uasset │ │ ├── Blueprint_Effect_Sparks.uasset │ │ ├── Blueprint_Effect_Steam.uasset │ │ └── Blueprint_WallSconce.uasset │ ├── HDRI │ │ └── HDRI_Epic_Courtyard_Daylight.uasset │ ├── Maps │ │ ├── Advanced_Lighting.umap │ │ ├── Minimal_Default.umap │ │ └── StarterMap.umap │ ├── Materials │ │ ├── M_AssetPlatform.uasset │ │ ├── M_Basic_Floor.uasset │ │ ├── M_Basic_Wall.uasset │ │ ├── M_Brick_Clay_Beveled.uasset │ │ ├── M_Brick_Clay_New.uasset │ │ ├── M_Brick_Clay_Old.uasset │ │ ├── M_Brick_Cut_Stone.uasset │ │ ├── M_Brick_Hewn_Stone.uasset │ │ ├── M_Ceramic_Tile_Checker.uasset │ │ ├── M_CobbleStone_Pebble.uasset │ │ ├── M_CobbleStone_Rough.uasset │ │ ├── M_CobbleStone_Smooth.uasset │ │ ├── M_ColorGrid_LowSpec.uasset │ │ ├── M_Concrete_Grime.uasset │ │ ├── M_Concrete_Panels.uasset │ │ ├── M_Concrete_Poured.uasset │ │ ├── M_Concrete_Tiles.uasset │ │ ├── M_Glass.uasset │ │ ├── M_Ground_Grass.uasset │ │ ├── M_Ground_Gravel.uasset │ │ ├── M_Ground_Moss.uasset │ │ ├── M_Metal_Brushed_Nickel.uasset │ │ ├── M_Metal_Burnished_Steel.uasset │ │ ├── M_Metal_Chrome.uasset │ │ ├── M_Metal_Copper.uasset │ │ ├── M_Metal_Gold.uasset │ │ ├── M_Metal_Rust.uasset │ │ ├── M_Metal_Steel.uasset │ │ ├── M_Rock_Basalt.uasset │ │ ├── M_Rock_Marble_Polished.uasset │ │ ├── M_Rock_Sandstone.uasset │ │ ├── M_Rock_Slate.uasset │ │ ├── M_Tech_Checker_Dot.uasset │ │ ├── M_Tech_Hex_Tile.uasset │ │ ├── M_Tech_Hex_Tile_Pulse.uasset │ │ ├── M_Tech_Panel.uasset │ │ ├── M_Water_Lake.uasset │ │ ├── M_Water_Ocean.uasset │ │ ├── M_Wood_Floor_Walnut_Polished.uasset │ │ ├── M_Wood_Floor_Walnut_Worn.uasset │ │ ├── M_Wood_Oak.uasset │ │ ├── M_Wood_Pine.uasset │ │ └── M_Wood_Walnut.uasset │ ├── Particles │ │ ├── Materials │ │ │ ├── M_Burst.uasset │ │ │ ├── M_Dust_Particle.uasset │ │ │ ├── M_Fire_SubUV.uasset │ │ │ ├── M_Heat_Distortion.uasset │ │ │ ├── M_Radial_Gradient.uasset │ │ │ ├── M_Spark.uasset │ │ │ ├── M_explosion_subUV.uasset │ │ │ ├── M_radial_ramp.uasset │ │ │ ├── M_smoke_subUV.uasset │ │ │ └── m_flare_01.uasset │ │ ├── P_Ambient_Dust.uasset │ │ ├── P_Explosion.uasset │ │ ├── P_Fire.uasset │ │ ├── P_Smoke.uasset │ │ ├── P_Sparks.uasset │ │ └── P_Steam_Lit.uasset │ ├── Props │ │ ├── MaterialSphere.uasset │ │ ├── Materials │ │ │ ├── M_Bush.uasset │ │ │ ├── M_Chair.uasset │ │ │ ├── M_Door.uasset │ │ │ ├── M_Frame.uasset │ │ │ ├── M_Lamp.uasset │ │ │ ├── M_Rock.uasset │ │ │ ├── M_Shelf.uasset │ │ │ ├── M_Statue.uasset │ │ │ ├── M_StatueGlass.uasset │ │ │ └── M_TableRound.uasset │ │ ├── SM_Bush.uasset │ │ ├── SM_Chair.uasset │ │ ├── SM_CornerFrame.uasset │ │ ├── SM_Couch.uasset │ │ ├── SM_Door.uasset │ │ ├── SM_DoorFrame.uasset │ │ ├── SM_GlassWindow.uasset │ │ ├── SM_Lamp_Ceiling.uasset │ │ ├── SM_Lamp_Wall.uasset │ │ ├── SM_PillarFrame.uasset │ │ ├── SM_PillarFrame300.uasset │ │ ├── SM_Rock.uasset │ │ ├── SM_Shelf.uasset │ │ ├── SM_Stairs.uasset │ │ ├── SM_Statue.uasset │ │ ├── SM_TableRound.uasset │ │ └── SM_WindowFrame.uasset │ ├── Shapes │ │ ├── Shape_Cone.uasset │ │ ├── Shape_Cube.uasset │ │ ├── Shape_Cylinder.uasset │ │ ├── Shape_NarrowCapsule.uasset │ │ ├── Shape_Pipe.uasset │ │ ├── Shape_Pipe_180.uasset │ │ ├── Shape_Pipe_90.uasset │ │ ├── Shape_Plane.uasset │ │ ├── Shape_QuadPyramid.uasset │ │ ├── Shape_Sphere.uasset │ │ ├── Shape_Torus.uasset │ │ ├── Shape_TriPyramid.uasset │ │ ├── Shape_Trim.uasset │ │ ├── Shape_Trim_90_In.uasset │ │ ├── Shape_Trim_90_Out.uasset │ │ ├── Shape_Tube.uasset │ │ ├── Shape_Wedge_A.uasset │ │ ├── Shape_Wedge_B.uasset │ │ └── Shape_WideCapsule.uasset │ └── Textures │ │ ├── T_Brick_Clay_Beveled_D.uasset │ │ ├── T_Brick_Clay_Beveled_M.uasset │ │ ├── T_Brick_Clay_Beveled_N.uasset │ │ ├── T_Brick_Clay_New_D.uasset │ │ ├── T_Brick_Clay_New_M.uasset │ │ ├── T_Brick_Clay_New_N.uasset │ │ ├── T_Brick_Clay_Old_D.uasset │ │ ├── T_Brick_Clay_Old_N.uasset │ │ ├── T_Brick_Cut_Stone_D.uasset │ │ ├── T_Brick_Cut_Stone_N.uasset │ │ ├── T_Brick_Hewn_Stone_D.uasset │ │ ├── T_Brick_Hewn_Stone_M.uasset │ │ ├── T_Brick_Hewn_Stone_N.uasset │ │ ├── T_Burst_M.uasset │ │ ├── T_Bush_D.uasset │ │ ├── T_Bush_N.uasset │ │ ├── T_Ceramic_Tile_M.uasset │ │ ├── T_Ceramic_Tile_N.uasset │ │ ├── T_Chair_M.uasset │ │ ├── T_Chair_N.uasset │ │ ├── T_Checker_Noise_M.uasset │ │ ├── T_CobbleStone_Pebble_D.uasset │ │ ├── T_CobbleStone_Pebble_M.uasset │ │ ├── T_CobbleStone_Pebble_N.uasset │ │ ├── T_CobbleStone_Rough_D.uasset │ │ ├── T_CobbleStone_Rough_N.uasset │ │ ├── T_CobbleStone_Smooth_D.uasset │ │ ├── T_CobbleStone_Smooth_M.uasset │ │ ├── T_CobbleStone_Smooth_N.uasset │ │ ├── T_Concrete_Grime_D.uasset │ │ ├── T_Concrete_Panels_D.uasset │ │ ├── T_Concrete_Panels_N.uasset │ │ ├── T_Concrete_Poured_D.uasset │ │ ├── T_Concrete_Poured_N.uasset │ │ ├── T_Concrete_Tiles_D.uasset │ │ ├── T_Concrete_Tiles_M.uasset │ │ ├── T_Concrete_Tiles_N.uasset │ │ ├── T_Concrete_Tiles_Variation_M.uasset │ │ ├── T_Detail_Rocky_N.uasset │ │ ├── T_Door_M.uasset │ │ ├── T_Door_N.uasset │ │ ├── T_Dust_Particle_D.uasset │ │ ├── T_Explosion_SubUV.uasset │ │ ├── T_Fire_SubUV.uasset │ │ ├── T_Fire_Tiled_D.uasset │ │ ├── T_Frame_M.uasset │ │ ├── T_Frame_N.uasset │ │ ├── T_Gradinet_01.uasset │ │ ├── T_Ground_Grass_D.uasset │ │ ├── T_Ground_Grass_N.uasset │ │ ├── T_Ground_Gravel_D.uasset │ │ ├── T_Ground_Gravel_N.uasset │ │ ├── T_Ground_Moss_N.uasset │ │ ├── T_Lamp_M.uasset │ │ ├── T_Lamp_N.uasset │ │ ├── T_MacroVariation.uasset │ │ ├── T_Metal_Aluminum_D.uasset │ │ ├── T_Metal_Copper_D.uasset │ │ ├── T_Metal_Gold_D.uasset │ │ ├── T_Metal_Gold_N.uasset │ │ ├── T_Metal_Rust_D.uasset │ │ ├── T_Metal_Rust_N.uasset │ │ ├── T_Metal_Steel_D.uasset │ │ ├── T_Metal_Steel_N.uasset │ │ ├── T_Perlin_Noise_M.uasset │ │ ├── T_RockMesh_M.uasset │ │ ├── T_RockMesh_N.uasset │ │ ├── T_Rock_Basalt_D.uasset │ │ ├── T_Rock_Basalt_N.uasset │ │ ├── T_Rock_Marble_Polished_D.uasset │ │ ├── T_Rock_Sandstone_D.uasset │ │ ├── T_Rock_Sandstone_N.uasset │ │ ├── T_Rock_Slate_D.uasset │ │ ├── T_Rock_Slate_N.uasset │ │ ├── T_Rock_Smooth_Granite_D.uasset │ │ ├── T_Shelf_M.uasset │ │ ├── T_Shelf_N.uasset │ │ ├── T_Single_Tile_N.uasset │ │ ├── T_Smoke_SubUV.uasset │ │ ├── T_Smoke_Tiled_D.uasset │ │ ├── T_Spark_Core.uasset │ │ ├── T_Statue_M.uasset │ │ ├── T_Statue_N.uasset │ │ ├── T_TableRound_M.uasset │ │ ├── T_TableRound_N.uasset │ │ ├── T_Tech_Dot_M.uasset │ │ ├── T_Tech_Dot_N.uasset │ │ ├── T_Tech_Hex_Tile_M.uasset │ │ ├── T_Tech_Hex_Tile_N.uasset │ │ ├── T_Tech_Panel_M.uasset │ │ ├── T_Tech_Panel_N.uasset │ │ ├── T_Water_M.uasset │ │ ├── T_Water_N.uasset │ │ ├── T_Wood_Floor_Walnut_D.uasset │ │ ├── T_Wood_Floor_Walnut_M.uasset │ │ ├── T_Wood_Floor_Walnut_N.uasset │ │ ├── T_Wood_Oak_D.uasset │ │ ├── T_Wood_Oak_N.uasset │ │ ├── T_Wood_Pine_D.uasset │ │ ├── T_Wood_Pine_N.uasset │ │ ├── T_Wood_Walnut_D.uasset │ │ ├── T_Wood_Walnut_N.uasset │ │ └── T_ground_Moss_D.uasset ├── Textures │ ├── Stingers │ │ ├── IntroRender │ │ │ ├── IntroStinger.0000.jpeg │ │ │ ├── IntroStinger.0001.jpeg │ │ │ ├── IntroStinger.0002.jpeg │ │ │ ├── IntroStinger.0003.jpeg │ │ │ ├── IntroStinger.0004.jpeg │ │ │ ├── IntroStinger.0005.jpeg │ │ │ ├── IntroStinger.0006.jpeg │ │ │ ├── IntroStinger.0007.jpeg │ │ │ ├── IntroStinger.0008.jpeg │ │ │ ├── IntroStinger.0009.jpeg │ │ │ ├── IntroStinger.0010.jpeg │ │ │ ├── IntroStinger.0011.jpeg │ │ │ ├── IntroStinger.0012.jpeg │ │ │ ├── IntroStinger.0013.jpeg │ │ │ ├── IntroStinger.0014.jpeg │ │ │ ├── IntroStinger.0015.jpeg │ │ │ ├── IntroStinger.0016.jpeg │ │ │ ├── IntroStinger.0017.jpeg │ │ │ ├── IntroStinger.0018.jpeg │ │ │ ├── IntroStinger.0019.jpeg │ │ │ ├── IntroStinger.0020.jpeg │ │ │ ├── IntroStinger.0021.jpeg │ │ │ ├── IntroStinger.0022.jpeg │ │ │ ├── IntroStinger.0023.jpeg │ │ │ ├── IntroStinger.0024.jpeg │ │ │ ├── IntroStinger.0025.jpeg │ │ │ ├── IntroStinger.0026.jpeg │ │ │ ├── IntroStinger.0027.jpeg │ │ │ ├── IntroStinger.0028.jpeg │ │ │ ├── IntroStinger.0029.jpeg │ │ │ ├── IntroStinger.0030.jpeg │ │ │ ├── IntroStinger.0031.jpeg │ │ │ ├── IntroStinger.0032.jpeg │ │ │ ├── IntroStinger.0033.jpeg │ │ │ ├── IntroStinger.0034.jpeg │ │ │ ├── IntroStinger.0035.jpeg │ │ │ ├── IntroStinger.0036.jpeg │ │ │ ├── IntroStinger.0037.jpeg │ │ │ ├── IntroStinger.0038.jpeg │ │ │ ├── IntroStinger.0039.jpeg │ │ │ ├── IntroStinger.0040.jpeg │ │ │ ├── IntroStinger.0041.jpeg │ │ │ ├── IntroStinger.0042.jpeg │ │ │ ├── IntroStinger.0043.jpeg │ │ │ ├── IntroStinger.0044.jpeg │ │ │ ├── IntroStinger.0045.jpeg │ │ │ ├── IntroStinger.0046.jpeg │ │ │ ├── IntroStinger.0047.jpeg │ │ │ ├── IntroStinger.0048.jpeg │ │ │ ├── IntroStinger.0049.jpeg │ │ │ ├── IntroStinger.0050.jpeg │ │ │ ├── IntroStinger.0051.jpeg │ │ │ ├── IntroStinger.0052.jpeg │ │ │ ├── IntroStinger.0053.jpeg │ │ │ ├── IntroStinger.0054.jpeg │ │ │ ├── IntroStinger.0055.jpeg │ │ │ ├── IntroStinger.0056.jpeg │ │ │ ├── IntroStinger.0057.jpeg │ │ │ ├── IntroStinger.0058.jpeg │ │ │ ├── IntroStinger.0059.jpeg │ │ │ ├── IntroStinger.0060.jpeg │ │ │ ├── IntroStinger.0061.jpeg │ │ │ ├── IntroStinger.0062.jpeg │ │ │ ├── IntroStinger.0063.jpeg │ │ │ ├── IntroStinger.0064.jpeg │ │ │ ├── IntroStinger_0000.uasset │ │ │ ├── IntroStinger_0001.uasset │ │ │ ├── IntroStinger_0002.uasset │ │ │ ├── IntroStinger_0003.uasset │ │ │ ├── IntroStinger_0004.uasset │ │ │ ├── IntroStinger_0005.uasset │ │ │ ├── IntroStinger_0006.uasset │ │ │ ├── IntroStinger_0007.uasset │ │ │ ├── IntroStinger_0008.uasset │ │ │ ├── IntroStinger_0009.uasset │ │ │ ├── IntroStinger_0010.uasset │ │ │ ├── IntroStinger_0011.uasset │ │ │ ├── IntroStinger_0012.uasset │ │ │ ├── IntroStinger_0013.uasset │ │ │ ├── IntroStinger_0014.uasset │ │ │ ├── IntroStinger_0015.uasset │ │ │ ├── IntroStinger_0016.uasset │ │ │ ├── IntroStinger_0017.uasset │ │ │ ├── IntroStinger_0018.uasset │ │ │ ├── IntroStinger_0019.uasset │ │ │ ├── IntroStinger_0020.uasset │ │ │ ├── IntroStinger_0021.uasset │ │ │ ├── IntroStinger_0022.uasset │ │ │ ├── IntroStinger_0023.uasset │ │ │ ├── IntroStinger_0024.uasset │ │ │ ├── IntroStinger_0025.uasset │ │ │ ├── IntroStinger_0026.uasset │ │ │ ├── IntroStinger_0027.uasset │ │ │ ├── IntroStinger_0028.uasset │ │ │ ├── IntroStinger_0029.uasset │ │ │ ├── IntroStinger_0030.uasset │ │ │ ├── IntroStinger_0031.uasset │ │ │ ├── IntroStinger_0032.uasset │ │ │ ├── IntroStinger_0033.uasset │ │ │ ├── IntroStinger_0034.uasset │ │ │ ├── IntroStinger_0035.uasset │ │ │ ├── IntroStinger_0036.uasset │ │ │ ├── IntroStinger_0037.uasset │ │ │ ├── IntroStinger_0038.uasset │ │ │ ├── IntroStinger_0039.uasset │ │ │ ├── IntroStinger_0040.uasset │ │ │ ├── IntroStinger_0041.uasset │ │ │ ├── IntroStinger_0042.uasset │ │ │ ├── IntroStinger_0043.uasset │ │ │ ├── IntroStinger_0044.uasset │ │ │ ├── IntroStinger_0045.uasset │ │ │ ├── IntroStinger_0046.uasset │ │ │ ├── IntroStinger_0047.uasset │ │ │ ├── IntroStinger_0048.uasset │ │ │ ├── IntroStinger_0049.uasset │ │ │ ├── IntroStinger_0050.uasset │ │ │ ├── IntroStinger_0051.uasset │ │ │ ├── IntroStinger_0052.uasset │ │ │ ├── IntroStinger_0053.uasset │ │ │ ├── IntroStinger_0054.uasset │ │ │ ├── IntroStinger_0055.uasset │ │ │ ├── IntroStinger_0056.uasset │ │ │ ├── IntroStinger_0057.uasset │ │ │ ├── IntroStinger_0058.uasset │ │ │ ├── IntroStinger_0059.uasset │ │ │ ├── IntroStinger_0060.uasset │ │ │ ├── IntroStinger_0061.uasset │ │ │ ├── IntroStinger_0062.uasset │ │ │ ├── IntroStinger_0063.uasset │ │ │ └── IntroStinger_0064.uasset │ │ ├── IntroVideo │ │ │ ├── IntroVideoSource.uasset │ │ │ ├── MediaPlayerIntro.uasset │ │ │ ├── Ms_Intro.uasset │ │ │ ├── OWLcompIntro.mp4 │ │ │ └── OWLcompIntro.uasset │ │ └── Stinger2 │ │ │ ├── Ls_Stinger1_0000.png │ │ │ ├── Ls_Stinger1_0000.uasset │ │ │ ├── Ls_Stinger1_0001.png │ │ │ ├── Ls_Stinger1_0001.uasset │ │ │ ├── Ls_Stinger1_0002.png │ │ │ ├── Ls_Stinger1_0002.uasset │ │ │ ├── Ls_Stinger1_0003.png │ │ │ ├── Ls_Stinger1_0003.uasset │ │ │ ├── Ls_Stinger1_0004.png │ │ │ ├── Ls_Stinger1_0004.uasset │ │ │ ├── Ls_Stinger1_0005.png │ │ │ ├── Ls_Stinger1_0005.uasset │ │ │ ├── Ls_Stinger1_0006.png │ │ │ ├── Ls_Stinger1_0006.uasset │ │ │ ├── Ls_Stinger1_0007.png │ │ │ ├── Ls_Stinger1_0007.uasset │ │ │ ├── Ls_Stinger1_0008.png │ │ │ ├── Ls_Stinger1_0008.uasset │ │ │ ├── Ls_Stinger1_0009.png │ │ │ ├── Ls_Stinger1_0009.uasset │ │ │ ├── Ls_Stinger1_0010.png │ │ │ ├── Ls_Stinger1_0010.uasset │ │ │ ├── Ls_Stinger1_0011.png │ │ │ ├── Ls_Stinger1_0011.uasset │ │ │ ├── Ls_Stinger1_0012.png │ │ │ ├── Ls_Stinger1_0012.uasset │ │ │ ├── Ls_Stinger1_0013.png │ │ │ ├── Ls_Stinger1_0013.uasset │ │ │ ├── Ls_Stinger1_0014.png │ │ │ ├── Ls_Stinger1_0014.uasset │ │ │ ├── Ls_Stinger1_0015.png │ │ │ ├── Ls_Stinger1_0015.uasset │ │ │ ├── Ls_Stinger1_0016.png │ │ │ ├── Ls_Stinger1_0016.uasset │ │ │ ├── Ls_Stinger1_0017.png │ │ │ ├── Ls_Stinger1_0017.uasset │ │ │ ├── Ls_Stinger1_0018.png │ │ │ ├── Ls_Stinger1_0018.uasset │ │ │ ├── Ls_Stinger1_0019.png │ │ │ ├── Ls_Stinger1_0019.uasset │ │ │ ├── Ls_Stinger1_0020.png │ │ │ ├── Ls_Stinger1_0020.uasset │ │ │ ├── Ls_Stinger1_0021.png │ │ │ ├── Ls_Stinger1_0021.uasset │ │ │ ├── Ls_Stinger1_0022.png │ │ │ ├── Ls_Stinger1_0022.uasset │ │ │ ├── Ls_Stinger1_0023.png │ │ │ ├── Ls_Stinger1_0023.uasset │ │ │ ├── Ls_Stinger1_0024.png │ │ │ ├── Ls_Stinger1_0024.uasset │ │ │ ├── Ls_Stinger1_0025.png │ │ │ ├── Ls_Stinger1_0025.uasset │ │ │ ├── Ls_Stinger1_0026.png │ │ │ ├── Ls_Stinger1_0026.uasset │ │ │ ├── Ls_Stinger1_0027.png │ │ │ ├── Ls_Stinger1_0027.uasset │ │ │ ├── Ls_Stinger1_0028.png │ │ │ ├── Ls_Stinger1_0028.uasset │ │ │ ├── Ls_Stinger1_0029.png │ │ │ ├── Ls_Stinger1_0029.uasset │ │ │ ├── Ls_Stinger1_0030.png │ │ │ ├── Ls_Stinger1_0030.uasset │ │ │ ├── Ls_Stinger1_0031.png │ │ │ ├── Ls_Stinger1_0031.uasset │ │ │ ├── Ls_Stinger1_0032.png │ │ │ ├── Ls_Stinger1_0032.uasset │ │ │ ├── Ls_Stinger1_0033.png │ │ │ ├── Ls_Stinger1_0033.uasset │ │ │ ├── Ls_Stinger1_0034.png │ │ │ ├── Ls_Stinger1_0034.uasset │ │ │ ├── Ls_Stinger1_0035.png │ │ │ ├── Ls_Stinger1_0035.uasset │ │ │ ├── Ls_Stinger1_0036.png │ │ │ ├── Ls_Stinger1_0036.uasset │ │ │ ├── Ls_Stinger1_0037.png │ │ │ ├── Ls_Stinger1_0037.uasset │ │ │ ├── Ls_Stinger1_0038.png │ │ │ ├── Ls_Stinger1_0038.uasset │ │ │ ├── Ls_Stinger1_0039.png │ │ │ ├── Ls_Stinger1_0039.uasset │ │ │ ├── Ls_Stinger1_0040.png │ │ │ ├── Ls_Stinger1_0040.uasset │ │ │ ├── Ls_Stinger1_0041.png │ │ │ ├── Ls_Stinger1_0041.uasset │ │ │ ├── Ls_Stinger1_0042.png │ │ │ ├── Ls_Stinger1_0042.uasset │ │ │ ├── Ls_Stinger1_0043.png │ │ │ ├── Ls_Stinger1_0043.uasset │ │ │ ├── Ls_Stinger1_0044.png │ │ │ ├── Ls_Stinger1_0044.uasset │ │ │ ├── Ls_Stinger1_0045.png │ │ │ ├── Ls_Stinger1_0045.uasset │ │ │ ├── Ls_Stinger1_0046.png │ │ │ ├── Ls_Stinger1_0046.uasset │ │ │ ├── Ls_Stinger1_0047.png │ │ │ ├── Ls_Stinger1_0047.uasset │ │ │ ├── Ls_Stinger1_0048.png │ │ │ ├── Ls_Stinger1_0048.uasset │ │ │ ├── Ls_Stinger1_0049.png │ │ │ ├── Ls_Stinger1_0049.uasset │ │ │ ├── Ls_Stinger1_0050.png │ │ │ ├── Ls_Stinger1_0050.uasset │ │ │ ├── Ls_Stinger1_0051.png │ │ │ ├── Ls_Stinger1_0051.uasset │ │ │ ├── Ls_Stinger1_0052.png │ │ │ ├── Ls_Stinger1_0052.uasset │ │ │ ├── Ls_Stinger1_0053.png │ │ │ ├── Ls_Stinger1_0053.uasset │ │ │ ├── Ls_Stinger1_0054.png │ │ │ ├── Ls_Stinger1_0054.uasset │ │ │ ├── Ls_Stinger1_0055.png │ │ │ ├── Ls_Stinger1_0055.uasset │ │ │ ├── Ls_Stinger1_0056.png │ │ │ ├── Ls_Stinger1_0056.uasset │ │ │ ├── Ls_Stinger1_0057.png │ │ │ ├── Ls_Stinger1_0057.uasset │ │ │ ├── Ls_Stinger1_0058.png │ │ │ ├── Ls_Stinger1_0058.uasset │ │ │ ├── Ls_Stinger1_0059.png │ │ │ └── Ls_Stinger1_0059.uasset │ ├── dirtmask1.uasset │ └── dirtmask2.uasset └── V3Main │ ├── BP_Lightcontrol.uasset │ ├── Blueprints │ └── BP_MediaHandler.uasset │ ├── Drafts │ └── UI_BeginPlaySwitcherDraft.uasset │ ├── HUD │ ├── UI_BeginPlaySwitcher_2.uasset │ └── UI_Output.uasset │ ├── LS_Stinger1playback_2.uasset │ ├── Materials │ ├── MI_Program_1.uasset │ ├── MI_Wood_Planks.uasset │ ├── M_CompKeyToPlane_Inst.uasset │ ├── M_Program.uasset │ └── M_Screen1.uasset │ ├── NewRemoteControlPreset.uasset │ ├── Sequences │ ├── Cam1_Movement.uasset │ ├── Cam3_Movement.uasset │ ├── MainCam │ │ ├── LS_C1Boom.uasset │ │ ├── LS_C1Intro.uasset │ │ ├── LS_C1Left.uasset │ │ └── LS_C1Right.uasset │ ├── Presets │ │ ├── LS_V3Preset1.uasset │ │ └── LS_V3Preset2.uasset │ └── SwitcherCams │ │ ├── Cam1_Movement.uasset │ │ ├── Cam2_movement.uasset │ │ └── Cam3_Movement.uasset │ ├── TP_V3Main.uasset │ ├── Textures │ ├── Button1A.uasset │ ├── Button1P.uasset │ ├── Button1R.uasset │ ├── LS_Cam4.uasset │ ├── LS_CamLeftBoom.uasset │ ├── RT_Cam1.uasset │ ├── RT_Cam2.uasset │ ├── RT_Cam3.uasset │ └── RT_Cam4.uasset │ ├── UserInterfaceVerision │ ├── UI_PreviewWidget.uasset │ └── UI_Switcher.uasset │ ├── V3Main.umap │ ├── VP_PawnV3.uasset │ └── blueprints │ └── BP_HUDSwitcher.uasset ├── GreenScreenExample1.mp4 ├── OWLVirtualProduction.png ├── OWLVirtualProduction.uproject ├── Plugins └── OWLLivestreamingToolkit │ └── OWLLivestreamingToolkit │ ├── .gitignore │ ├── Binaries │ └── Win64 │ │ ├── UnrealEditor-LivestreamingToolkit-Win64-DebugGame.dll │ │ ├── UnrealEditor-LivestreamingToolkit-Win64-DebugGame.pdb │ │ ├── UnrealEditor-LivestreamingToolkit.dll │ │ ├── UnrealEditor-LivestreamingToolkit.pdb │ │ ├── UnrealEditor-LivestreamingToolkitEditor-Win64-DebugGame.dll │ │ ├── UnrealEditor-LivestreamingToolkitEditor-Win64-DebugGame.pdb │ │ ├── UnrealEditor-LivestreamingToolkitEditor.dll │ │ ├── UnrealEditor-LivestreamingToolkitEditor.pdb │ │ ├── UnrealEditor-LivestreamingToolkitShaders-Win64-DebugGame.dll │ │ ├── UnrealEditor-LivestreamingToolkitShaders-Win64-DebugGame.pdb │ │ ├── UnrealEditor-LivestreamingToolkitShaders.dll │ │ ├── UnrealEditor-LivestreamingToolkitShaders.pdb │ │ ├── UnrealEditor-OWL360Camera-Win64-DebugGame.dll │ │ ├── UnrealEditor-OWL360Camera-Win64-DebugGame.pdb │ │ ├── UnrealEditor-OWL360Camera.dll │ │ ├── UnrealEditor-OWL360Camera.pdb │ │ ├── UnrealEditor-OWLCamera-Win64-DebugGame.dll │ │ ├── UnrealEditor-OWLCamera-Win64-DebugGame.pdb │ │ ├── UnrealEditor-OWLCamera.dll │ │ ├── UnrealEditor-OWLCamera.pdb │ │ ├── UnrealEditor-OWLComposure-Win64-DebugGame.dll │ │ ├── UnrealEditor-OWLComposure-Win64-DebugGame.pdb │ │ ├── UnrealEditor-OWLComposure.dll │ │ ├── UnrealEditor-OWLComposure.pdb │ │ ├── UnrealEditor-OWLMedia-Win64-DebugGame.dll │ │ ├── UnrealEditor-OWLMedia-Win64-DebugGame.pdb │ │ ├── UnrealEditor-OWLMedia.dll │ │ ├── UnrealEditor-OWLMedia.pdb │ │ ├── UnrealEditor-OWLNDI-Win64-DebugGame.dll │ │ ├── UnrealEditor-OWLNDI-Win64-DebugGame.pdb │ │ ├── UnrealEditor-OWLNDI.dll │ │ ├── UnrealEditor-OWLNDI.pdb │ │ ├── UnrealEditor-OWLScreenCapture-Win64-DebugGame.dll │ │ ├── UnrealEditor-OWLScreenCapture-Win64-DebugGame.pdb │ │ ├── UnrealEditor-OWLScreenCapture.dll │ │ ├── UnrealEditor-OWLScreenCapture.pdb │ │ ├── UnrealEditor-OWLSpout-Win64-DebugGame.dll │ │ ├── UnrealEditor-OWLSpout-Win64-DebugGame.pdb │ │ ├── UnrealEditor-OWLSpout.dll │ │ ├── UnrealEditor-OWLSpout.pdb │ │ ├── UnrealEditor-OWLVirtualWebcam-Win64-DebugGame.dll │ │ ├── UnrealEditor-OWLVirtualWebcam-Win64-DebugGame.pdb │ │ ├── UnrealEditor-OWLVirtualWebcam.dll │ │ ├── UnrealEditor-OWLVirtualWebcam.pdb │ │ ├── UnrealEditor-Win64-DebugGame.modules │ │ └── UnrealEditor.modules │ ├── Config │ └── FilterPlugin.ini │ ├── Content │ ├── Composure │ │ ├── BP_OWLMediaPlateCompElement.uasset │ │ ├── MS_VideoPlaneMesh.uasset │ │ ├── M_OWL_PlacementPlaneDefault.uasset │ │ ├── M_OWL_VideoPlane.uasset │ │ ├── M_VideoToPlaneTransform.uasset │ │ └── T_OWL_VideoPlacementPlane.uasset │ ├── Materials │ │ ├── M_OWLAlphaExtract.uasset │ │ └── M_OWLAlphaExtract_Inverted.uasset │ └── Meshes │ │ ├── 360OffWorldCaptureCamera.uasset │ │ ├── M_360OffWorldCaptureCamera.uasset │ │ ├── OWLCAptureCamera_Roughness.uasset │ │ ├── OWLCaptureCamera_BaseColor.uasset │ │ ├── OWLCaptureCamera_Metallic.uasset │ │ ├── OWLCaptureCamera_Normal.uasset │ │ ├── OffWorldCaptureCamera.uasset │ │ ├── OffWorldCaptureCameraMaterial.uasset │ │ ├── OffWorldCineCamCapture.uasset │ │ ├── smooth_DefaultMaterial_BaseColor.uasset │ │ ├── smooth_DefaultMaterial_Normal.uasset │ │ └── smooth_DefaultMaterial_OcclusionRoughnessMetallic.uasset │ ├── Docs │ └── LinkToDocs.txt │ ├── Intermediate │ └── Build │ │ ├── BuildRules │ │ ├── OWLLivestreamingToolkitModuleRules.dll │ │ ├── OWLLivestreamingToolkitModuleRules.pdb │ │ └── OWLLivestreamingToolkitModuleRulesManifest.json │ │ └── Win64 │ │ ├── UnrealEditor │ │ └── Inc │ │ │ ├── LivestreamingToolkit │ │ │ └── UHT │ │ │ │ ├── LivestreamingToolkit.init.gen.cpp │ │ │ │ ├── LivestreamingToolkitClasses.h │ │ │ │ ├── MeteredUsageWorker.gen.cpp │ │ │ │ ├── MeteredUsageWorker.generated.h │ │ │ │ ├── OWLBlueprintFunctionLibrary.gen.cpp │ │ │ │ ├── OWLBlueprintFunctionLibrary.generated.h │ │ │ │ ├── OWLImageInput.gen.cpp │ │ │ │ ├── OWLImageInput.generated.h │ │ │ │ ├── OWLSaveGame.gen.cpp │ │ │ │ ├── OWLSaveGame.generated.h │ │ │ │ ├── OWLSettings.gen.cpp │ │ │ │ ├── OWLSettings.generated.h │ │ │ │ ├── ServerConfigSaveGameData.gen.cpp │ │ │ │ ├── ServerConfigSaveGameData.generated.h │ │ │ │ ├── Timestamp │ │ │ │ ├── ViewportSettings.gen.cpp │ │ │ │ └── ViewportSettings.generated.h │ │ │ ├── LivestreamingToolkitEditor │ │ │ └── UHT │ │ │ │ ├── LivestreamingToolkitEditor.init.gen.cpp │ │ │ │ ├── LivestreamingToolkitEditorClasses.h │ │ │ │ ├── OWLNDISoundWaveFactory.gen.cpp │ │ │ │ ├── OWLNDISoundWaveFactory.generated.h │ │ │ │ └── Timestamp │ │ │ ├── LivestreamingToolkitShaders │ │ │ └── UHT │ │ │ │ ├── LivestreamingToolkitShaders.init.gen.cpp │ │ │ │ ├── OWLTextureFormats.gen.cpp │ │ │ │ ├── OWLTextureFormats.generated.h │ │ │ │ └── Timestamp │ │ │ ├── OWL360Camera │ │ │ └── UHT │ │ │ │ ├── OWL360CamCapture.gen.cpp │ │ │ │ ├── OWL360CamCapture.generated.h │ │ │ │ ├── OWL360Camera.init.gen.cpp │ │ │ │ ├── OWL360CameraClasses.h │ │ │ │ ├── OWL360CaptureComponent.gen.cpp │ │ │ │ ├── OWL360CaptureComponent.generated.h │ │ │ │ ├── OWL360PostProcessSettings.gen.cpp │ │ │ │ ├── OWL360PostProcessSettings.generated.h │ │ │ │ ├── PostProcessHelpers.gen.cpp │ │ │ │ ├── PostProcessHelpers.generated.h │ │ │ │ └── Timestamp │ │ │ ├── OWLCamera │ │ │ └── UHT │ │ │ │ ├── OWLCamera.init.gen.cpp │ │ │ │ ├── OWLCameraClasses.h │ │ │ │ ├── OWLCaptureComponent.gen.cpp │ │ │ │ ├── OWLCaptureComponent.generated.h │ │ │ │ ├── OWLCineCamCapture.gen.cpp │ │ │ │ ├── OWLCineCamCapture.generated.h │ │ │ │ ├── OWLViewportCapture.gen.cpp │ │ │ │ ├── OWLViewportCapture.generated.h │ │ │ │ └── Timestamp │ │ │ ├── OWLComposure │ │ │ └── UHT │ │ │ │ ├── OWLBaseComp.gen.cpp │ │ │ │ ├── OWLBaseComp.generated.h │ │ │ │ ├── OWLCGCaptureComponent.gen.cpp │ │ │ │ ├── OWLCGCaptureComponent.generated.h │ │ │ │ ├── OWLCGElement.gen.cpp │ │ │ │ ├── OWLCGElement.generated.h │ │ │ │ ├── OWLCGMatte.gen.cpp │ │ │ │ ├── OWLCGMatte.generated.h │ │ │ │ ├── OWLComposure.init.gen.cpp │ │ │ │ ├── OWLComposureClasses.h │ │ │ │ ├── OWLNDIInputPass.gen.cpp │ │ │ │ ├── OWLNDIInputPass.generated.h │ │ │ │ ├── OWLNDIOutputPass.gen.cpp │ │ │ │ ├── OWLNDIOutputPass.generated.h │ │ │ │ ├── OWLPlaneTransformPass.gen.cpp │ │ │ │ ├── OWLPlaneTransformPass.generated.h │ │ │ │ ├── OWLScreenCaptureInputPass.gen.cpp │ │ │ │ ├── OWLScreenCaptureInputPass.generated.h │ │ │ │ ├── OWLSpoutInputPass.gen.cpp │ │ │ │ ├── OWLSpoutInputPass.generated.h │ │ │ │ ├── OWLSpoutOutputPass.gen.cpp │ │ │ │ ├── OWLSpoutOutputPass.generated.h │ │ │ │ ├── OWLUIInputPass.gen.cpp │ │ │ │ ├── OWLUIInputPass.generated.h │ │ │ │ ├── OWLVideoPlanePlacement.gen.cpp │ │ │ │ ├── OWLVideoPlanePlacement.generated.h │ │ │ │ └── Timestamp │ │ │ ├── OWLMedia │ │ │ └── UHT │ │ │ │ ├── FOWLEncoderProfiles.gen.cpp │ │ │ │ ├── FOWLEncoderProfiles.generated.h │ │ │ │ ├── OWLFFmpegOutput.gen.cpp │ │ │ │ ├── OWLFFmpegOutput.generated.h │ │ │ │ ├── OWLMedia.init.gen.cpp │ │ │ │ ├── OWLMediaClasses.h │ │ │ │ ├── OWLMediaOutput.gen.cpp │ │ │ │ ├── OWLMediaOutput.generated.h │ │ │ │ └── Timestamp │ │ │ ├── OWLNDI │ │ │ └── UHT │ │ │ │ ├── NDIEnums.gen.cpp │ │ │ │ ├── NDIEnums.generated.h │ │ │ │ ├── OWLNDI.init.gen.cpp │ │ │ │ ├── OWLNDIClasses.h │ │ │ │ ├── OWLNDIFinder.gen.cpp │ │ │ │ ├── OWLNDIFinder.generated.h │ │ │ │ ├── OWLNDIReceiverManager.gen.cpp │ │ │ │ ├── OWLNDIReceiverManager.generated.h │ │ │ │ ├── OWLNDISenderManager.gen.cpp │ │ │ │ ├── OWLNDISenderManager.generated.h │ │ │ │ ├── OWLNDISoundWave.gen.cpp │ │ │ │ ├── OWLNDISoundWave.generated.h │ │ │ │ └── Timestamp │ │ │ ├── OWLScreenCapture │ │ │ └── UHT │ │ │ │ ├── OWLScreenCapture.gen.cpp │ │ │ │ ├── OWLScreenCapture.generated.h │ │ │ │ ├── OWLScreenCapture.init.gen.cpp │ │ │ │ ├── OWLScreenCaptureClasses.h │ │ │ │ ├── OWLScreenCapturerOptions.gen.cpp │ │ │ │ ├── OWLScreenCapturerOptions.generated.h │ │ │ │ └── Timestamp │ │ │ ├── OWLSpout │ │ │ └── UHT │ │ │ │ ├── OWLSpout.init.gen.cpp │ │ │ │ ├── OWLSpoutClasses.h │ │ │ │ ├── OWLSpoutReceiverManager.gen.cpp │ │ │ │ ├── OWLSpoutReceiverManager.generated.h │ │ │ │ ├── OWLSpoutSenderManager.gen.cpp │ │ │ │ ├── OWLSpoutSenderManager.generated.h │ │ │ │ └── Timestamp │ │ │ └── OWLVirtualWebcam │ │ │ └── UHT │ │ │ ├── OWLVirtualWebcam.init.gen.cpp │ │ │ ├── OWLVirtualWebcamClasses.h │ │ │ ├── OWLVirtualWebcamOutput.gen.cpp │ │ │ ├── OWLVirtualWebcamOutput.generated.h │ │ │ └── Timestamp │ │ ├── UnrealGame │ │ ├── Development │ │ │ ├── LivestreamingToolkit │ │ │ │ └── LivestreamingToolkit.precompiled │ │ │ ├── LivestreamingToolkitShaders │ │ │ │ └── LivestreamingToolkitShaders.precompiled │ │ │ ├── OWL360Camera │ │ │ │ └── OWL360Camera.precompiled │ │ │ ├── OWLCamera │ │ │ │ └── OWLCamera.precompiled │ │ │ ├── OWLComposure │ │ │ │ └── OWLComposure.precompiled │ │ │ ├── OWLMedia │ │ │ │ └── OWLMedia.precompiled │ │ │ ├── OWLNDI │ │ │ │ └── OWLNDI.precompiled │ │ │ ├── OWLScreenCapture │ │ │ │ └── OWLScreenCapture.precompiled │ │ │ ├── OWLSpout │ │ │ │ └── OWLSpout.precompiled │ │ │ └── OWLVirtualWebcam │ │ │ │ └── OWLVirtualWebcam.precompiled │ │ ├── Inc │ │ │ ├── LivestreamingToolkit │ │ │ │ └── UHT │ │ │ │ │ ├── LivestreamingToolkit.init.gen.cpp │ │ │ │ │ ├── LivestreamingToolkitClasses.h │ │ │ │ │ ├── MeteredUsageWorker.gen.cpp │ │ │ │ │ ├── MeteredUsageWorker.generated.h │ │ │ │ │ ├── OWLBlueprintFunctionLibrary.gen.cpp │ │ │ │ │ ├── OWLBlueprintFunctionLibrary.generated.h │ │ │ │ │ ├── OWLImageInput.gen.cpp │ │ │ │ │ ├── OWLImageInput.generated.h │ │ │ │ │ ├── OWLSaveGame.gen.cpp │ │ │ │ │ ├── OWLSaveGame.generated.h │ │ │ │ │ ├── OWLSettings.gen.cpp │ │ │ │ │ ├── OWLSettings.generated.h │ │ │ │ │ ├── ServerConfigSaveGameData.gen.cpp │ │ │ │ │ ├── ServerConfigSaveGameData.generated.h │ │ │ │ │ ├── Timestamp │ │ │ │ │ ├── ViewportSettings.gen.cpp │ │ │ │ │ └── ViewportSettings.generated.h │ │ │ ├── LivestreamingToolkitShaders │ │ │ │ └── UHT │ │ │ │ │ ├── LivestreamingToolkitShaders.init.gen.cpp │ │ │ │ │ ├── OWLTextureFormats.gen.cpp │ │ │ │ │ ├── OWLTextureFormats.generated.h │ │ │ │ │ └── Timestamp │ │ │ ├── OWL360Camera │ │ │ │ └── UHT │ │ │ │ │ ├── OWL360CamCapture.gen.cpp │ │ │ │ │ ├── OWL360CamCapture.generated.h │ │ │ │ │ ├── OWL360Camera.init.gen.cpp │ │ │ │ │ ├── OWL360CameraClasses.h │ │ │ │ │ ├── OWL360CaptureComponent.gen.cpp │ │ │ │ │ ├── OWL360CaptureComponent.generated.h │ │ │ │ │ ├── OWL360PostProcessSettings.gen.cpp │ │ │ │ │ ├── OWL360PostProcessSettings.generated.h │ │ │ │ │ ├── PostProcessHelpers.gen.cpp │ │ │ │ │ ├── PostProcessHelpers.generated.h │ │ │ │ │ └── Timestamp │ │ │ ├── OWLCamera │ │ │ │ └── UHT │ │ │ │ │ ├── OWLCamera.init.gen.cpp │ │ │ │ │ ├── OWLCameraClasses.h │ │ │ │ │ ├── OWLCaptureComponent.gen.cpp │ │ │ │ │ ├── OWLCaptureComponent.generated.h │ │ │ │ │ ├── OWLCineCamCapture.gen.cpp │ │ │ │ │ ├── OWLCineCamCapture.generated.h │ │ │ │ │ ├── OWLViewportCapture.gen.cpp │ │ │ │ │ ├── OWLViewportCapture.generated.h │ │ │ │ │ └── Timestamp │ │ │ ├── OWLComposure │ │ │ │ └── UHT │ │ │ │ │ ├── OWLBaseComp.gen.cpp │ │ │ │ │ ├── OWLBaseComp.generated.h │ │ │ │ │ ├── OWLCGCaptureComponent.gen.cpp │ │ │ │ │ ├── OWLCGCaptureComponent.generated.h │ │ │ │ │ ├── OWLCGElement.gen.cpp │ │ │ │ │ ├── OWLCGElement.generated.h │ │ │ │ │ ├── OWLCGMatte.gen.cpp │ │ │ │ │ ├── OWLCGMatte.generated.h │ │ │ │ │ ├── OWLComposure.init.gen.cpp │ │ │ │ │ ├── OWLComposureClasses.h │ │ │ │ │ ├── OWLNDIInputPass.gen.cpp │ │ │ │ │ ├── OWLNDIInputPass.generated.h │ │ │ │ │ ├── OWLNDIOutputPass.gen.cpp │ │ │ │ │ ├── OWLNDIOutputPass.generated.h │ │ │ │ │ ├── OWLPlaneTransformPass.gen.cpp │ │ │ │ │ ├── OWLPlaneTransformPass.generated.h │ │ │ │ │ ├── OWLScreenCaptureInputPass.gen.cpp │ │ │ │ │ ├── OWLScreenCaptureInputPass.generated.h │ │ │ │ │ ├── OWLSpoutInputPass.gen.cpp │ │ │ │ │ ├── OWLSpoutInputPass.generated.h │ │ │ │ │ ├── OWLSpoutOutputPass.gen.cpp │ │ │ │ │ ├── OWLSpoutOutputPass.generated.h │ │ │ │ │ ├── OWLUIInputPass.gen.cpp │ │ │ │ │ ├── OWLUIInputPass.generated.h │ │ │ │ │ ├── OWLVideoPlanePlacement.gen.cpp │ │ │ │ │ ├── OWLVideoPlanePlacement.generated.h │ │ │ │ │ └── Timestamp │ │ │ ├── OWLMedia │ │ │ │ └── UHT │ │ │ │ │ ├── FOWLEncoderProfiles.gen.cpp │ │ │ │ │ ├── FOWLEncoderProfiles.generated.h │ │ │ │ │ ├── OWLFFmpegOutput.gen.cpp │ │ │ │ │ ├── OWLFFmpegOutput.generated.h │ │ │ │ │ ├── OWLMedia.init.gen.cpp │ │ │ │ │ ├── OWLMediaClasses.h │ │ │ │ │ ├── OWLMediaOutput.gen.cpp │ │ │ │ │ ├── OWLMediaOutput.generated.h │ │ │ │ │ └── Timestamp │ │ │ ├── OWLNDI │ │ │ │ └── UHT │ │ │ │ │ ├── NDIEnums.gen.cpp │ │ │ │ │ ├── NDIEnums.generated.h │ │ │ │ │ ├── OWLNDI.init.gen.cpp │ │ │ │ │ ├── OWLNDIClasses.h │ │ │ │ │ ├── OWLNDIFinder.gen.cpp │ │ │ │ │ ├── OWLNDIFinder.generated.h │ │ │ │ │ ├── OWLNDIReceiverManager.gen.cpp │ │ │ │ │ ├── OWLNDIReceiverManager.generated.h │ │ │ │ │ ├── OWLNDISenderManager.gen.cpp │ │ │ │ │ ├── OWLNDISenderManager.generated.h │ │ │ │ │ ├── OWLNDISoundWave.gen.cpp │ │ │ │ │ ├── OWLNDISoundWave.generated.h │ │ │ │ │ └── Timestamp │ │ │ ├── OWLScreenCapture │ │ │ │ └── UHT │ │ │ │ │ ├── OWLScreenCapture.gen.cpp │ │ │ │ │ ├── OWLScreenCapture.generated.h │ │ │ │ │ ├── OWLScreenCapture.init.gen.cpp │ │ │ │ │ ├── OWLScreenCaptureClasses.h │ │ │ │ │ ├── OWLScreenCapturerOptions.gen.cpp │ │ │ │ │ ├── OWLScreenCapturerOptions.generated.h │ │ │ │ │ └── Timestamp │ │ │ ├── OWLSpout │ │ │ │ └── UHT │ │ │ │ │ ├── OWLSpout.init.gen.cpp │ │ │ │ │ ├── OWLSpoutClasses.h │ │ │ │ │ ├── OWLSpoutReceiverManager.gen.cpp │ │ │ │ │ ├── OWLSpoutReceiverManager.generated.h │ │ │ │ │ ├── OWLSpoutSenderManager.gen.cpp │ │ │ │ │ ├── OWLSpoutSenderManager.generated.h │ │ │ │ │ └── Timestamp │ │ │ └── OWLVirtualWebcam │ │ │ │ └── UHT │ │ │ │ ├── OWLVirtualWebcam.init.gen.cpp │ │ │ │ ├── OWLVirtualWebcamClasses.h │ │ │ │ ├── OWLVirtualWebcamOutput.gen.cpp │ │ │ │ ├── OWLVirtualWebcamOutput.generated.h │ │ │ │ └── Timestamp │ │ └── Shipping │ │ │ ├── LivestreamingToolkit │ │ │ └── LivestreamingToolkit.precompiled │ │ │ ├── LivestreamingToolkitShaders │ │ │ └── LivestreamingToolkitShaders.precompiled │ │ │ ├── OWL360Camera │ │ │ └── OWL360Camera.precompiled │ │ │ ├── OWLCamera │ │ │ └── OWLCamera.precompiled │ │ │ ├── OWLComposure │ │ │ └── OWLComposure.precompiled │ │ │ ├── OWLMedia │ │ │ └── OWLMedia.precompiled │ │ │ ├── OWLNDI │ │ │ └── OWLNDI.precompiled │ │ │ ├── OWLScreenCapture │ │ │ └── OWLScreenCapture.precompiled │ │ │ ├── OWLSpout │ │ │ └── OWLSpout.precompiled │ │ │ └── OWLVirtualWebcam │ │ │ └── OWLVirtualWebcam.precompiled │ │ └── x64 │ │ ├── UnrealEditor │ │ ├── DebugGame │ │ │ ├── LivestreamingToolkit │ │ │ │ ├── AuthCoordinator.h.dep.json │ │ │ │ ├── AuthCoordinator.h.obj │ │ │ │ ├── AuthDelegates.h.dep.json │ │ │ │ ├── AuthDelegates.h.obj │ │ │ │ ├── AuthLoader.h.dep.json │ │ │ │ ├── AuthLoader.h.obj │ │ │ │ ├── AuthLogCategory.h.dep.json │ │ │ │ ├── AuthLogCategory.h.obj │ │ │ │ ├── AuthSharedSettings.h.dep.json │ │ │ │ ├── AuthSharedSettings.h.obj │ │ │ │ ├── AuthTools.h.dep.json │ │ │ │ ├── AuthTools.h.obj │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.LivestreamingToolkit.h │ │ │ │ ├── ImageArray.h.dep.json │ │ │ │ ├── ImageArray.h.obj │ │ │ │ ├── LivestreamingToolkitModule.h.dep.json │ │ │ │ ├── LivestreamingToolkitModule.h.obj │ │ │ │ ├── MeteredUsageWorker.h.dep.json │ │ │ │ ├── MeteredUsageWorker.h.obj │ │ │ │ ├── Module.LivestreamingToolkit.cpp │ │ │ │ ├── Module.LivestreamingToolkit.cpp.dep.json │ │ │ │ ├── Module.LivestreamingToolkit.cpp.obj │ │ │ │ ├── NDIInstallerLaunch.h.dep.json │ │ │ │ ├── NDIInstallerLaunch.h.obj │ │ │ │ ├── OWLBlueprintFunctionLibrary.h.dep.json │ │ │ │ ├── OWLBlueprintFunctionLibrary.h.obj │ │ │ │ ├── OWLHelpers.h.dep.json │ │ │ │ ├── OWLHelpers.h.obj │ │ │ │ ├── OWLImageInput.h.dep.json │ │ │ │ ├── OWLImageInput.h.obj │ │ │ │ ├── OWLJsonHelper.h.dep.json │ │ │ │ ├── OWLJsonHelper.h.obj │ │ │ │ ├── OWLSaveGame.h.dep.json │ │ │ │ ├── OWLSaveGame.h.obj │ │ │ │ ├── OWLSettings.h.dep.json │ │ │ │ ├── OWLSettings.h.obj │ │ │ │ ├── OWLTelemetry.h.dep.json │ │ │ │ ├── OWLTelemetry.h.obj │ │ │ │ ├── OWLWatermarkWriter.h.dep.json │ │ │ │ ├── OWLWatermarkWriter.h.obj │ │ │ │ ├── OWLWindowsPlatformMisc.h.dep.json │ │ │ │ ├── OWLWindowsPlatformMisc.h.obj │ │ │ │ ├── PluginUpdate.h.dep.json │ │ │ │ ├── PluginUpdate.h.obj │ │ │ │ ├── ServerConfigSaveGameData.h.dep.json │ │ │ │ ├── ServerConfigSaveGameData.h.obj │ │ │ │ ├── UnrealEditor-LivestreamingToolkit-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-LivestreamingToolkit-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-LivestreamingToolkit-Win64-DebugGame.suppressed.exp │ │ │ │ ├── UnrealEditor-LivestreamingToolkit-Win64-DebugGame.suppressed.lib │ │ │ │ ├── ViewportSettings.h.dep.json │ │ │ │ └── ViewportSettings.h.obj │ │ │ ├── LivestreamingToolkitEditor │ │ │ │ ├── CaptureComponentDetailsCustomisation.h.dep.json │ │ │ │ ├── CaptureComponentDetailsCustomisation.h.obj │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.LivestreamingToolkitEditor.h │ │ │ │ ├── LivestreamingToolkitEditor.h.dep.json │ │ │ │ ├── LivestreamingToolkitEditor.h.obj │ │ │ │ ├── LivestreamingToolkitEditorCommands.h.dep.json │ │ │ │ ├── LivestreamingToolkitEditorCommands.h.obj │ │ │ │ ├── LivestreamingToolkitEditorStyle.h.dep.json │ │ │ │ ├── LivestreamingToolkitEditorStyle.h.obj │ │ │ │ ├── MediaOutputDetailsCustomisation.h.dep.json │ │ │ │ ├── MediaOutputDetailsCustomisation.h.obj │ │ │ │ ├── Module.LivestreamingToolkitEditor.cpp │ │ │ │ ├── Module.LivestreamingToolkitEditor.cpp.dep.json │ │ │ │ ├── Module.LivestreamingToolkitEditor.cpp.obj │ │ │ │ ├── NDIActiveSenderNamesCustomisation.h.dep.json │ │ │ │ ├── NDIActiveSenderNamesCustomisation.h.obj │ │ │ │ ├── OWLNDISoundWaveFactory.h.dep.json │ │ │ │ ├── OWLNDISoundWaveFactory.h.obj │ │ │ │ ├── SLivestreamWizard.h.dep.json │ │ │ │ ├── SLivestreamWizard.h.obj │ │ │ │ ├── ScreenCaptureDetailsCustomisation.h.dep.json │ │ │ │ ├── ScreenCaptureDetailsCustomisation.h.obj │ │ │ │ ├── SpoutActiveSenderNamesCustomisation.h.dep.json │ │ │ │ ├── SpoutActiveSenderNamesCustomisation.h.obj │ │ │ │ ├── UnrealEditor-LivestreamingToolkitEditor-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-LivestreamingToolkitEditor-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-LivestreamingToolkitEditor-Win64-DebugGame.suppressed.exp │ │ │ │ └── UnrealEditor-LivestreamingToolkitEditor-Win64-DebugGame.suppressed.lib │ │ │ ├── LivestreamingToolkitShaders │ │ │ │ ├── BloomDownsampleArrayResource.h.dep.json │ │ │ │ ├── BloomDownsampleArrayResource.h.obj │ │ │ │ ├── BloomShaderDeclaration.h.dep.json │ │ │ │ ├── BloomShaderDeclaration.h.obj │ │ │ │ ├── Cube2EquiExecutor.h.dep.json │ │ │ │ ├── Cube2EquiExecutor.h.obj │ │ │ │ ├── Cube2EquiShaderDeclaration.h.dep.json │ │ │ │ ├── Cube2EquiShaderDeclaration.h.obj │ │ │ │ ├── CubeMapOutputDeclaration.h.dep.json │ │ │ │ ├── CubeMapOutputDeclaration.h.obj │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.LivestreamingToolkitShaders.h │ │ │ │ ├── DomeShaderDeclaration.h.dep.json │ │ │ │ ├── DomeShaderDeclaration.h.obj │ │ │ │ ├── LivestreamingToolkitShaders.h.dep.json │ │ │ │ ├── LivestreamingToolkitShaders.h.obj │ │ │ │ ├── MirrorDomeShaderDeclaration.h.dep.json │ │ │ │ ├── MirrorDomeShaderDeclaration.h.obj │ │ │ │ ├── Module.LivestreamingToolkitShaders.cpp │ │ │ │ ├── Module.LivestreamingToolkitShaders.cpp.dep.json │ │ │ │ ├── Module.LivestreamingToolkitShaders.cpp.obj │ │ │ │ ├── OWLMediaUtils.h.dep.json │ │ │ │ ├── OWLMediaUtils.h.obj │ │ │ │ ├── OWLTextureFormats.h.dep.json │ │ │ │ ├── OWLTextureFormats.h.obj │ │ │ │ ├── UnrealEditor-LivestreamingToolkitShaders-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-LivestreamingToolkitShaders-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-LivestreamingToolkitShaders-Win64-DebugGame.suppressed.exp │ │ │ │ └── UnrealEditor-LivestreamingToolkitShaders-Win64-DebugGame.suppressed.lib │ │ │ ├── OWL360Camera │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.OWL360Camera.h │ │ │ │ ├── Module.OWL360Camera.1_of_2.cpp │ │ │ │ ├── Module.OWL360Camera.1_of_2.cpp.dep.json │ │ │ │ ├── Module.OWL360Camera.1_of_2.cpp.obj │ │ │ │ ├── Module.OWL360Camera.2_of_2.cpp │ │ │ │ ├── Module.OWL360Camera.2_of_2.cpp.dep.json │ │ │ │ ├── Module.OWL360Camera.2_of_2.cpp.obj │ │ │ │ ├── OWL360CamCapture.h.dep.json │ │ │ │ ├── OWL360CamCapture.h.obj │ │ │ │ ├── OWL360CameraModule.h.dep.json │ │ │ │ ├── OWL360CameraModule.h.obj │ │ │ │ ├── OWL360CaptureComponent.h.dep.json │ │ │ │ ├── OWL360CaptureComponent.h.obj │ │ │ │ ├── OWL360PostProcessSettings.h.dep.json │ │ │ │ ├── OWL360PostProcessSettings.h.obj │ │ │ │ ├── PostProcessHelpers.h.dep.json │ │ │ │ ├── PostProcessHelpers.h.obj │ │ │ │ ├── UnrealEditor-OWL360Camera-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-OWL360Camera-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-OWL360Camera-Win64-DebugGame.suppressed.exp │ │ │ │ └── UnrealEditor-OWL360Camera-Win64-DebugGame.suppressed.lib │ │ │ ├── OWLCamera │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.OWLCamera.h │ │ │ │ ├── Module.OWLCamera.cpp │ │ │ │ ├── Module.OWLCamera.cpp.dep.json │ │ │ │ ├── Module.OWLCamera.cpp.obj │ │ │ │ ├── OWLCameraModule.h.dep.json │ │ │ │ ├── OWLCameraModule.h.obj │ │ │ │ ├── OWLCaptureComponent.h.dep.json │ │ │ │ ├── OWLCaptureComponent.h.obj │ │ │ │ ├── OWLCineCamCapture.h.dep.json │ │ │ │ ├── OWLCineCamCapture.h.obj │ │ │ │ ├── OWLViewportCapture.h.dep.json │ │ │ │ ├── OWLViewportCapture.h.obj │ │ │ │ ├── UnrealEditor-OWLCamera-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-OWLCamera-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-OWLCamera-Win64-DebugGame.suppressed.exp │ │ │ │ └── UnrealEditor-OWLCamera-Win64-DebugGame.suppressed.lib │ │ │ ├── OWLComposure │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.OWLComposure.h │ │ │ │ ├── Module.OWLComposure.cpp │ │ │ │ ├── Module.OWLComposure.cpp.dep.json │ │ │ │ ├── Module.OWLComposure.cpp.obj │ │ │ │ ├── OWLBaseComp.h.dep.json │ │ │ │ ├── OWLBaseComp.h.obj │ │ │ │ ├── OWLCGCaptureComponent.h.dep.json │ │ │ │ ├── OWLCGCaptureComponent.h.obj │ │ │ │ ├── OWLCGElement.h.dep.json │ │ │ │ ├── OWLCGElement.h.obj │ │ │ │ ├── OWLCGMatte.h.dep.json │ │ │ │ ├── OWLCGMatte.h.obj │ │ │ │ ├── OWLComposure.h.dep.json │ │ │ │ ├── OWLComposure.h.obj │ │ │ │ ├── OWLNDIInputPass.h.dep.json │ │ │ │ ├── OWLNDIInputPass.h.obj │ │ │ │ ├── OWLNDIOutputPass.h.dep.json │ │ │ │ ├── OWLNDIOutputPass.h.obj │ │ │ │ ├── OWLPlaneTransformPass.h.dep.json │ │ │ │ ├── OWLPlaneTransformPass.h.obj │ │ │ │ ├── OWLScreenCaptureInputPass.h.dep.json │ │ │ │ ├── OWLScreenCaptureInputPass.h.obj │ │ │ │ ├── OWLSpoutInputPass.h.dep.json │ │ │ │ ├── OWLSpoutInputPass.h.obj │ │ │ │ ├── OWLSpoutOutputPass.h.dep.json │ │ │ │ ├── OWLSpoutOutputPass.h.obj │ │ │ │ ├── OWLUIInputPass.h.dep.json │ │ │ │ ├── OWLUIInputPass.h.obj │ │ │ │ ├── OWLVideoPlanePlacement.h.dep.json │ │ │ │ ├── OWLVideoPlanePlacement.h.obj │ │ │ │ ├── UnrealEditor-OWLComposure-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-OWLComposure-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-OWLComposure-Win64-DebugGame.suppressed.exp │ │ │ │ └── UnrealEditor-OWLComposure-Win64-DebugGame.suppressed.lib │ │ │ ├── OWLMedia │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.OWLMedia.h │ │ │ │ ├── FFFmpegWriteRunnable.h.dep.json │ │ │ │ ├── FFFmpegWriteRunnable.h.obj │ │ │ │ ├── FFastRunningMean.h.dep.json │ │ │ │ ├── FFastRunningMean.h.obj │ │ │ │ ├── FOWLEncoderProfiles.h.dep.json │ │ │ │ ├── FOWLEncoderProfiles.h.obj │ │ │ │ ├── Module.OWLMedia.cpp │ │ │ │ ├── Module.OWLMedia.cpp.dep.json │ │ │ │ ├── Module.OWLMedia.cpp.obj │ │ │ │ ├── OWLFFmpegOutput.h.dep.json │ │ │ │ ├── OWLFFmpegOutput.h.obj │ │ │ │ ├── OWLMediaModule.h.dep.json │ │ │ │ ├── OWLMediaModule.h.obj │ │ │ │ ├── OWLMediaOutput.h.dep.json │ │ │ │ ├── OWLMediaOutput.h.obj │ │ │ │ ├── OWLVideoEncoder.h.dep.json │ │ │ │ ├── OWLVideoEncoder.h.obj │ │ │ │ ├── UnrealEditor-OWLMedia-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-OWLMedia-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-OWLMedia-Win64-DebugGame.suppressed.exp │ │ │ │ └── UnrealEditor-OWLMedia-Win64-DebugGame.suppressed.lib │ │ │ ├── OWLNDI │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.OWLNDI.h │ │ │ │ ├── Module.OWLNDI.cpp │ │ │ │ ├── Module.OWLNDI.cpp.dep.json │ │ │ │ ├── Module.OWLNDI.cpp.obj │ │ │ │ ├── NDIEnums.h.dep.json │ │ │ │ ├── NDIEnums.h.obj │ │ │ │ ├── NDIModule.h.dep.json │ │ │ │ ├── NDIModule.h.obj │ │ │ │ ├── OWLNDIFinder.h.dep.json │ │ │ │ ├── OWLNDIFinder.h.obj │ │ │ │ ├── OWLNDIReceiver.h.dep.json │ │ │ │ ├── OWLNDIReceiver.h.obj │ │ │ │ ├── OWLNDIReceiverManager.h.dep.json │ │ │ │ ├── OWLNDIReceiverManager.h.obj │ │ │ │ ├── OWLNDISender.h.dep.json │ │ │ │ ├── OWLNDISender.h.obj │ │ │ │ ├── OWLNDISenderController.h.dep.json │ │ │ │ ├── OWLNDISenderController.h.obj │ │ │ │ ├── OWLNDISenderManager.h.dep.json │ │ │ │ ├── OWLNDISenderManager.h.obj │ │ │ │ ├── OWLNDISoundWave.h.dep.json │ │ │ │ ├── OWLNDISoundWave.h.obj │ │ │ │ ├── UnrealEditor-OWLNDI-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-OWLNDI-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-OWLNDI-Win64-DebugGame.suppressed.exp │ │ │ │ └── UnrealEditor-OWLNDI-Win64-DebugGame.suppressed.lib │ │ │ ├── OWLScreenCapture │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.OWLScreenCapture.h │ │ │ │ ├── FScreenCaptureHelpers.cpp.dep.json │ │ │ │ ├── FScreenCaptureHelpers.cpp.obj │ │ │ │ ├── FScreenCaptureHelpers.h.dep.json │ │ │ │ ├── FScreenCaptureHelpers.h.obj │ │ │ │ ├── OWLScreenCapture.cpp.dep.json │ │ │ │ ├── OWLScreenCapture.cpp.obj │ │ │ │ ├── OWLScreenCapture.gen.cpp.dep.json │ │ │ │ ├── OWLScreenCapture.gen.cpp.obj │ │ │ │ ├── OWLScreenCapture.h.dep.json │ │ │ │ ├── OWLScreenCapture.h.obj │ │ │ │ ├── OWLScreenCapture.init.gen.cpp.dep.json │ │ │ │ ├── OWLScreenCapture.init.gen.cpp.obj │ │ │ │ ├── OWLScreenCaptureModule.cpp.dep.json │ │ │ │ ├── OWLScreenCaptureModule.cpp.obj │ │ │ │ ├── OWLScreenCaptureModule.h.dep.json │ │ │ │ ├── OWLScreenCaptureModule.h.obj │ │ │ │ ├── OWLScreenCapturer.cpp.dep.json │ │ │ │ ├── OWLScreenCapturer.cpp.obj │ │ │ │ ├── OWLScreenCapturer.h.dep.json │ │ │ │ ├── OWLScreenCapturer.h.obj │ │ │ │ ├── OWLScreenCapturerOptions.gen.cpp.dep.json │ │ │ │ ├── OWLScreenCapturerOptions.gen.cpp.obj │ │ │ │ ├── OWLScreenCapturerOptions.h.dep.json │ │ │ │ ├── OWLScreenCapturerOptions.h.obj │ │ │ │ ├── UnrealEditor-OWLScreenCapture-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-OWLScreenCapture-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-OWLScreenCapture-Win64-DebugGame.suppressed.exp │ │ │ │ ├── UnrealEditor-OWLScreenCapture-Win64-DebugGame.suppressed.lib │ │ │ │ ├── WinRTCapture.cpp.dep.json │ │ │ │ ├── WinRTCapture.cpp.obj │ │ │ │ ├── WinRTCapture.h.dep.json │ │ │ │ └── WinRTCapture.h.obj │ │ │ ├── OWLSpout │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.OWLSpout.h │ │ │ │ ├── Module.OWLSpout.cpp │ │ │ │ ├── Module.OWLSpout.cpp.dep.json │ │ │ │ ├── Module.OWLSpout.cpp.obj │ │ │ │ ├── OWLSpoutD3D12Helper.h.dep.json │ │ │ │ ├── OWLSpoutD3D12Helper.h.obj │ │ │ │ ├── OWLSpoutReceiver.h.dep.json │ │ │ │ ├── OWLSpoutReceiver.h.obj │ │ │ │ ├── OWLSpoutReceiverManager.h.dep.json │ │ │ │ ├── OWLSpoutReceiverManager.h.obj │ │ │ │ ├── OWLSpoutSender.h.dep.json │ │ │ │ ├── OWLSpoutSender.h.obj │ │ │ │ ├── OWLSpoutSenderController.h.dep.json │ │ │ │ ├── OWLSpoutSenderController.h.obj │ │ │ │ ├── OWLSpoutSenderManager.h.dep.json │ │ │ │ ├── OWLSpoutSenderManager.h.obj │ │ │ │ ├── RTFormatHelper.h.dep.json │ │ │ │ ├── RTFormatHelper.h.obj │ │ │ │ ├── SpoutModule.h.dep.json │ │ │ │ ├── SpoutModule.h.obj │ │ │ │ ├── UnrealEditor-OWLSpout-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-OWLSpout-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-OWLSpout-Win64-DebugGame.suppressed.exp │ │ │ │ └── UnrealEditor-OWLSpout-Win64-DebugGame.suppressed.lib │ │ │ └── OWLVirtualWebcam │ │ │ │ ├── Default.rc2.res │ │ │ │ ├── Definitions.OWLVirtualWebcam.h │ │ │ │ ├── Module.OWLVirtualWebcam.cpp │ │ │ │ ├── Module.OWLVirtualWebcam.cpp.dep.json │ │ │ │ ├── Module.OWLVirtualWebcam.cpp.obj │ │ │ │ ├── OWLVirtualWebcamModule.h.dep.json │ │ │ │ ├── OWLVirtualWebcamModule.h.obj │ │ │ │ ├── OWLVirtualWebcamOutput.h.dep.json │ │ │ │ ├── OWLVirtualWebcamOutput.h.obj │ │ │ │ ├── UnrealEditor-OWLVirtualWebcam-Win64-DebugGame.exp │ │ │ │ ├── UnrealEditor-OWLVirtualWebcam-Win64-DebugGame.lib │ │ │ │ ├── UnrealEditor-OWLVirtualWebcam-Win64-DebugGame.suppressed.exp │ │ │ │ └── UnrealEditor-OWLVirtualWebcam-Win64-DebugGame.suppressed.lib │ │ └── Development │ │ │ ├── LivestreamingToolkit │ │ │ ├── AuthCoordinator.h.dep.json │ │ │ ├── AuthCoordinator.h.obj │ │ │ ├── AuthDelegates.h.dep.json │ │ │ ├── AuthDelegates.h.obj │ │ │ ├── AuthLoader.h.dep.json │ │ │ ├── AuthLoader.h.obj │ │ │ ├── AuthLogCategory.h.dep.json │ │ │ ├── AuthLogCategory.h.obj │ │ │ ├── AuthSharedSettings.h.dep.json │ │ │ ├── AuthSharedSettings.h.obj │ │ │ ├── AuthTools.h.dep.json │ │ │ ├── AuthTools.h.obj │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.LivestreamingToolkit.h │ │ │ ├── ImageArray.h.dep.json │ │ │ ├── ImageArray.h.obj │ │ │ ├── LivestreamingToolkitModule.h.dep.json │ │ │ ├── LivestreamingToolkitModule.h.obj │ │ │ ├── MeteredUsageWorker.h.dep.json │ │ │ ├── MeteredUsageWorker.h.obj │ │ │ ├── Module.LivestreamingToolkit.cpp │ │ │ ├── Module.LivestreamingToolkit.cpp.dep.json │ │ │ ├── Module.LivestreamingToolkit.cpp.obj │ │ │ ├── NDIInstallerLaunch.h.dep.json │ │ │ ├── NDIInstallerLaunch.h.obj │ │ │ ├── OWLBlueprintFunctionLibrary.h.dep.json │ │ │ ├── OWLBlueprintFunctionLibrary.h.obj │ │ │ ├── OWLHelpers.h.dep.json │ │ │ ├── OWLHelpers.h.obj │ │ │ ├── OWLImageInput.h.dep.json │ │ │ ├── OWLImageInput.h.obj │ │ │ ├── OWLJsonHelper.h.dep.json │ │ │ ├── OWLJsonHelper.h.obj │ │ │ ├── OWLSaveGame.h.dep.json │ │ │ ├── OWLSaveGame.h.obj │ │ │ ├── OWLSettings.h.dep.json │ │ │ ├── OWLSettings.h.obj │ │ │ ├── OWLTelemetry.h.dep.json │ │ │ ├── OWLTelemetry.h.obj │ │ │ ├── OWLWatermarkWriter.h.dep.json │ │ │ ├── OWLWatermarkWriter.h.obj │ │ │ ├── OWLWindowsPlatformMisc.h.dep.json │ │ │ ├── OWLWindowsPlatformMisc.h.obj │ │ │ ├── PluginUpdate.h.dep.json │ │ │ ├── PluginUpdate.h.obj │ │ │ ├── ServerConfigSaveGameData.h.dep.json │ │ │ ├── ServerConfigSaveGameData.h.obj │ │ │ ├── UnrealEditor-LivestreamingToolkit.exp │ │ │ ├── UnrealEditor-LivestreamingToolkit.lib │ │ │ ├── UnrealEditor-LivestreamingToolkit.suppressed.exp │ │ │ ├── UnrealEditor-LivestreamingToolkit.suppressed.lib │ │ │ ├── ViewportSettings.h.dep.json │ │ │ └── ViewportSettings.h.obj │ │ │ ├── LivestreamingToolkitEditor │ │ │ ├── CaptureComponentDetailsCustomisation.h.dep.json │ │ │ ├── CaptureComponentDetailsCustomisation.h.obj │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.LivestreamingToolkitEditor.h │ │ │ ├── LivestreamingToolkitEditor.h.dep.json │ │ │ ├── LivestreamingToolkitEditor.h.obj │ │ │ ├── LivestreamingToolkitEditorCommands.h.dep.json │ │ │ ├── LivestreamingToolkitEditorCommands.h.obj │ │ │ ├── LivestreamingToolkitEditorStyle.h.dep.json │ │ │ ├── LivestreamingToolkitEditorStyle.h.obj │ │ │ ├── MediaOutputDetailsCustomisation.h.dep.json │ │ │ ├── MediaOutputDetailsCustomisation.h.obj │ │ │ ├── Module.LivestreamingToolkitEditor.cpp │ │ │ ├── Module.LivestreamingToolkitEditor.cpp.dep.json │ │ │ ├── Module.LivestreamingToolkitEditor.cpp.obj │ │ │ ├── NDIActiveSenderNamesCustomisation.h.dep.json │ │ │ ├── NDIActiveSenderNamesCustomisation.h.obj │ │ │ ├── OWLNDISoundWaveFactory.h.dep.json │ │ │ ├── OWLNDISoundWaveFactory.h.obj │ │ │ ├── SLivestreamWizard.h.dep.json │ │ │ ├── SLivestreamWizard.h.obj │ │ │ ├── ScreenCaptureDetailsCustomisation.h.dep.json │ │ │ ├── ScreenCaptureDetailsCustomisation.h.obj │ │ │ ├── SpoutActiveSenderNamesCustomisation.h.dep.json │ │ │ ├── SpoutActiveSenderNamesCustomisation.h.obj │ │ │ ├── UnrealEditor-LivestreamingToolkitEditor.exp │ │ │ ├── UnrealEditor-LivestreamingToolkitEditor.lib │ │ │ ├── UnrealEditor-LivestreamingToolkitEditor.suppressed.exp │ │ │ └── UnrealEditor-LivestreamingToolkitEditor.suppressed.lib │ │ │ ├── LivestreamingToolkitShaders │ │ │ ├── BloomDownsampleArrayResource.h.dep.json │ │ │ ├── BloomDownsampleArrayResource.h.obj │ │ │ ├── BloomShaderDeclaration.h.dep.json │ │ │ ├── BloomShaderDeclaration.h.obj │ │ │ ├── Cube2EquiExecutor.h.dep.json │ │ │ ├── Cube2EquiExecutor.h.obj │ │ │ ├── Cube2EquiShaderDeclaration.h.dep.json │ │ │ ├── Cube2EquiShaderDeclaration.h.obj │ │ │ ├── CubeMapOutputDeclaration.h.dep.json │ │ │ ├── CubeMapOutputDeclaration.h.obj │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.LivestreamingToolkitShaders.h │ │ │ ├── DomeShaderDeclaration.h.dep.json │ │ │ ├── DomeShaderDeclaration.h.obj │ │ │ ├── LivestreamingToolkitShaders.h.dep.json │ │ │ ├── LivestreamingToolkitShaders.h.obj │ │ │ ├── MirrorDomeShaderDeclaration.h.dep.json │ │ │ ├── MirrorDomeShaderDeclaration.h.obj │ │ │ ├── Module.LivestreamingToolkitShaders.cpp │ │ │ ├── Module.LivestreamingToolkitShaders.cpp.dep.json │ │ │ ├── Module.LivestreamingToolkitShaders.cpp.obj │ │ │ ├── OWLMediaUtils.h.dep.json │ │ │ ├── OWLMediaUtils.h.obj │ │ │ ├── OWLTextureFormats.h.dep.json │ │ │ ├── OWLTextureFormats.h.obj │ │ │ ├── UnrealEditor-LivestreamingToolkitShaders.exp │ │ │ ├── UnrealEditor-LivestreamingToolkitShaders.lib │ │ │ ├── UnrealEditor-LivestreamingToolkitShaders.suppressed.exp │ │ │ └── UnrealEditor-LivestreamingToolkitShaders.suppressed.lib │ │ │ ├── OWL360Camera │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.OWL360Camera.h │ │ │ ├── Module.OWL360Camera.1_of_2.cpp │ │ │ ├── Module.OWL360Camera.1_of_2.cpp.dep.json │ │ │ ├── Module.OWL360Camera.1_of_2.cpp.obj │ │ │ ├── Module.OWL360Camera.2_of_2.cpp │ │ │ ├── Module.OWL360Camera.2_of_2.cpp.dep.json │ │ │ ├── Module.OWL360Camera.2_of_2.cpp.obj │ │ │ ├── OWL360CamCapture.h.dep.json │ │ │ ├── OWL360CamCapture.h.obj │ │ │ ├── OWL360CameraModule.h.dep.json │ │ │ ├── OWL360CameraModule.h.obj │ │ │ ├── OWL360CaptureComponent.h.dep.json │ │ │ ├── OWL360CaptureComponent.h.obj │ │ │ ├── OWL360PostProcessSettings.h.dep.json │ │ │ ├── OWL360PostProcessSettings.h.obj │ │ │ ├── PostProcessHelpers.h.dep.json │ │ │ ├── PostProcessHelpers.h.obj │ │ │ ├── UnrealEditor-OWL360Camera.exp │ │ │ ├── UnrealEditor-OWL360Camera.lib │ │ │ ├── UnrealEditor-OWL360Camera.suppressed.exp │ │ │ └── UnrealEditor-OWL360Camera.suppressed.lib │ │ │ ├── OWLCamera │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.OWLCamera.h │ │ │ ├── Module.OWLCamera.cpp │ │ │ ├── Module.OWLCamera.cpp.dep.json │ │ │ ├── Module.OWLCamera.cpp.obj │ │ │ ├── OWLCameraModule.h.dep.json │ │ │ ├── OWLCameraModule.h.obj │ │ │ ├── OWLCaptureComponent.h.dep.json │ │ │ ├── OWLCaptureComponent.h.obj │ │ │ ├── OWLCineCamCapture.h.dep.json │ │ │ ├── OWLCineCamCapture.h.obj │ │ │ ├── OWLViewportCapture.h.dep.json │ │ │ ├── OWLViewportCapture.h.obj │ │ │ ├── UnrealEditor-OWLCamera.exp │ │ │ ├── UnrealEditor-OWLCamera.lib │ │ │ ├── UnrealEditor-OWLCamera.suppressed.exp │ │ │ └── UnrealEditor-OWLCamera.suppressed.lib │ │ │ ├── OWLComposure │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.OWLComposure.h │ │ │ ├── Module.OWLComposure.cpp │ │ │ ├── Module.OWLComposure.cpp.dep.json │ │ │ ├── Module.OWLComposure.cpp.obj │ │ │ ├── OWLBaseComp.h.dep.json │ │ │ ├── OWLBaseComp.h.obj │ │ │ ├── OWLCGCaptureComponent.h.dep.json │ │ │ ├── OWLCGCaptureComponent.h.obj │ │ │ ├── OWLCGElement.h.dep.json │ │ │ ├── OWLCGElement.h.obj │ │ │ ├── OWLCGMatte.h.dep.json │ │ │ ├── OWLCGMatte.h.obj │ │ │ ├── OWLComposure.h.dep.json │ │ │ ├── OWLComposure.h.obj │ │ │ ├── OWLNDIInputPass.h.dep.json │ │ │ ├── OWLNDIInputPass.h.obj │ │ │ ├── OWLNDIOutputPass.h.dep.json │ │ │ ├── OWLNDIOutputPass.h.obj │ │ │ ├── OWLPlaneTransformPass.h.dep.json │ │ │ ├── OWLPlaneTransformPass.h.obj │ │ │ ├── OWLScreenCaptureInputPass.h.dep.json │ │ │ ├── OWLScreenCaptureInputPass.h.obj │ │ │ ├── OWLSpoutInputPass.h.dep.json │ │ │ ├── OWLSpoutInputPass.h.obj │ │ │ ├── OWLSpoutOutputPass.h.dep.json │ │ │ ├── OWLSpoutOutputPass.h.obj │ │ │ ├── OWLUIInputPass.h.dep.json │ │ │ ├── OWLUIInputPass.h.obj │ │ │ ├── OWLVideoPlanePlacement.h.dep.json │ │ │ ├── OWLVideoPlanePlacement.h.obj │ │ │ ├── UnrealEditor-OWLComposure.exp │ │ │ ├── UnrealEditor-OWLComposure.lib │ │ │ ├── UnrealEditor-OWLComposure.suppressed.exp │ │ │ └── UnrealEditor-OWLComposure.suppressed.lib │ │ │ ├── OWLMedia │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.OWLMedia.h │ │ │ ├── FFFmpegWriteRunnable.h.dep.json │ │ │ ├── FFFmpegWriteRunnable.h.obj │ │ │ ├── FFastRunningMean.h.dep.json │ │ │ ├── FFastRunningMean.h.obj │ │ │ ├── FOWLEncoderProfiles.h.dep.json │ │ │ ├── FOWLEncoderProfiles.h.obj │ │ │ ├── Module.OWLMedia.cpp │ │ │ ├── Module.OWLMedia.cpp.dep.json │ │ │ ├── Module.OWLMedia.cpp.obj │ │ │ ├── OWLFFmpegOutput.h.dep.json │ │ │ ├── OWLFFmpegOutput.h.obj │ │ │ ├── OWLMediaModule.h.dep.json │ │ │ ├── OWLMediaModule.h.obj │ │ │ ├── OWLMediaOutput.h.dep.json │ │ │ ├── OWLMediaOutput.h.obj │ │ │ ├── OWLVideoEncoder.h.dep.json │ │ │ ├── OWLVideoEncoder.h.obj │ │ │ ├── UnrealEditor-OWLMedia.exp │ │ │ ├── UnrealEditor-OWLMedia.lib │ │ │ ├── UnrealEditor-OWLMedia.suppressed.exp │ │ │ └── UnrealEditor-OWLMedia.suppressed.lib │ │ │ ├── OWLNDI │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.OWLNDI.h │ │ │ ├── Module.OWLNDI.cpp │ │ │ ├── Module.OWLNDI.cpp.dep.json │ │ │ ├── Module.OWLNDI.cpp.obj │ │ │ ├── NDIEnums.h.dep.json │ │ │ ├── NDIEnums.h.obj │ │ │ ├── NDIModule.h.dep.json │ │ │ ├── NDIModule.h.obj │ │ │ ├── OWLNDIFinder.h.dep.json │ │ │ ├── OWLNDIFinder.h.obj │ │ │ ├── OWLNDIReceiver.h.dep.json │ │ │ ├── OWLNDIReceiver.h.obj │ │ │ ├── OWLNDIReceiverManager.h.dep.json │ │ │ ├── OWLNDIReceiverManager.h.obj │ │ │ ├── OWLNDISender.h.dep.json │ │ │ ├── OWLNDISender.h.obj │ │ │ ├── OWLNDISenderController.h.dep.json │ │ │ ├── OWLNDISenderController.h.obj │ │ │ ├── OWLNDISenderManager.h.dep.json │ │ │ ├── OWLNDISenderManager.h.obj │ │ │ ├── OWLNDISoundWave.h.dep.json │ │ │ ├── OWLNDISoundWave.h.obj │ │ │ ├── UnrealEditor-OWLNDI.exp │ │ │ ├── UnrealEditor-OWLNDI.lib │ │ │ ├── UnrealEditor-OWLNDI.suppressed.exp │ │ │ └── UnrealEditor-OWLNDI.suppressed.lib │ │ │ ├── OWLScreenCapture │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.OWLScreenCapture.h │ │ │ ├── FScreenCaptureHelpers.cpp.dep.json │ │ │ ├── FScreenCaptureHelpers.cpp.obj │ │ │ ├── FScreenCaptureHelpers.h.dep.json │ │ │ ├── FScreenCaptureHelpers.h.obj │ │ │ ├── OWLScreenCapture.cpp.dep.json │ │ │ ├── OWLScreenCapture.cpp.obj │ │ │ ├── OWLScreenCapture.gen.cpp.dep.json │ │ │ ├── OWLScreenCapture.gen.cpp.obj │ │ │ ├── OWLScreenCapture.h.dep.json │ │ │ ├── OWLScreenCapture.h.obj │ │ │ ├── OWLScreenCapture.init.gen.cpp.dep.json │ │ │ ├── OWLScreenCapture.init.gen.cpp.obj │ │ │ ├── OWLScreenCaptureModule.cpp.dep.json │ │ │ ├── OWLScreenCaptureModule.cpp.obj │ │ │ ├── OWLScreenCaptureModule.h.dep.json │ │ │ ├── OWLScreenCaptureModule.h.obj │ │ │ ├── OWLScreenCapturer.cpp.dep.json │ │ │ ├── OWLScreenCapturer.cpp.obj │ │ │ ├── OWLScreenCapturer.h.dep.json │ │ │ ├── OWLScreenCapturer.h.obj │ │ │ ├── OWLScreenCapturerOptions.gen.cpp.dep.json │ │ │ ├── OWLScreenCapturerOptions.gen.cpp.obj │ │ │ ├── OWLScreenCapturerOptions.h.dep.json │ │ │ ├── OWLScreenCapturerOptions.h.obj │ │ │ ├── UnrealEditor-OWLScreenCapture.exp │ │ │ ├── UnrealEditor-OWLScreenCapture.lib │ │ │ ├── UnrealEditor-OWLScreenCapture.suppressed.exp │ │ │ ├── UnrealEditor-OWLScreenCapture.suppressed.lib │ │ │ ├── WinRTCapture.cpp.dep.json │ │ │ ├── WinRTCapture.cpp.obj │ │ │ ├── WinRTCapture.h.dep.json │ │ │ └── WinRTCapture.h.obj │ │ │ ├── OWLSpout │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.OWLSpout.h │ │ │ ├── Module.OWLSpout.cpp │ │ │ ├── Module.OWLSpout.cpp.dep.json │ │ │ ├── Module.OWLSpout.cpp.obj │ │ │ ├── OWLSpoutD3D12Helper.h.dep.json │ │ │ ├── OWLSpoutD3D12Helper.h.obj │ │ │ ├── OWLSpoutReceiver.h.dep.json │ │ │ ├── OWLSpoutReceiver.h.obj │ │ │ ├── OWLSpoutReceiverManager.h.dep.json │ │ │ ├── OWLSpoutReceiverManager.h.obj │ │ │ ├── OWLSpoutSender.h.dep.json │ │ │ ├── OWLSpoutSender.h.obj │ │ │ ├── OWLSpoutSenderController.h.dep.json │ │ │ ├── OWLSpoutSenderController.h.obj │ │ │ ├── OWLSpoutSenderManager.h.dep.json │ │ │ ├── OWLSpoutSenderManager.h.obj │ │ │ ├── RTFormatHelper.h.dep.json │ │ │ ├── RTFormatHelper.h.obj │ │ │ ├── SpoutModule.h.dep.json │ │ │ ├── SpoutModule.h.obj │ │ │ ├── UnrealEditor-OWLSpout.exp │ │ │ ├── UnrealEditor-OWLSpout.lib │ │ │ ├── UnrealEditor-OWLSpout.suppressed.exp │ │ │ └── UnrealEditor-OWLSpout.suppressed.lib │ │ │ └── OWLVirtualWebcam │ │ │ ├── Default.rc2.res │ │ │ ├── Definitions.OWLVirtualWebcam.h │ │ │ ├── Module.OWLVirtualWebcam.cpp │ │ │ ├── Module.OWLVirtualWebcam.cpp.dep.json │ │ │ ├── Module.OWLVirtualWebcam.cpp.obj │ │ │ ├── OWLVirtualWebcamModule.h.dep.json │ │ │ ├── OWLVirtualWebcamModule.h.obj │ │ │ ├── OWLVirtualWebcamOutput.h.dep.json │ │ │ ├── OWLVirtualWebcamOutput.h.obj │ │ │ ├── UnrealEditor-OWLVirtualWebcam.exp │ │ │ ├── UnrealEditor-OWLVirtualWebcam.lib │ │ │ ├── UnrealEditor-OWLVirtualWebcam.suppressed.exp │ │ │ └── UnrealEditor-OWLVirtualWebcam.suppressed.lib │ │ └── UnrealGame │ │ ├── Development │ │ ├── LivestreamingToolkit │ │ │ ├── AuthCoordinator.h.dep.json │ │ │ ├── AuthCoordinator.h.obj │ │ │ ├── AuthDelegates.h.dep.json │ │ │ ├── AuthDelegates.h.obj │ │ │ ├── AuthLoader.h.dep.json │ │ │ ├── AuthLoader.h.obj │ │ │ ├── AuthLogCategory.h.dep.json │ │ │ ├── AuthLogCategory.h.obj │ │ │ ├── AuthSharedSettings.h.dep.json │ │ │ ├── AuthSharedSettings.h.obj │ │ │ ├── AuthTools.h.dep.json │ │ │ ├── AuthTools.h.obj │ │ │ ├── Definitions.h │ │ │ ├── ImageArray.h.dep.json │ │ │ ├── ImageArray.h.obj │ │ │ ├── LivestreamingToolkitModule.h.dep.json │ │ │ ├── LivestreamingToolkitModule.h.obj │ │ │ ├── MeteredUsageWorker.h.dep.json │ │ │ ├── MeteredUsageWorker.h.obj │ │ │ ├── Module.LivestreamingToolkit.cpp │ │ │ ├── Module.LivestreamingToolkit.cpp.dep.json │ │ │ ├── Module.LivestreamingToolkit.cpp.obj │ │ │ ├── NDIInstallerLaunch.h.dep.json │ │ │ ├── NDIInstallerLaunch.h.obj │ │ │ ├── OWLBlueprintFunctionLibrary.h.dep.json │ │ │ ├── OWLBlueprintFunctionLibrary.h.obj │ │ │ ├── OWLHelpers.h.dep.json │ │ │ ├── OWLHelpers.h.obj │ │ │ ├── OWLImageInput.h.dep.json │ │ │ ├── OWLImageInput.h.obj │ │ │ ├── OWLJsonHelper.h.dep.json │ │ │ ├── OWLJsonHelper.h.obj │ │ │ ├── OWLSaveGame.h.dep.json │ │ │ ├── OWLSaveGame.h.obj │ │ │ ├── OWLSettings.h.dep.json │ │ │ ├── OWLSettings.h.obj │ │ │ ├── OWLTelemetry.h.dep.json │ │ │ ├── OWLTelemetry.h.obj │ │ │ ├── OWLWatermarkWriter.h.dep.json │ │ │ ├── OWLWatermarkWriter.h.obj │ │ │ ├── OWLWindowsPlatformMisc.h.dep.json │ │ │ ├── OWLWindowsPlatformMisc.h.obj │ │ │ ├── PluginUpdate.h.dep.json │ │ │ ├── PluginUpdate.h.obj │ │ │ ├── ServerConfigSaveGameData.h.dep.json │ │ │ ├── ServerConfigSaveGameData.h.obj │ │ │ ├── ViewportSettings.h.dep.json │ │ │ └── ViewportSettings.h.obj │ │ ├── LivestreamingToolkitShaders │ │ │ ├── BloomDownsampleArrayResource.h.dep.json │ │ │ ├── BloomDownsampleArrayResource.h.obj │ │ │ ├── BloomShaderDeclaration.h.dep.json │ │ │ ├── BloomShaderDeclaration.h.obj │ │ │ ├── Cube2EquiExecutor.h.dep.json │ │ │ ├── Cube2EquiExecutor.h.obj │ │ │ ├── Cube2EquiShaderDeclaration.h.dep.json │ │ │ ├── Cube2EquiShaderDeclaration.h.obj │ │ │ ├── CubeMapOutputDeclaration.h.dep.json │ │ │ ├── CubeMapOutputDeclaration.h.obj │ │ │ ├── Definitions.h │ │ │ ├── DomeShaderDeclaration.h.dep.json │ │ │ ├── DomeShaderDeclaration.h.obj │ │ │ ├── LivestreamingToolkitShaders.h.dep.json │ │ │ ├── LivestreamingToolkitShaders.h.obj │ │ │ ├── MirrorDomeShaderDeclaration.h.dep.json │ │ │ ├── MirrorDomeShaderDeclaration.h.obj │ │ │ ├── Module.LivestreamingToolkitShaders.cpp │ │ │ ├── Module.LivestreamingToolkitShaders.cpp.dep.json │ │ │ ├── Module.LivestreamingToolkitShaders.cpp.obj │ │ │ ├── OWLMediaUtils.h.dep.json │ │ │ ├── OWLMediaUtils.h.obj │ │ │ ├── OWLTextureFormats.h.dep.json │ │ │ └── OWLTextureFormats.h.obj │ │ ├── OWL360Camera │ │ │ ├── Definitions.h │ │ │ ├── Module.OWL360Camera.1_of_2.cpp │ │ │ ├── Module.OWL360Camera.1_of_2.cpp.dep.json │ │ │ ├── Module.OWL360Camera.1_of_2.cpp.obj │ │ │ ├── Module.OWL360Camera.2_of_2.cpp │ │ │ ├── Module.OWL360Camera.2_of_2.cpp.dep.json │ │ │ ├── Module.OWL360Camera.2_of_2.cpp.obj │ │ │ ├── OWL360CamCapture.h.dep.json │ │ │ ├── OWL360CamCapture.h.obj │ │ │ ├── OWL360CameraModule.h.dep.json │ │ │ ├── OWL360CameraModule.h.obj │ │ │ ├── OWL360CaptureComponent.h.dep.json │ │ │ ├── OWL360CaptureComponent.h.obj │ │ │ ├── OWL360PostProcessSettings.h.dep.json │ │ │ ├── OWL360PostProcessSettings.h.obj │ │ │ ├── PostProcessHelpers.h.dep.json │ │ │ └── PostProcessHelpers.h.obj │ │ ├── OWLCamera │ │ │ ├── Definitions.h │ │ │ ├── Module.OWLCamera.cpp │ │ │ ├── Module.OWLCamera.cpp.dep.json │ │ │ ├── Module.OWLCamera.cpp.obj │ │ │ ├── OWLCameraModule.h.dep.json │ │ │ ├── OWLCameraModule.h.obj │ │ │ ├── OWLCaptureComponent.h.dep.json │ │ │ ├── OWLCaptureComponent.h.obj │ │ │ ├── OWLCineCamCapture.h.dep.json │ │ │ ├── OWLCineCamCapture.h.obj │ │ │ ├── OWLViewportCapture.h.dep.json │ │ │ └── OWLViewportCapture.h.obj │ │ ├── OWLComposure │ │ │ ├── Definitions.h │ │ │ ├── Module.OWLComposure.cpp │ │ │ ├── Module.OWLComposure.cpp.dep.json │ │ │ ├── Module.OWLComposure.cpp.obj │ │ │ ├── OWLBaseComp.h.dep.json │ │ │ ├── OWLBaseComp.h.obj │ │ │ ├── OWLCGCaptureComponent.h.dep.json │ │ │ ├── OWLCGCaptureComponent.h.obj │ │ │ ├── OWLCGElement.h.dep.json │ │ │ ├── OWLCGElement.h.obj │ │ │ ├── OWLCGMatte.h.dep.json │ │ │ ├── OWLCGMatte.h.obj │ │ │ ├── OWLComposure.h.dep.json │ │ │ ├── OWLComposure.h.obj │ │ │ ├── OWLNDIInputPass.h.dep.json │ │ │ ├── OWLNDIInputPass.h.obj │ │ │ ├── OWLNDIOutputPass.h.dep.json │ │ │ ├── OWLNDIOutputPass.h.obj │ │ │ ├── OWLPlaneTransformPass.h.dep.json │ │ │ ├── OWLPlaneTransformPass.h.obj │ │ │ ├── OWLScreenCaptureInputPass.h.dep.json │ │ │ ├── OWLScreenCaptureInputPass.h.obj │ │ │ ├── OWLSpoutInputPass.h.dep.json │ │ │ ├── OWLSpoutInputPass.h.obj │ │ │ ├── OWLSpoutOutputPass.h.dep.json │ │ │ ├── OWLSpoutOutputPass.h.obj │ │ │ ├── OWLUIInputPass.h.dep.json │ │ │ ├── OWLUIInputPass.h.obj │ │ │ ├── OWLVideoPlanePlacement.h.dep.json │ │ │ └── OWLVideoPlanePlacement.h.obj │ │ ├── OWLMedia │ │ │ ├── Definitions.h │ │ │ ├── FFFmpegWriteRunnable.h.dep.json │ │ │ ├── FFFmpegWriteRunnable.h.obj │ │ │ ├── FFastRunningMean.h.dep.json │ │ │ ├── FFastRunningMean.h.obj │ │ │ ├── FOWLEncoderProfiles.h.dep.json │ │ │ ├── FOWLEncoderProfiles.h.obj │ │ │ ├── Module.OWLMedia.cpp │ │ │ ├── Module.OWLMedia.cpp.dep.json │ │ │ ├── Module.OWLMedia.cpp.obj │ │ │ ├── OWLFFmpegOutput.h.dep.json │ │ │ ├── OWLFFmpegOutput.h.obj │ │ │ ├── OWLMediaModule.h.dep.json │ │ │ ├── OWLMediaModule.h.obj │ │ │ ├── OWLMediaOutput.h.dep.json │ │ │ ├── OWLMediaOutput.h.obj │ │ │ ├── OWLVideoEncoder.h.dep.json │ │ │ └── OWLVideoEncoder.h.obj │ │ ├── OWLNDI │ │ │ ├── Definitions.h │ │ │ ├── Module.OWLNDI.cpp │ │ │ ├── Module.OWLNDI.cpp.dep.json │ │ │ ├── Module.OWLNDI.cpp.obj │ │ │ ├── NDIEnums.h.dep.json │ │ │ ├── NDIEnums.h.obj │ │ │ ├── NDIModule.h.dep.json │ │ │ ├── NDIModule.h.obj │ │ │ ├── OWLNDIFinder.h.dep.json │ │ │ ├── OWLNDIFinder.h.obj │ │ │ ├── OWLNDIReceiver.h.dep.json │ │ │ ├── OWLNDIReceiver.h.obj │ │ │ ├── OWLNDIReceiverManager.h.dep.json │ │ │ ├── OWLNDIReceiverManager.h.obj │ │ │ ├── OWLNDISender.h.dep.json │ │ │ ├── OWLNDISender.h.obj │ │ │ ├── OWLNDISenderController.h.dep.json │ │ │ ├── OWLNDISenderController.h.obj │ │ │ ├── OWLNDISenderManager.h.dep.json │ │ │ ├── OWLNDISenderManager.h.obj │ │ │ ├── OWLNDISoundWave.h.dep.json │ │ │ └── OWLNDISoundWave.h.obj │ │ ├── OWLScreenCapture │ │ │ ├── Definitions.h │ │ │ ├── FScreenCaptureHelpers.cpp.dep.json │ │ │ ├── FScreenCaptureHelpers.cpp.obj │ │ │ ├── FScreenCaptureHelpers.h.dep.json │ │ │ ├── FScreenCaptureHelpers.h.obj │ │ │ ├── OWLScreenCapture.cpp.dep.json │ │ │ ├── OWLScreenCapture.cpp.obj │ │ │ ├── OWLScreenCapture.gen.cpp.dep.json │ │ │ ├── OWLScreenCapture.gen.cpp.obj │ │ │ ├── OWLScreenCapture.h.dep.json │ │ │ ├── OWLScreenCapture.h.obj │ │ │ ├── OWLScreenCapture.init.gen.cpp.dep.json │ │ │ ├── OWLScreenCapture.init.gen.cpp.obj │ │ │ ├── OWLScreenCaptureModule.cpp.dep.json │ │ │ ├── OWLScreenCaptureModule.cpp.obj │ │ │ ├── OWLScreenCaptureModule.h.dep.json │ │ │ ├── OWLScreenCaptureModule.h.obj │ │ │ ├── OWLScreenCapturer.cpp.dep.json │ │ │ ├── OWLScreenCapturer.cpp.obj │ │ │ ├── OWLScreenCapturer.h.dep.json │ │ │ ├── OWLScreenCapturer.h.obj │ │ │ ├── OWLScreenCapturerOptions.gen.cpp.dep.json │ │ │ ├── OWLScreenCapturerOptions.gen.cpp.obj │ │ │ ├── OWLScreenCapturerOptions.h.dep.json │ │ │ ├── OWLScreenCapturerOptions.h.obj │ │ │ ├── WinRTCapture.cpp.dep.json │ │ │ ├── WinRTCapture.cpp.obj │ │ │ ├── WinRTCapture.h.dep.json │ │ │ └── WinRTCapture.h.obj │ │ ├── OWLSpout │ │ │ ├── Definitions.h │ │ │ ├── Module.OWLSpout.cpp │ │ │ ├── Module.OWLSpout.cpp.dep.json │ │ │ ├── Module.OWLSpout.cpp.obj │ │ │ ├── OWLSpoutD3D12Helper.h.dep.json │ │ │ ├── OWLSpoutD3D12Helper.h.obj │ │ │ ├── OWLSpoutReceiver.h.dep.json │ │ │ ├── OWLSpoutReceiver.h.obj │ │ │ ├── OWLSpoutReceiverManager.h.dep.json │ │ │ ├── OWLSpoutReceiverManager.h.obj │ │ │ ├── OWLSpoutSender.h.dep.json │ │ │ ├── OWLSpoutSender.h.obj │ │ │ ├── OWLSpoutSenderController.h.dep.json │ │ │ ├── OWLSpoutSenderController.h.obj │ │ │ ├── OWLSpoutSenderManager.h.dep.json │ │ │ ├── OWLSpoutSenderManager.h.obj │ │ │ ├── RTFormatHelper.h.dep.json │ │ │ ├── RTFormatHelper.h.obj │ │ │ ├── SpoutModule.h.dep.json │ │ │ └── SpoutModule.h.obj │ │ └── OWLVirtualWebcam │ │ │ ├── Definitions.h │ │ │ ├── Module.OWLVirtualWebcam.cpp │ │ │ ├── Module.OWLVirtualWebcam.cpp.dep.json │ │ │ ├── Module.OWLVirtualWebcam.cpp.obj │ │ │ ├── OWLVirtualWebcamModule.h.dep.json │ │ │ ├── OWLVirtualWebcamModule.h.obj │ │ │ ├── OWLVirtualWebcamOutput.h.dep.json │ │ │ └── OWLVirtualWebcamOutput.h.obj │ │ └── Shipping │ │ ├── LivestreamingToolkit │ │ ├── AuthCoordinator.h.dep.json │ │ ├── AuthCoordinator.h.obj │ │ ├── AuthDelegates.h.dep.json │ │ ├── AuthDelegates.h.obj │ │ ├── AuthLoader.h.dep.json │ │ ├── AuthLoader.h.obj │ │ ├── AuthLogCategory.h.dep.json │ │ ├── AuthLogCategory.h.obj │ │ ├── AuthSharedSettings.h.dep.json │ │ ├── AuthSharedSettings.h.obj │ │ ├── AuthTools.h.dep.json │ │ ├── AuthTools.h.obj │ │ ├── Definitions.h │ │ ├── ImageArray.h.dep.json │ │ ├── ImageArray.h.obj │ │ ├── LivestreamingToolkitModule.h.dep.json │ │ ├── LivestreamingToolkitModule.h.obj │ │ ├── MeteredUsageWorker.h.dep.json │ │ ├── MeteredUsageWorker.h.obj │ │ ├── Module.LivestreamingToolkit.cpp │ │ ├── Module.LivestreamingToolkit.cpp.dep.json │ │ ├── Module.LivestreamingToolkit.cpp.obj │ │ ├── NDIInstallerLaunch.h.dep.json │ │ ├── NDIInstallerLaunch.h.obj │ │ ├── OWLBlueprintFunctionLibrary.h.dep.json │ │ ├── OWLBlueprintFunctionLibrary.h.obj │ │ ├── OWLHelpers.h.dep.json │ │ ├── OWLHelpers.h.obj │ │ ├── OWLImageInput.h.dep.json │ │ ├── OWLImageInput.h.obj │ │ ├── OWLJsonHelper.h.dep.json │ │ ├── OWLJsonHelper.h.obj │ │ ├── OWLSaveGame.h.dep.json │ │ ├── OWLSaveGame.h.obj │ │ ├── OWLSettings.h.dep.json │ │ ├── OWLSettings.h.obj │ │ ├── OWLTelemetry.h.dep.json │ │ ├── OWLTelemetry.h.obj │ │ ├── OWLWatermarkWriter.h.dep.json │ │ ├── OWLWatermarkWriter.h.obj │ │ ├── OWLWindowsPlatformMisc.h.dep.json │ │ ├── OWLWindowsPlatformMisc.h.obj │ │ ├── PluginUpdate.h.dep.json │ │ ├── PluginUpdate.h.obj │ │ ├── ServerConfigSaveGameData.h.dep.json │ │ ├── ServerConfigSaveGameData.h.obj │ │ ├── ViewportSettings.h.dep.json │ │ └── ViewportSettings.h.obj │ │ ├── LivestreamingToolkitShaders │ │ ├── BloomDownsampleArrayResource.h.dep.json │ │ ├── BloomDownsampleArrayResource.h.obj │ │ ├── BloomShaderDeclaration.h.dep.json │ │ ├── BloomShaderDeclaration.h.obj │ │ ├── Cube2EquiExecutor.h.dep.json │ │ ├── Cube2EquiExecutor.h.obj │ │ ├── Cube2EquiShaderDeclaration.h.dep.json │ │ ├── Cube2EquiShaderDeclaration.h.obj │ │ ├── CubeMapOutputDeclaration.h.dep.json │ │ ├── CubeMapOutputDeclaration.h.obj │ │ ├── Definitions.h │ │ ├── DomeShaderDeclaration.h.dep.json │ │ ├── DomeShaderDeclaration.h.obj │ │ ├── LivestreamingToolkitShaders.h.dep.json │ │ ├── LivestreamingToolkitShaders.h.obj │ │ ├── MirrorDomeShaderDeclaration.h.dep.json │ │ ├── MirrorDomeShaderDeclaration.h.obj │ │ ├── Module.LivestreamingToolkitShaders.cpp │ │ ├── Module.LivestreamingToolkitShaders.cpp.dep.json │ │ ├── Module.LivestreamingToolkitShaders.cpp.obj │ │ ├── OWLMediaUtils.h.dep.json │ │ ├── OWLMediaUtils.h.obj │ │ ├── OWLTextureFormats.h.dep.json │ │ └── OWLTextureFormats.h.obj │ │ ├── OWL360Camera │ │ ├── Definitions.h │ │ ├── Module.OWL360Camera.1_of_2.cpp │ │ ├── Module.OWL360Camera.1_of_2.cpp.dep.json │ │ ├── Module.OWL360Camera.1_of_2.cpp.obj │ │ ├── Module.OWL360Camera.2_of_2.cpp │ │ ├── Module.OWL360Camera.2_of_2.cpp.dep.json │ │ ├── Module.OWL360Camera.2_of_2.cpp.obj │ │ ├── OWL360CamCapture.h.dep.json │ │ ├── OWL360CamCapture.h.obj │ │ ├── OWL360CameraModule.h.dep.json │ │ ├── OWL360CameraModule.h.obj │ │ ├── OWL360CaptureComponent.h.dep.json │ │ ├── OWL360CaptureComponent.h.obj │ │ ├── OWL360PostProcessSettings.h.dep.json │ │ ├── OWL360PostProcessSettings.h.obj │ │ ├── PostProcessHelpers.h.dep.json │ │ └── PostProcessHelpers.h.obj │ │ ├── OWLCamera │ │ ├── Definitions.h │ │ ├── Module.OWLCamera.cpp │ │ ├── Module.OWLCamera.cpp.dep.json │ │ ├── Module.OWLCamera.cpp.obj │ │ ├── OWLCameraModule.h.dep.json │ │ ├── OWLCameraModule.h.obj │ │ ├── OWLCaptureComponent.h.dep.json │ │ ├── OWLCaptureComponent.h.obj │ │ ├── OWLCineCamCapture.h.dep.json │ │ ├── OWLCineCamCapture.h.obj │ │ ├── OWLViewportCapture.h.dep.json │ │ └── OWLViewportCapture.h.obj │ │ ├── OWLComposure │ │ ├── Definitions.h │ │ ├── Module.OWLComposure.cpp │ │ ├── Module.OWLComposure.cpp.dep.json │ │ ├── Module.OWLComposure.cpp.obj │ │ ├── OWLBaseComp.h.dep.json │ │ ├── OWLBaseComp.h.obj │ │ ├── OWLCGCaptureComponent.h.dep.json │ │ ├── OWLCGCaptureComponent.h.obj │ │ ├── OWLCGElement.h.dep.json │ │ ├── OWLCGElement.h.obj │ │ ├── OWLCGMatte.h.dep.json │ │ ├── OWLCGMatte.h.obj │ │ ├── OWLComposure.h.dep.json │ │ ├── OWLComposure.h.obj │ │ ├── OWLNDIInputPass.h.dep.json │ │ ├── OWLNDIInputPass.h.obj │ │ ├── OWLNDIOutputPass.h.dep.json │ │ ├── OWLNDIOutputPass.h.obj │ │ ├── OWLPlaneTransformPass.h.dep.json │ │ ├── OWLPlaneTransformPass.h.obj │ │ ├── OWLScreenCaptureInputPass.h.dep.json │ │ ├── OWLScreenCaptureInputPass.h.obj │ │ ├── OWLSpoutInputPass.h.dep.json │ │ ├── OWLSpoutInputPass.h.obj │ │ ├── OWLSpoutOutputPass.h.dep.json │ │ ├── OWLSpoutOutputPass.h.obj │ │ ├── OWLUIInputPass.h.dep.json │ │ ├── OWLUIInputPass.h.obj │ │ ├── OWLVideoPlanePlacement.h.dep.json │ │ └── OWLVideoPlanePlacement.h.obj │ │ ├── OWLMedia │ │ ├── Definitions.h │ │ ├── FFFmpegWriteRunnable.h.dep.json │ │ ├── FFFmpegWriteRunnable.h.obj │ │ ├── FFastRunningMean.h.dep.json │ │ ├── FFastRunningMean.h.obj │ │ ├── FOWLEncoderProfiles.h.dep.json │ │ ├── FOWLEncoderProfiles.h.obj │ │ ├── Module.OWLMedia.cpp │ │ ├── Module.OWLMedia.cpp.dep.json │ │ ├── Module.OWLMedia.cpp.obj │ │ ├── OWLFFmpegOutput.h.dep.json │ │ ├── OWLFFmpegOutput.h.obj │ │ ├── OWLMediaModule.h.dep.json │ │ ├── OWLMediaModule.h.obj │ │ ├── OWLMediaOutput.h.dep.json │ │ ├── OWLMediaOutput.h.obj │ │ ├── OWLVideoEncoder.h.dep.json │ │ └── OWLVideoEncoder.h.obj │ │ ├── OWLNDI │ │ ├── Definitions.h │ │ ├── Module.OWLNDI.cpp │ │ ├── Module.OWLNDI.cpp.dep.json │ │ ├── Module.OWLNDI.cpp.obj │ │ ├── NDIEnums.h.dep.json │ │ ├── NDIEnums.h.obj │ │ ├── NDIModule.h.dep.json │ │ ├── NDIModule.h.obj │ │ ├── OWLNDIFinder.h.dep.json │ │ ├── OWLNDIFinder.h.obj │ │ ├── OWLNDIReceiver.h.dep.json │ │ ├── OWLNDIReceiver.h.obj │ │ ├── OWLNDIReceiverManager.h.dep.json │ │ ├── OWLNDIReceiverManager.h.obj │ │ ├── OWLNDISender.h.dep.json │ │ ├── OWLNDISender.h.obj │ │ ├── OWLNDISenderController.h.dep.json │ │ ├── OWLNDISenderController.h.obj │ │ ├── OWLNDISenderManager.h.dep.json │ │ ├── OWLNDISenderManager.h.obj │ │ ├── OWLNDISoundWave.h.dep.json │ │ └── OWLNDISoundWave.h.obj │ │ ├── OWLScreenCapture │ │ ├── Definitions.h │ │ ├── FScreenCaptureHelpers.cpp.dep.json │ │ ├── FScreenCaptureHelpers.cpp.obj │ │ ├── FScreenCaptureHelpers.h.dep.json │ │ ├── FScreenCaptureHelpers.h.obj │ │ ├── OWLScreenCapture.cpp.dep.json │ │ ├── OWLScreenCapture.cpp.obj │ │ ├── OWLScreenCapture.gen.cpp.dep.json │ │ ├── OWLScreenCapture.gen.cpp.obj │ │ ├── OWLScreenCapture.h.dep.json │ │ ├── OWLScreenCapture.h.obj │ │ ├── OWLScreenCapture.init.gen.cpp.dep.json │ │ ├── OWLScreenCapture.init.gen.cpp.obj │ │ ├── OWLScreenCaptureModule.cpp.dep.json │ │ ├── OWLScreenCaptureModule.cpp.obj │ │ ├── OWLScreenCaptureModule.h.dep.json │ │ ├── OWLScreenCaptureModule.h.obj │ │ ├── OWLScreenCapturer.cpp.dep.json │ │ ├── OWLScreenCapturer.cpp.obj │ │ ├── OWLScreenCapturer.h.dep.json │ │ ├── OWLScreenCapturer.h.obj │ │ ├── OWLScreenCapturerOptions.gen.cpp.dep.json │ │ ├── OWLScreenCapturerOptions.gen.cpp.obj │ │ ├── OWLScreenCapturerOptions.h.dep.json │ │ ├── OWLScreenCapturerOptions.h.obj │ │ ├── WinRTCapture.cpp.dep.json │ │ ├── WinRTCapture.cpp.obj │ │ ├── WinRTCapture.h.dep.json │ │ └── WinRTCapture.h.obj │ │ ├── OWLSpout │ │ ├── Definitions.h │ │ ├── Module.OWLSpout.cpp │ │ ├── Module.OWLSpout.cpp.dep.json │ │ ├── Module.OWLSpout.cpp.obj │ │ ├── OWLSpoutD3D12Helper.h.dep.json │ │ ├── OWLSpoutD3D12Helper.h.obj │ │ ├── OWLSpoutReceiver.h.dep.json │ │ ├── OWLSpoutReceiver.h.obj │ │ ├── OWLSpoutReceiverManager.h.dep.json │ │ ├── OWLSpoutReceiverManager.h.obj │ │ ├── OWLSpoutSender.h.dep.json │ │ ├── OWLSpoutSender.h.obj │ │ ├── OWLSpoutSenderController.h.dep.json │ │ ├── OWLSpoutSenderController.h.obj │ │ ├── OWLSpoutSenderManager.h.dep.json │ │ ├── OWLSpoutSenderManager.h.obj │ │ ├── RTFormatHelper.h.dep.json │ │ ├── RTFormatHelper.h.obj │ │ ├── SpoutModule.h.dep.json │ │ └── SpoutModule.h.obj │ │ └── OWLVirtualWebcam │ │ ├── Definitions.h │ │ ├── Module.OWLVirtualWebcam.cpp │ │ ├── Module.OWLVirtualWebcam.cpp.dep.json │ │ ├── Module.OWLVirtualWebcam.cpp.obj │ │ ├── OWLVirtualWebcamModule.h.dep.json │ │ ├── OWLVirtualWebcamModule.h.obj │ │ ├── OWLVirtualWebcamOutput.h.dep.json │ │ └── OWLVirtualWebcamOutput.h.obj │ ├── OWLLivestreamingToolkit.uplugin │ ├── OpenSourceLicenses.txt │ ├── Resources │ ├── ClassIcons │ │ ├── 360Capture_16x.png │ │ ├── 360Capture_64x.png │ │ ├── CGElement_16x.png │ │ ├── CGElement_64x.png │ │ ├── CGElement_src.png │ │ ├── CGMatte_16x.png │ │ ├── CGMatte_64x.png │ │ ├── CineCapture_16x.png │ │ ├── CineCapture_64x.png │ │ ├── MediaOutput_16x.png │ │ ├── MediaOutput_64x.png │ │ ├── NDI_16x.png │ │ ├── NDI_64x.png │ │ ├── ScreenCapture_16x.png │ │ ├── ScreenCapture_64x.png │ │ ├── SpoutReceiver_16x.png │ │ ├── SpoutReceiver_64x.png │ │ ├── SpoutSender_16x.png │ │ ├── SpoutSender_64x.png │ │ ├── VideoPlacementPlane_16x.png │ │ ├── VideoPlacementPlane_64x.png │ │ ├── VideoPlacementPlane_src.png │ │ ├── ViewportCapture_16x.png │ │ ├── ViewportCapture_64x.png │ │ ├── VirtualCam_16x.png │ │ ├── VirtualCam_64x.png │ │ └── icon_MediaPlate_16x.png │ ├── Icon128.png │ ├── Logo │ │ ├── Logo_40x.png │ │ ├── Logo_80x.png │ │ └── Logo_full.png │ └── Wizard │ │ ├── Wizard_128x.png │ │ ├── Wizard_16x.png │ │ └── Wizard_250x.png │ ├── Shaders │ └── Private │ │ ├── OWL360Shader.usf │ │ └── OWLMediaUtils.usf │ ├── Source │ ├── LivestreamingToolkit │ │ ├── LivestreamingToolkit.Build.cs │ │ └── Public │ │ │ ├── LivestreamingToolkitModule.h │ │ │ ├── OWLBlueprintFunctionLibrary.h │ │ │ ├── OWLSettings.h │ │ │ └── Tools │ │ │ ├── OWLHelpers.h │ │ │ ├── OWLImageInput.h │ │ │ ├── OWLJsonHelper.h │ │ │ └── OWLWatermarkWriter.h │ ├── LivestreamingToolkitEditor │ │ ├── LivestreamingToolkitEditor.Build.cs │ │ └── Public │ │ │ ├── DetailCustomisations │ │ │ ├── CaptureComponentDetailsCustomisation.h │ │ │ ├── MediaOutputDetailsCustomisation.h │ │ │ ├── NDIActiveSenderNamesCustomisation.h │ │ │ ├── ScreenCaptureDetailsCustomisation.h │ │ │ └── SpoutActiveSenderNamesCustomisation.h │ │ │ ├── Factories │ │ │ └── OWLNDISoundWaveFactory.h │ │ │ ├── LivestreamingToolkitEditor.h │ │ │ ├── LivestreamingToolkitEditorCommands.h │ │ │ ├── LivestreamingToolkitEditorStyle.h │ │ │ └── SLivestreamWizard.h │ ├── LivestreamingToolkitShaders │ │ ├── LivestreamingToolkitShaders.Build.cs │ │ └── Public │ │ │ ├── LivestreamingToolkitShaders.h │ │ │ ├── OWLMediaUtils.h │ │ │ └── OWLTextureFormats.h │ ├── OWL360Camera │ │ ├── OWL360Camera.Build.cs │ │ └── Public │ │ │ ├── OWL360CamCapture.h │ │ │ ├── OWL360CameraModule.h │ │ │ ├── OWL360CaptureComponent.h │ │ │ └── PostProcessing │ │ │ ├── OWL360PostProcessSettings.h │ │ │ └── PostProcessHelpers.h │ ├── OWLCamera │ │ ├── OWLCamera.Build.cs │ │ └── Public │ │ │ ├── OWLCameraModule.h │ │ │ ├── OWLCaptureComponent.h │ │ │ ├── OWLCineCamCapture.h │ │ │ └── OWLViewportCapture.h │ ├── OWLComposure │ │ ├── OWLComposure.Build.cs │ │ └── Public │ │ │ ├── OWLBaseComp.h │ │ │ ├── OWLCGCaptureComponent.h │ │ │ ├── OWLCGElement.h │ │ │ ├── OWLCGMatte.h │ │ │ ├── OWLComposure.h │ │ │ ├── OWLNDIInputPass.h │ │ │ ├── OWLNDIOutputPass.h │ │ │ ├── OWLPlaneTransformPass.h │ │ │ ├── OWLScreenCaptureInputPass.h │ │ │ ├── OWLSpoutInputPass.h │ │ │ ├── OWLSpoutOutputPass.h │ │ │ ├── OWLUIInputPass.h │ │ │ └── OWLVideoPlanePlacement.h │ ├── OWLMedia │ │ ├── OWLMedia.Build.cs │ │ └── Public │ │ │ ├── FFastRunningMean.h │ │ │ ├── FOWLEncoderProfiles.h │ │ │ ├── OWLFFmpegOutput.h │ │ │ ├── OWLMediaModule.h │ │ │ ├── OWLMediaOutput.h │ │ │ └── OWLVideoEncoder.h │ ├── OWLNDI │ │ ├── OWLNDI.Build.cs │ │ └── Public │ │ │ ├── NDIEnums.h │ │ │ ├── NDIModule.h │ │ │ ├── OWLNDIFinder.h │ │ │ ├── OWLNDIReceiver.h │ │ │ ├── OWLNDIReceiverManager.h │ │ │ ├── OWLNDISender.h │ │ │ ├── OWLNDISenderController.h │ │ │ ├── OWLNDISenderManager.h │ │ │ └── OWLNDISoundWave.h │ ├── OWLScreenCapture │ │ ├── OWLScreenCapture.Build.cs │ │ └── Public │ │ │ ├── FScreenCaptureHelpers.h │ │ │ ├── OWLScreenCapture.h │ │ │ ├── OWLScreenCaptureModule.h │ │ │ ├── OWLScreenCapturerOptions.h │ │ │ └── WinRTCapture.h │ ├── OWLSpout │ │ ├── OWLSpout.Build.cs │ │ └── Public │ │ │ ├── OWLSpoutReceiver.h │ │ │ ├── OWLSpoutReceiverManager.h │ │ │ ├── OWLSpoutSender.h │ │ │ ├── OWLSpoutSenderController.h │ │ │ ├── OWLSpoutSenderManager.h │ │ │ └── SpoutModule.h │ ├── OWLVirtualWebcam │ │ ├── OWLVirtualWebcam.Build.cs │ │ └── Public │ │ │ ├── OWLVirtualWebcamModule.h │ │ │ └── OWLVirtualWebcamOutput.h │ └── ThirdParty │ │ ├── FFmpeg │ │ ├── .gitignore │ │ ├── FFmpeg.Build.cs │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bin │ │ │ ├── avcodec-owl-59.dll │ │ │ ├── avcodec-owl-59.pdb │ │ │ ├── avdevice-owl-59.dll │ │ │ ├── avdevice-owl-59.pdb │ │ │ ├── avfilter-owl-8.dll │ │ │ ├── avfilter-owl-8.pdb │ │ │ ├── avformat-owl-59.dll │ │ │ ├── avformat-owl-59.pdb │ │ │ ├── avutil-owl-57.dll │ │ │ ├── avutil-owl-57.pdb │ │ │ ├── legacy.dll │ │ │ ├── legacy.pdb │ │ │ ├── libcrypto-3-x64-owl.dll │ │ │ ├── libcrypto-3-x64-owl.pdb │ │ │ ├── libssl-3-x64-owl.dll │ │ │ ├── libssl-3-x64-owl.pdb │ │ │ ├── pkgconf-3.dll │ │ │ ├── pkgconf-3.pdb │ │ │ ├── srt.dll │ │ │ ├── srt.pdb │ │ │ ├── swresample-owl-4.dll │ │ │ ├── swresample-owl-4.pdb │ │ │ ├── swscale-owl-6.dll │ │ │ └── swscale-owl-6.pdb │ │ ├── include │ │ │ ├── AMF │ │ │ │ ├── components │ │ │ │ │ ├── Ambisonic2SRenderer.h │ │ │ │ │ ├── AudioCapture.h │ │ │ │ │ ├── Capture.h │ │ │ │ │ ├── ChromaKey.h │ │ │ │ │ ├── ColorSpace.h │ │ │ │ │ ├── Component.h │ │ │ │ │ ├── ComponentCaps.h │ │ │ │ │ ├── CursorCapture.h │ │ │ │ │ ├── DisplayCapture.h │ │ │ │ │ ├── FFMPEGAudioConverter.h │ │ │ │ │ ├── FFMPEGAudioDecoder.h │ │ │ │ │ ├── FFMPEGAudioEncoder.h │ │ │ │ │ ├── FFMPEGComponents.h │ │ │ │ │ ├── FFMPEGFileDemuxer.h │ │ │ │ │ ├── FFMPEGFileMuxer.h │ │ │ │ │ ├── FFMPEGVideoDecoder.h │ │ │ │ │ ├── HQScaler.h │ │ │ │ │ ├── MediaSource.h │ │ │ │ │ ├── PreAnalysis.h │ │ │ │ │ ├── PreProcessing.h │ │ │ │ │ ├── SupportedCodecs.h │ │ │ │ │ ├── VQEnhancer.h │ │ │ │ │ ├── VideoCapture.h │ │ │ │ │ ├── VideoConverter.h │ │ │ │ │ ├── VideoDecoderUVD.h │ │ │ │ │ ├── VideoEncoderAV1.h │ │ │ │ │ ├── VideoEncoderHEVC.h │ │ │ │ │ ├── VideoEncoderVCE.h │ │ │ │ │ ├── VideoStitch.h │ │ │ │ │ └── ZCamLiveStream.h │ │ │ │ └── core │ │ │ │ │ ├── AudioBuffer.h │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── Compute.h │ │ │ │ │ ├── ComputeFactory.h │ │ │ │ │ ├── Context.h │ │ │ │ │ ├── CurrentTime.h │ │ │ │ │ ├── D3D12AMF.h │ │ │ │ │ ├── Data.h │ │ │ │ │ ├── Debug.h │ │ │ │ │ ├── Dump.h │ │ │ │ │ ├── Factory.h │ │ │ │ │ ├── Interface.h │ │ │ │ │ ├── Plane.h │ │ │ │ │ ├── Platform.h │ │ │ │ │ ├── PropertyStorage.h │ │ │ │ │ ├── PropertyStorageEx.h │ │ │ │ │ ├── Result.h │ │ │ │ │ ├── Surface.h │ │ │ │ │ ├── Trace.h │ │ │ │ │ ├── Variant.h │ │ │ │ │ ├── Version.h │ │ │ │ │ └── VulkanAMF.h │ │ │ ├── ffnvcodec │ │ │ │ ├── dynlink_cuda.h │ │ │ │ ├── dynlink_cuviddec.h │ │ │ │ ├── dynlink_loader.h │ │ │ │ ├── dynlink_nvcuvid.h │ │ │ │ └── nvEncodeAPI.h │ │ │ ├── libavcodec │ │ │ │ ├── ac3_parser.h │ │ │ │ ├── adts_parser.h │ │ │ │ ├── avcodec.h │ │ │ │ ├── avdct.h │ │ │ │ ├── avfft.h │ │ │ │ ├── bsf.h │ │ │ │ ├── codec.h │ │ │ │ ├── codec_desc.h │ │ │ │ ├── codec_id.h │ │ │ │ ├── codec_par.h │ │ │ │ ├── d3d11va.h │ │ │ │ ├── defs.h │ │ │ │ ├── dirac.h │ │ │ │ ├── dv_profile.h │ │ │ │ ├── dxva2.h │ │ │ │ ├── jni.h │ │ │ │ ├── mediacodec.h │ │ │ │ ├── packet.h │ │ │ │ ├── qsv.h │ │ │ │ ├── vdpau.h │ │ │ │ ├── version.h │ │ │ │ ├── version_major.h │ │ │ │ ├── videotoolbox.h │ │ │ │ ├── vorbis_parser.h │ │ │ │ └── xvmc.h │ │ │ ├── libavdevice │ │ │ │ ├── avdevice.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ ├── libavfilter │ │ │ │ ├── avfilter.h │ │ │ │ ├── buffersink.h │ │ │ │ ├── buffersrc.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ ├── libavformat │ │ │ │ ├── avformat.h │ │ │ │ ├── avio.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ ├── libavutil │ │ │ │ ├── adler32.h │ │ │ │ ├── aes.h │ │ │ │ ├── aes_ctr.h │ │ │ │ ├── attributes.h │ │ │ │ ├── audio_fifo.h │ │ │ │ ├── avassert.h │ │ │ │ ├── avconfig.h │ │ │ │ ├── avstring.h │ │ │ │ ├── avutil.h │ │ │ │ ├── base64.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bprint.h │ │ │ │ ├── bswap.h │ │ │ │ ├── buffer.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast5.h │ │ │ │ ├── channel_layout.h │ │ │ │ ├── common.h │ │ │ │ ├── cpu.h │ │ │ │ ├── crc.h │ │ │ │ ├── csp.h │ │ │ │ ├── des.h │ │ │ │ ├── detection_bbox.h │ │ │ │ ├── dict.h │ │ │ │ ├── display.h │ │ │ │ ├── dovi_meta.h │ │ │ │ ├── downmix_info.h │ │ │ │ ├── encryption_info.h │ │ │ │ ├── error.h │ │ │ │ ├── eval.h │ │ │ │ ├── ffversion.h │ │ │ │ ├── fifo.h │ │ │ │ ├── file.h │ │ │ │ ├── film_grain_params.h │ │ │ │ ├── frame.h │ │ │ │ ├── hash.h │ │ │ │ ├── hdr_dynamic_metadata.h │ │ │ │ ├── hdr_dynamic_vivid_metadata.h │ │ │ │ ├── hmac.h │ │ │ │ ├── hwcontext.h │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ ├── hwcontext_drm.h │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ ├── hwcontext_mediacodec.h │ │ │ │ ├── hwcontext_opencl.h │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ ├── hwcontext_vulkan.h │ │ │ │ ├── imgutils.h │ │ │ │ ├── intfloat.h │ │ │ │ ├── intreadwrite.h │ │ │ │ ├── lfg.h │ │ │ │ ├── log.h │ │ │ │ ├── lzo.h │ │ │ │ ├── macros.h │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ ├── mathematics.h │ │ │ │ ├── md5.h │ │ │ │ ├── mem.h │ │ │ │ ├── motion_vector.h │ │ │ │ ├── murmur3.h │ │ │ │ ├── opt.h │ │ │ │ ├── parseutils.h │ │ │ │ ├── pixdesc.h │ │ │ │ ├── pixelutils.h │ │ │ │ ├── pixfmt.h │ │ │ │ ├── random_seed.h │ │ │ │ ├── rational.h │ │ │ │ ├── rc4.h │ │ │ │ ├── replaygain.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── samplefmt.h │ │ │ │ ├── sha.h │ │ │ │ ├── sha512.h │ │ │ │ ├── spherical.h │ │ │ │ ├── stereo3d.h │ │ │ │ ├── tea.h │ │ │ │ ├── threadmessage.h │ │ │ │ ├── time.h │ │ │ │ ├── timecode.h │ │ │ │ ├── timestamp.h │ │ │ │ ├── tree.h │ │ │ │ ├── twofish.h │ │ │ │ ├── tx.h │ │ │ │ ├── uuid.h │ │ │ │ ├── version.h │ │ │ │ ├── video_enc_params.h │ │ │ │ └── xtea.h │ │ │ ├── libswresample │ │ │ │ ├── swresample.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ ├── libswscale │ │ │ │ ├── swscale.h │ │ │ │ ├── version.h │ │ │ │ └── version_major.h │ │ │ ├── openssl │ │ │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ │ │ ├── aes.h │ │ │ │ ├── applink.c │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1err.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── async.h │ │ │ │ ├── asyncerr.h │ │ │ │ ├── bio.h │ │ │ │ ├── bioerr.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── bnerr.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffererr.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cmp.h │ │ │ │ ├── cmp_util.h │ │ │ │ ├── cmperr.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── configuration.h │ │ │ │ ├── conftypes.h │ │ │ │ ├── core.h │ │ │ │ ├── core_dispatch.h │ │ │ │ ├── core_names.h │ │ │ │ ├── core_object.h │ │ │ │ ├── crmf.h │ │ │ │ ├── crmferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── decoder.h │ │ │ │ ├── decodererr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── encoder.h │ │ │ │ ├── encodererr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── ess.h │ │ │ │ ├── esserr.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── fips_names.h │ │ │ │ ├── fipskey.h │ │ │ │ ├── hmac.h │ │ │ │ ├── http.h │ │ │ │ ├── httperr.h │ │ │ │ ├── idea.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── macros.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── objectserr.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsperr.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── param_build.h │ │ │ │ ├── params.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── prov_ssl.h │ │ │ │ ├── proverr.h │ │ │ │ ├── provider.h │ │ │ │ ├── rand.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── self_test.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── sslerr_legacy.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── trace.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── types.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ │ └── srt │ │ │ │ ├── access_control.h │ │ │ │ ├── logging_api.h │ │ │ │ ├── platform_sys.h │ │ │ │ ├── srt.h │ │ │ │ ├── udt.h │ │ │ │ ├── version.h │ │ │ │ └── win │ │ │ │ ├── syslog_defs.h │ │ │ │ └── unistd.h │ │ ├── lib │ │ │ ├── avcodec-owl.lib │ │ │ ├── avdevice-owl.lib │ │ │ ├── avfilter-owl.lib │ │ │ ├── avformat-owl.lib │ │ │ ├── avutil-owl.lib │ │ │ ├── libcrypto.lib │ │ │ ├── libssl.lib │ │ │ ├── srt.lib │ │ │ ├── swresample-owl.lib │ │ │ └── swscale-owl.lib │ │ ├── share │ │ │ ├── amd-amf │ │ │ │ ├── copyright │ │ │ │ ├── vcpkg.spdx.json │ │ │ │ └── vcpkg_abi_info.txt │ │ │ ├── ffmpeg │ │ │ │ ├── copyright │ │ │ │ ├── usage │ │ │ │ ├── vcpkg.spdx.json │ │ │ │ └── vcpkg_abi_info.txt │ │ │ ├── ffnvcodec │ │ │ │ ├── copyright │ │ │ │ ├── vcpkg.spdx.json │ │ │ │ └── vcpkg_abi_info.txt │ │ │ ├── libsrt │ │ │ │ ├── copyright │ │ │ │ ├── vcpkg.spdx.json │ │ │ │ └── vcpkg_abi_info.txt │ │ │ └── openssl │ │ │ │ ├── copyright │ │ │ │ ├── vcpkg.spdx.json │ │ │ │ └── vcpkg_abi_info.txt │ │ └── vcpkg_commit │ │ ├── NDIRaw │ │ ├── Includes │ │ │ ├── Processing.NDI.DynamicLoad.h │ │ │ ├── Processing.NDI.Find.h │ │ │ ├── Processing.NDI.FrameSync.h │ │ │ ├── Processing.NDI.Lib.cplusplus.h │ │ │ ├── Processing.NDI.Lib.h │ │ │ ├── Processing.NDI.Recv.ex.h │ │ │ ├── Processing.NDI.Recv.h │ │ │ ├── Processing.NDI.Routing.h │ │ │ ├── Processing.NDI.Send.h │ │ │ ├── Processing.NDI.compat.h │ │ │ ├── Processing.NDI.deprecated.h │ │ │ ├── Processing.NDI.structs.h │ │ │ └── Processing.NDI.utilities.h │ │ ├── Libraries │ │ │ └── Win64 │ │ │ │ └── Processing.NDI.Lib.x64.lib │ │ └── NDIRaw.Build.cs │ │ ├── Spout │ │ ├── Spout.Build.cs │ │ └── Spout2 │ │ │ ├── BUILD │ │ │ ├── Binaries │ │ │ │ ├── Win32 │ │ │ │ │ ├── Spout.dll │ │ │ │ │ ├── Spout.lib │ │ │ │ │ ├── SpoutDX.dll │ │ │ │ │ ├── SpoutDX.lib │ │ │ │ │ ├── SpoutDX_static.lib │ │ │ │ │ ├── SpoutLibrary.dll │ │ │ │ │ ├── SpoutLibrary.lib │ │ │ │ │ └── Spout_static.lib │ │ │ │ └── x64 │ │ │ │ │ ├── Spout.dll │ │ │ │ │ ├── Spout.lib │ │ │ │ │ ├── SpoutDX.dll │ │ │ │ │ ├── SpoutDX.lib │ │ │ │ │ ├── SpoutDX_static.lib │ │ │ │ │ ├── SpoutLibrary.dll │ │ │ │ │ ├── SpoutLibrary.lib │ │ │ │ │ └── Spout_static.lib │ │ │ └── README.md │ │ │ ├── INSTALL │ │ │ └── include │ │ │ │ └── SpoutDX │ │ │ │ └── SpoutDX.h │ │ │ ├── LICENSE │ │ │ └── SPOUTSDK │ │ │ ├── SpoutDirectX │ │ │ └── SpoutDX │ │ │ │ ├── SpoutDX.h │ │ │ │ └── SpoutDX12 │ │ │ │ └── SpoutDX12.h │ │ │ ├── SpoutLibrary │ │ │ └── licence.txt │ │ │ └── licence.txt │ │ └── VirtualWebcam │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── VirtualWebcam.Build.cs │ │ ├── include │ │ └── softcam │ │ │ └── softcam.h │ │ └── lib │ │ ├── Win32 │ │ └── OWLVirtualWebcam.lib │ │ └── x64 │ │ └── OWLVirtualWebcam.lib │ └── Utils │ ├── InstallNDISDK.ps1 │ ├── OWLVirtualWebcam_Installer.exe │ └── owl-licensing-utility.exe ├── README.md ├── Source ├── OWLVirtualProduction.Target.cs ├── OWLVirtualProduction │ ├── MyClass.cpp │ ├── MyClass.h │ ├── OWLVirtualProduction.Build.cs │ ├── OWLVirtualProduction.cpp │ └── OWLVirtualProduction.h └── OWLVirtualProductionEditor.Target.cs └── config.ocio /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/.github/ISSUE_TEMPLATE/feature.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/.github/ISSUE_TEMPLATE/question.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ZipOnTag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/.github/workflows/ZipOnTag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/.vsconfig -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | [/Script/AdvancedPreviewScene.SharedProfiles] 2 | 3 | -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Config/DefaultGame.ini -------------------------------------------------------------------------------- /Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Config/DefaultInput.ini -------------------------------------------------------------------------------- /Content/Blueprints/BP_LEDBanner.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Blueprints/BP_LEDBanner.uasset -------------------------------------------------------------------------------- /Content/Blueprints/BP_LightSystem2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Blueprints/BP_LightSystem2.uasset -------------------------------------------------------------------------------- /Content/Blueprints/NewGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Blueprints/NewGameMode.uasset -------------------------------------------------------------------------------- /Content/Composure/ComposureAdditionalBps/TalentPlane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/ComposureAdditionalBps/TalentPlane.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/MF_Hash23.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/MF_Hash23.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/M_SinglePassDespill3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/M_SinglePassDespill3.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/M_SinglePassDespill_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/M_SinglePassDespill_2.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/M_cropping.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/M_cropping.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_2DCameraShake.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_2DCameraShake.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_Blur.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_Blur.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_BlurSharpen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_BlurSharpen.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_Displace.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_Displace.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_DistanceBlur.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_DistanceBlur.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_DistanceBlur_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_DistanceBlur_2.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_EdgeBlur2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_EdgeBlur2.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_EdgeBlur2_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_EdgeBlur2_2.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_HueSaturation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_HueSaturation.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_Rain.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_Rain.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_VHS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_VHS.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_Vignette2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_Vignette2.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_VignetteCathode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_VignetteCathode.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/PP_VignetteSubtle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/PP_VignetteSubtle.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/TP_mcropping2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/TP_mcropping2.uasset -------------------------------------------------------------------------------- /Content/Composure/Effects/WeatherScreenDrops.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Effects/WeatherScreenDrops.uasset -------------------------------------------------------------------------------- /Content/Composure/HUDRendering/M_HUDExport.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/HUDRendering/M_HUDExport.uasset -------------------------------------------------------------------------------- /Content/Composure/HUDRendering/UI_HUDexport.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/HUDRendering/UI_HUDexport.uasset -------------------------------------------------------------------------------- /Content/Composure/Keying/M_CompKeyToPlane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Keying/M_CompKeyToPlane.uasset -------------------------------------------------------------------------------- /Content/Composure/Keying/M_CompKeyToPlane_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Keying/M_CompKeyToPlane_Inst.uasset -------------------------------------------------------------------------------- /Content/Composure/Keying/M_CompKeyToPlane_Inst_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Keying/M_CompKeyToPlane_Inst_2.uasset -------------------------------------------------------------------------------- /Content/Composure/Keying/M_KeyedLightingCapture.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Keying/M_KeyedLightingCapture.uasset -------------------------------------------------------------------------------- /Content/Composure/Keying/M_KyedShadowCapture.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Keying/M_KyedShadowCapture.uasset -------------------------------------------------------------------------------- /Content/Composure/MediaPlayers/MediaPlayer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/MediaPlayers/MediaPlayer.uasset -------------------------------------------------------------------------------- /Content/Composure/MediaPlayers/Ms_Talent1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/MediaPlayers/Ms_Talent1.uasset -------------------------------------------------------------------------------- /Content/Composure/MediaPlayers/NewFileMediaSource.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/MediaPlayers/NewFileMediaSource.uasset -------------------------------------------------------------------------------- /Content/Composure/MediaPlayers/NewMediaPlayer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/MediaPlayers/NewMediaPlayer.uasset -------------------------------------------------------------------------------- /Content/Composure/MediaPlayers/NewMediaPlayer1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/MediaPlayers/NewMediaPlayer1.uasset -------------------------------------------------------------------------------- /Content/Composure/MediaPlayers/NewMediaPlayer1_Video.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/MediaPlayers/NewMediaPlayer1_Video.uasset -------------------------------------------------------------------------------- /Content/Composure/MediaPlayers/NewMediaPlayer_Video.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/MediaPlayers/NewMediaPlayer_Video.uasset -------------------------------------------------------------------------------- /Content/Composure/OCIO/HUDRenderer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/OCIO/HUDRenderer.uasset -------------------------------------------------------------------------------- /Content/Composure/OCIO/OCIOOutputConfig.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/OCIO/OCIOOutputConfig.uasset -------------------------------------------------------------------------------- /Content/Composure/OuptutPreview.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/OuptutPreview.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/OuptutPreview.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/OuptutPreview.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/OuptutPreview2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/OuptutPreview2.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/OuptutPreview2_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/OuptutPreview2_Mat.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/OutputProgram.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/OutputProgram.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/RTScreen2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/RTScreen2.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/RT_Backscreen1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/RT_Backscreen1.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/RT_Compkeyed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/RT_Compkeyed.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/RT_GreenScreenTest.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/RT_GreenScreenTest.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/RT_Screen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/RT_Screen.uasset -------------------------------------------------------------------------------- /Content/Composure/RenderTargets/RT_Screen1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/RenderTargets/RT_Screen1.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/MM_ScreenSimple.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/MM_ScreenSimple.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/M_OWL_VideoPlane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/M_OWL_VideoPlane.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/M_Screen1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/M_Screen1.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/M_Screen2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/M_Screen2.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/M_Screen3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/M_Screen3.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/M_VideoToPlaneTransform.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/M_VideoToPlaneTransform.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/OLWVideoPlaneScreen2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/OLWVideoPlaneScreen2.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/OLWVideoPlaneScreen3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/OLWVideoPlaneScreen3.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/RT_Screen_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/RT_Screen_Mat.uasset -------------------------------------------------------------------------------- /Content/Composure/Screens/T_OWL_VideoPlacementPlane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/Screens/T_OWL_VideoPlacementPlane.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP2ScreenLayout.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP2ScreenLayout.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP3ScreenLayout.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP3ScreenLayout.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_1ScreenLayout.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_1ScreenLayout.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_2LayerComp.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_2LayerComp.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_2ScreenLayout.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_2ScreenLayout.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_3LayerComp.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_3LayerComp.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_3ScreenLayout.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_3ScreenLayout.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_3Tetcomp.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_3Tetcomp.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_4LightingOnly.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_4LightingOnly.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_4ShadowOnly.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_4ShadowOnly.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_5LayerComp.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_5LayerComp.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_5LayerComp2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_5LayerComp2.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_DualPlateComp.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_DualPlateComp.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_DualPlateSimple.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_DualPlateSimple.uasset -------------------------------------------------------------------------------- /Content/Composure/TransformPasses/TP_OWLCopyToRT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Composure/TransformPasses/TP_OWLCopyToRT.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Blueprints/BP_Screen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Blueprints/BP_Screen.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Blueprints/Screen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Blueprints/Screen.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Blueprints/TalentPlane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Blueprints/TalentPlane.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Blueprints/TalentPlane2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Blueprints/TalentPlane2.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/EditorTick/BPI_EditorTick.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/EditorTick/BPI_EditorTick.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/EditorTick/BP_EditorTicker.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/EditorTick/BP_EditorTicker.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Fonts/Cera_Pro_Light.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Fonts/Cera_Pro_Light.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Fonts/Cera_Pro_Light_Font.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Fonts/Cera_Pro_Light_Font.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/GameModes/VPGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/GameModes/VPGameMode.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/GameModes/VP_Pawn.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/GameModes/VP_Pawn.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Materials/Animated/M_Fire.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Materials/Animated/M_Fire.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Materials/MM_TextMat1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Materials/MM_TextMat1.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Textures/Splash/EdSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Textures/Splash/EdSplash.png -------------------------------------------------------------------------------- /Content/DeveloperContent/Textures/Splash/EdSplash.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Textures/Splash/EdSplash.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/Textures/Splash/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Textures/Splash/Splash.png -------------------------------------------------------------------------------- /Content/DeveloperContent/Textures/Splash/Splash.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/Textures/Splash/Splash.uasset -------------------------------------------------------------------------------- /Content/DeveloperContent/structs/Struct_Program1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/DeveloperContent/structs/Struct_Program1.uasset -------------------------------------------------------------------------------- /Content/EditorTimecodeClock/BP_TimecodeClock.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/EditorTimecodeClock/BP_TimecodeClock.uasset -------------------------------------------------------------------------------- /Content/EditorTimecodeClock/M_TimerBody.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/EditorTimecodeClock/M_TimerBody.uasset -------------------------------------------------------------------------------- /Content/Environment/LightRigs/BP_LightBox1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/LightRigs/BP_LightBox1.uasset -------------------------------------------------------------------------------- /Content/Environment/LightRigs/BP_LightRig1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/LightRigs/BP_LightRig1.uasset -------------------------------------------------------------------------------- /Content/Environment/LightRigs/BP_LightSwitcher.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/LightRigs/BP_LightSwitcher.uasset -------------------------------------------------------------------------------- /Content/Environment/LightRigs/M_LampEmissive.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/LightRigs/M_LampEmissive.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/Animated/MI_Displace23.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/Animated/MI_Displace23.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/Animated/M_Fire_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/Animated/M_Fire_Inst.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/Emissives/MI_LEDBanner.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/Emissives/MI_LEDBanner.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/Emissives/MI_MainLight.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/Emissives/MI_MainLight.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/Emissives/M_WallGlow3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/Emissives/M_WallGlow3.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/MI_Glass_Windows.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/MI_Glass_Windows.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/M_Glass_Master1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/M_Glass_Master1.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/RealWorld/MI_Floor5.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/RealWorld/MI_Floor5.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/RealWorld/MI_Triplanar.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/RealWorld/MI_Triplanar.uasset -------------------------------------------------------------------------------- /Content/Environment/Materials/RealWorld/M_floor1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Materials/RealWorld/M_floor1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/Cables1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/Cables1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/Cables2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/Cables2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/Emissive1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/Emissive1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/LEDScroll1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/LEDScroll1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/M_BlackReg.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/M_BlackReg.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Blob1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Blob1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Cage1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Cage1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Chair2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Chair2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Dome.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Dome.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_FloorRug.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_FloorRug.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Platform.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Platform.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Ramp1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Ramp1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Scaffold.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Scaffold.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Screen1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Screen1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_SpeakerS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_SpeakerS.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_TV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_TV.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_TV2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_TV2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_TVScreen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_TVScreen.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Table.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Table.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Truss1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Truss1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/SM_Truss2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/SM_Truss2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/TVBack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/TVBack.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/TVChrome.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/TVChrome.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Bespoke_Pack1/TVScreen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Bespoke_Pack1/TVScreen.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/BlobbyPack1/Blobby-1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/BlobbyPack1/Blobby-1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/BlobbyPack1/Blobby-Arch1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/BlobbyPack1/Blobby-Arch1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/BlobbyPack1/Blobby-Plant1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/BlobbyPack1/Blobby-Plant1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/BlobbyPack1/Blobby-Plant2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/BlobbyPack1/Blobby-Plant2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/BlobbyPack1/Blobby-Plant3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/BlobbyPack1/Blobby-Plant3.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/BlobbyPack1/Blobby-Sphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/BlobbyPack1/Blobby-Sphere.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/BlobbyPack1/Blobby-Torus1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/BlobbyPack1/Blobby-Torus1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/BlobbyPack1/Material.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/BlobbyPack1/Material.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/BlobbyPack1/Material_001.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/BlobbyPack1/Material_001.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Lanterns/Lantern.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Lanterns/Lantern.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Lanterns/LanternHandle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Lanterns/LanternHandle.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Lanterns/LanternRibs.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Lanterns/LanternRibs.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Lanterns/LanternTassels.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Lanterns/LanternTassels.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Lanterns/LanternTop.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Lanterns/LanternTop.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Lanterns/OWLBunny_ncl1_1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Lanterns/OWLBunny_ncl1_1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Lanterns/OWLbunny.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Lanterns/OWLbunny.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Lanterns/lantern_low.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Lanterns/lantern_low.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Merged/SM_MERGED_RampWay.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Merged/SM_MERGED_RampWay.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Merged/SM_MERGED_Scaffold.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Merged/SM_MERGED_Scaffold.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Merged/SM_MERGED_Sudio1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Merged/SM_MERGED_Sudio1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Merged/SM_Towers.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Merged/SM_Towers.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_BackWall.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_BackWall.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_Backwall2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_Backwall2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_Desk1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_Desk1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_Desk2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_Desk2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_Facade1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_Facade1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_FloorTile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_FloorTile.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_Frame1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_Frame1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_Frame3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_Frame3.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_Pedastol1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_Pedastol1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_Pedastol2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_Pedastol2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/ModularPack1/SM_WallBlock.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/ModularPack1/SM_WallBlock.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/NPMeshes/NMeshesMaster.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/NPMeshes/NMeshesMaster.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/Material.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/Material.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/Material_001.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/Material_001.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/Material_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/Material_2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/Material_3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/Material_3.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/Material_4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/Material_4.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/SM_Screen1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/SM_Screen1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/SM_Screen2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/SM_Screen2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/SM_Screen3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/SM_Screen3.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/SM_Screen4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/SM_Screen4.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/Screens/SM_ScreenCombo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/Screens/SM_ScreenCombo.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/VirtualStudioPack2/Desk1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/VirtualStudioPack2/Desk1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/VirtualStudioPack2/Desk2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/VirtualStudioPack2/Desk2.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/VirtualStudioPack2/Desk3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/VirtualStudioPack2/Desk3.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/VirtualStudioPack2/Floor3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/VirtualStudioPack2/Floor3.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/VirtualStudioPack2/Slope1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/VirtualStudioPack2/Slope1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/VirtualStudioPack2/Stand1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/VirtualStudioPack2/Stand1.uasset -------------------------------------------------------------------------------- /Content/Environment/Meshes/VirtualStudioPack2/Stand2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Meshes/VirtualStudioPack2/Stand2.uasset -------------------------------------------------------------------------------- /Content/Environment/SkeletalMeshes/EffyJustClothes1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/SkeletalMeshes/EffyJustClothes1.uasset -------------------------------------------------------------------------------- /Content/Environment/SkeletalMeshes/FR-1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/SkeletalMeshes/FR-1.uasset -------------------------------------------------------------------------------- /Content/Environment/SkeletalMeshes/FR-1_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/SkeletalMeshes/FR-1_PhysicsAsset.uasset -------------------------------------------------------------------------------- /Content/Environment/SkeletalMeshes/FR-1_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/SkeletalMeshes/FR-1_Skeleton.uasset -------------------------------------------------------------------------------- /Content/Environment/SkeletalMeshes/FR.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/SkeletalMeshes/FR.uasset -------------------------------------------------------------------------------- /Content/Environment/SkeletalMeshes/Materials/Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/SkeletalMeshes/Materials/Mat.uasset -------------------------------------------------------------------------------- /Content/Environment/SkeletalMeshes/Materials/Mat_1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/SkeletalMeshes/Materials/Mat_1.uasset -------------------------------------------------------------------------------- /Content/Environment/SkeletalMeshes/Materials/Top_001.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/SkeletalMeshes/Materials/Top_001.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/CRT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/CRT.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/FizzyBlue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/FizzyBlue.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/OWLLiveScrollingText1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/OWLLiveScrollingText1.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/ShinyPuddles.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/ShinyPuddles.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/T_BowtiOffWorld_Albedo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/T_BowtiOffWorld_Albedo.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/T_OffWorldBowtiGridNM.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/T_OffWorldBowtiGridNM.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/T_WipeMarks.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/T_WipeMarks.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/UE_OWLLogo1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/UE_OWLLogo1.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/download.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/download.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/rain_drops.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/rain_drops.uasset -------------------------------------------------------------------------------- /Content/Environment/Textures/twirl.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Environment/Textures/twirl.uasset -------------------------------------------------------------------------------- /Content/ExternalPacks/Virtual_Studio_Kit/Maps/Studio_D.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/ExternalPacks/Virtual_Studio_Kit/Maps/Studio_D.umap -------------------------------------------------------------------------------- /Content/Levels/CustomLevel2.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Levels/CustomLevel2.umap -------------------------------------------------------------------------------- /Content/Levels/Lighting_Example.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Levels/Lighting_Example.uasset -------------------------------------------------------------------------------- /Content/Levels/OWLStudio_A.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Levels/OWLStudio_A.umap -------------------------------------------------------------------------------- /Content/Levels/OWL_TemplateBlank.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Levels/OWL_TemplateBlank.umap -------------------------------------------------------------------------------- /Content/MSPresets/MSTextures/Black.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSTextures/Black.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSTextures/BlackPlaceholder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSTextures/BlackPlaceholder.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSTextures/FlatNormal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSTextures/FlatNormal.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSTextures/Placeholder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSTextures/Placeholder.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSTextures/Placeholder_Normal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSTextures/Placeholder_Normal.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSTextures/White.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSTextures/White.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSTextures/WhitePlaceholder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSTextures/WhitePlaceholder.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSVTTextures/BlackPlaceholder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSVTTextures/BlackPlaceholder.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSVTTextures/DefaultDiffuse.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSVTTextures/DefaultDiffuse.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSVTTextures/Placeholder_Normal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSVTTextures/Placeholder_Normal.uasset -------------------------------------------------------------------------------- /Content/MSPresets/MSVTTextures/WhitePlaceholder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/MSVTTextures/WhitePlaceholder.uasset -------------------------------------------------------------------------------- /Content/MSPresets/M_MS_Glass_Material/Textures/Black.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/M_MS_Glass_Material/Textures/Black.uasset -------------------------------------------------------------------------------- /Content/MSPresets/M_MS_Glass_Material/Textures/White.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/MSPresets/M_MS_Glass_Material/Textures/White.uasset -------------------------------------------------------------------------------- /Content/Megascans/MSPresets/MSTextures/Black.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Megascans/MSPresets/MSTextures/Black.uasset -------------------------------------------------------------------------------- /Content/Megascans/MSPresets/MSTextures/FlatNormal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Megascans/MSPresets/MSTextures/FlatNormal.uasset -------------------------------------------------------------------------------- /Content/Megascans/MSPresets/MSTextures/Placeholder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Megascans/MSPresets/MSTextures/Placeholder.uasset -------------------------------------------------------------------------------- /Content/Megascans/MSPresets/MSTextures/White.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Megascans/MSPresets/MSTextures/White.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/HUD/Material_003.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/HUD/Material_003.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/HUD/UI_HUDController.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/HUD/UI_HUDController.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Levels/PodcastSetting1.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Levels/PodcastSetting1.umap -------------------------------------------------------------------------------- /Content/PodcastTemplate/Ls_CloseUp1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Ls_CloseUp1.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Ls_CloseUp2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Ls_CloseUp2.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Ls_TwoShot.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Ls_TwoShot.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/RenderTargets/M_CloseUp1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/RenderTargets/M_CloseUp1.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/RenderTargets/M_CloseUp2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/RenderTargets/M_CloseUp2.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/RenderTargets/RT_Closeup1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/RenderTargets/RT_Closeup1.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/RenderTargets/RT_Closeup2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/RenderTargets/RT_Closeup2.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/RenderTargets/RT_TwoShot.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/RenderTargets/RT_TwoShot.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/RenderTargets/RT_TwoShot_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/RenderTargets/RT_TwoShot_Mat.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_Closeup1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_Closeup1.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_Closeup2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_Closeup2.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_CloseupLeft.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_CloseupLeft.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_CloseupRight.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_CloseupRight.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_FlyIn.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_FlyIn.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_LogoCloseup.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_LogoCloseup.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_TwoShot.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_TwoShot.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_TwoShot2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_TwoShot2.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_TwoShot3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_TwoShot3.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/LS_TwoShot4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/LS_TwoShot4.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Sequences/Presets/LS_PCText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Sequences/Presets/LS_PCText.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Stingers/M_UI_VideoPlayback.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Stingers/M_UI_VideoPlayback.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Stingers/UI_StingerWidget.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Stingers/UI_StingerWidget.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/TP_Podcast.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/TP_Podcast.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/Template/PodcastTemplate.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/Template/PodcastTemplate.umap -------------------------------------------------------------------------------- /Content/PodcastTemplate/_GENERATED/Gen1/Box_242A4DCE.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/_GENERATED/Gen1/Box_242A4DCE.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/meshes/Box003.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/meshes/Box003.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/meshes/FloorCombined.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/meshes/FloorCombined.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/meshes/Line001.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/meshes/Line001.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/meshes/hatak.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/meshes/hatak.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/meshes/zanaveska.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/meshes/zanaveska.uasset -------------------------------------------------------------------------------- /Content/PodcastTemplate/meshes/zanaveska001.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/PodcastTemplate/meshes/zanaveska001.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/LS_Closeup1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/LS_Closeup1.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/LS_Closeup2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/LS_Closeup2.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/LS_TwoShot.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/LS_TwoShot.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/LS_TwoShot2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/LS_TwoShot2.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Levels/PodcastSetting2.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Levels/PodcastSetting2.umap -------------------------------------------------------------------------------- /Content/Podcasttemplate/Meshes/Box003.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Meshes/Box003.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Meshes/Line001.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Meshes/Line001.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Meshes/hatak.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Meshes/hatak.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Meshes/zanaveska.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Meshes/zanaveska.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Meshes/zanaveska001.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Meshes/zanaveska001.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/NewNiagaraSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/NewNiagaraSystem.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/OWLPodcastComp.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/OWLPodcastComp.umap -------------------------------------------------------------------------------- /Content/Podcasttemplate/OWL_Podcast2.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/OWL_Podcast2.umap -------------------------------------------------------------------------------- /Content/Podcasttemplate/OWL_TemplateBlank.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/OWL_TemplateBlank.umap -------------------------------------------------------------------------------- /Content/Podcasttemplate/OWL_TemplateBlank3.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/OWL_TemplateBlank3.umap -------------------------------------------------------------------------------- /Content/Podcasttemplate/PodcastSetting2.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/PodcastSetting2.umap -------------------------------------------------------------------------------- /Content/Podcasttemplate/RT_TwoShot.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/RT_TwoShot.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/RenderTargets/MI_CloseUp1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/RenderTargets/MI_CloseUp1.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/RenderTargets/MI_CloseUp2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/RenderTargets/MI_CloseUp2.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/RenderTargets/M_TwoShot_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/RenderTargets/M_TwoShot_Mat.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/RenderTargets/RT_Closeup1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/RenderTargets/RT_Closeup1.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/RenderTargets/RT_Closeup2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/RenderTargets/RT_Closeup2.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/RenderTargets/RT_TwoShot.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/RenderTargets/RT_TwoShot.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Stingers/LS_Stinger1playback.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Stingers/LS_Stinger1playback.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Stingers/Ls_Stinger1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Stingers/Ls_Stinger1.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Stingers/MP_Stinger1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Stingers/MP_Stinger1.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Stingers/MP_Stinger1_Video.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Stingers/MP_Stinger1_Video.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Stingers/MS_Stinger1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Stingers/MS_Stinger1.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Stingers/NewNiagaraSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Stingers/NewNiagaraSystem.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Stingers/Stinger1.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Stingers/Stinger1.umap -------------------------------------------------------------------------------- /Content/Podcasttemplate/Stingers/TP_Stinger.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Stingers/TP_Stinger.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/Stingers/TP_alphaAdd.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/Stingers/TP_alphaAdd.uasset -------------------------------------------------------------------------------- /Content/Podcasttemplate/TP_Podcast.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Podcasttemplate/TP_Podcast.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Architecture/Floor_400x400.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Architecture/Floor_400x400.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Architecture/Pillar_50x500.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Architecture/Pillar_50x500.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Architecture/SM_AssetPlatform.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Architecture/SM_AssetPlatform.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Architecture/Wall_400x200.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Architecture/Wall_400x200.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Architecture/Wall_400x300.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Architecture/Wall_400x300.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Architecture/Wall_400x400.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Architecture/Wall_400x400.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Architecture/Wall_500x500.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Architecture/Wall_500x500.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Collapse01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Collapse01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Collapse02.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Collapse02.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Collapse_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Collapse_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Explosion01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Explosion01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Explosion02.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Explosion02.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Explosion_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Explosion_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Fire01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Fire01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Fire01_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Fire01_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Fire_Sparks01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Fire_Sparks01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Fire_Sparks01_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Fire_Sparks01_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Light01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Light01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Light01_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Light01_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Light02.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Light02.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Light02_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Light02_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Smoke01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Smoke01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Smoke01_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Smoke01_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Starter_Background_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Starter_Background_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Starter_Birds01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Starter_Birds01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Starter_Music01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Starter_Music01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Starter_Music_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Starter_Music_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Starter_Wind05.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Starter_Wind05.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Starter_Wind06.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Starter_Wind06.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Steam01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Steam01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Audio/Steam01_Cue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Audio/Steam01_Cue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Assets/SM_Arrows.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Blueprints/Assets/SM_Arrows.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/Assets/Skybox.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Blueprints/Assets/Skybox.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Blueprints/BP_LightStudio.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Blueprints/BP_LightStudio.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Maps/Advanced_Lighting.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Maps/Advanced_Lighting.umap -------------------------------------------------------------------------------- /Content/StarterContent/Maps/Minimal_Default.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Maps/Minimal_Default.umap -------------------------------------------------------------------------------- /Content/StarterContent/Maps/StarterMap.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Maps/StarterMap.umap -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_AssetPlatform.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_AssetPlatform.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Basic_Floor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Basic_Floor.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Basic_Wall.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Basic_Wall.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Brick_Clay_New.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Brick_Clay_New.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Brick_Clay_Old.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Brick_Clay_Old.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Brick_Cut_Stone.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Brick_Cut_Stone.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Brick_Hewn_Stone.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Brick_Hewn_Stone.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_CobbleStone_Rough.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_CobbleStone_Rough.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_ColorGrid_LowSpec.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_ColorGrid_LowSpec.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Concrete_Grime.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Concrete_Grime.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Concrete_Panels.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Concrete_Panels.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Concrete_Poured.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Concrete_Poured.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Concrete_Tiles.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Concrete_Tiles.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Glass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Glass.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Ground_Grass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Ground_Grass.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Ground_Gravel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Ground_Gravel.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Ground_Moss.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Ground_Moss.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Metal_Chrome.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Metal_Chrome.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Metal_Copper.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Metal_Copper.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Metal_Gold.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Metal_Gold.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Metal_Rust.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Metal_Rust.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Metal_Steel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Metal_Steel.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Rock_Basalt.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Rock_Basalt.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Rock_Sandstone.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Rock_Sandstone.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Rock_Slate.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Rock_Slate.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Tech_Checker_Dot.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Tech_Checker_Dot.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Tech_Hex_Tile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Tech_Hex_Tile.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Tech_Panel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Tech_Panel.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Water_Lake.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Water_Lake.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Water_Ocean.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Water_Ocean.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Wood_Oak.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Wood_Oak.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Wood_Pine.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Wood_Pine.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Materials/M_Wood_Walnut.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Materials/M_Wood_Walnut.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Particles/Materials/M_Burst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Particles/Materials/M_Burst.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Particles/Materials/M_Spark.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Particles/Materials/M_Spark.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Particles/P_Ambient_Dust.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Particles/P_Ambient_Dust.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Particles/P_Explosion.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Particles/P_Explosion.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Particles/P_Fire.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Particles/P_Fire.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Particles/P_Smoke.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Particles/P_Smoke.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Particles/P_Sparks.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Particles/P_Sparks.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Particles/P_Steam_Lit.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Particles/P_Steam_Lit.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/MaterialSphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/MaterialSphere.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_Bush.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_Bush.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_Chair.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_Chair.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_Door.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_Door.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_Frame.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_Frame.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_Lamp.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_Lamp.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_Rock.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_Rock.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_Shelf.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_Shelf.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_Statue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_Statue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_StatueGlass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_StatueGlass.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/Materials/M_TableRound.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/Materials/M_TableRound.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Bush.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Bush.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Chair.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Chair.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_CornerFrame.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_CornerFrame.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Couch.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Couch.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Door.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Door.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_DoorFrame.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_DoorFrame.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_GlassWindow.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_GlassWindow.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Lamp_Ceiling.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Lamp_Ceiling.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Lamp_Wall.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Lamp_Wall.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_PillarFrame.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_PillarFrame.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_PillarFrame300.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_PillarFrame300.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Rock.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Rock.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Shelf.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Shelf.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Stairs.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Stairs.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_Statue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_Statue.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_TableRound.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_TableRound.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Props/SM_WindowFrame.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Props/SM_WindowFrame.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Cone.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Cone.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Cube.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Cylinder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Cylinder.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_NarrowCapsule.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_NarrowCapsule.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Pipe.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Pipe.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Pipe_180.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Pipe_180.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Pipe_90.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Pipe_90.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Plane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Plane.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_QuadPyramid.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_QuadPyramid.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Sphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Sphere.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Torus.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Torus.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_TriPyramid.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_TriPyramid.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Trim.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Trim.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Trim_90_In.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Trim_90_In.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Trim_90_Out.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Trim_90_Out.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Tube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Tube.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Wedge_A.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Wedge_A.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_Wedge_B.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_Wedge_B.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Shapes/Shape_WideCapsule.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Shapes/Shape_WideCapsule.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Clay_New_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Clay_New_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Clay_New_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Clay_New_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Clay_New_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Clay_New_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Clay_Old_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Clay_Old_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Clay_Old_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Clay_Old_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Cut_Stone_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Cut_Stone_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Cut_Stone_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Cut_Stone_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Hewn_Stone_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Hewn_Stone_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Hewn_Stone_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Hewn_Stone_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Brick_Hewn_Stone_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Brick_Hewn_Stone_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Burst_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Burst_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Bush_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Bush_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Bush_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Bush_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Ceramic_Tile_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Ceramic_Tile_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Ceramic_Tile_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Ceramic_Tile_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Chair_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Chair_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Chair_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Chair_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Checker_Noise_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Checker_Noise_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Concrete_Grime_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Concrete_Grime_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Concrete_Panels_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Concrete_Panels_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Concrete_Panels_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Concrete_Panels_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Concrete_Poured_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Concrete_Poured_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Concrete_Poured_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Concrete_Poured_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Concrete_Tiles_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Concrete_Tiles_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Concrete_Tiles_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Concrete_Tiles_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Concrete_Tiles_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Concrete_Tiles_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Detail_Rocky_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Detail_Rocky_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Door_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Door_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Door_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Door_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Dust_Particle_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Dust_Particle_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Explosion_SubUV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Explosion_SubUV.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Fire_SubUV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Fire_SubUV.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Fire_Tiled_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Fire_Tiled_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Frame_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Frame_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Frame_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Frame_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Gradinet_01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Gradinet_01.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Ground_Grass_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Ground_Grass_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Ground_Grass_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Ground_Grass_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Ground_Gravel_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Ground_Gravel_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Ground_Gravel_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Ground_Gravel_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Ground_Moss_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Ground_Moss_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Lamp_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Lamp_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Lamp_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Lamp_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_MacroVariation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_MacroVariation.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Metal_Aluminum_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Metal_Aluminum_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Metal_Copper_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Metal_Copper_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Metal_Gold_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Metal_Gold_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Metal_Gold_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Metal_Gold_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Metal_Rust_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Metal_Rust_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Metal_Rust_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Metal_Rust_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Metal_Steel_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Metal_Steel_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Metal_Steel_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Metal_Steel_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Perlin_Noise_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Perlin_Noise_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_RockMesh_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_RockMesh_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_RockMesh_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_RockMesh_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Rock_Basalt_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Rock_Basalt_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Rock_Basalt_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Rock_Basalt_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Rock_Sandstone_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Rock_Sandstone_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Rock_Sandstone_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Rock_Sandstone_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Rock_Slate_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Rock_Slate_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Rock_Slate_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Rock_Slate_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Shelf_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Shelf_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Shelf_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Shelf_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Single_Tile_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Single_Tile_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Smoke_SubUV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Smoke_SubUV.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Smoke_Tiled_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Smoke_Tiled_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Spark_Core.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Spark_Core.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Statue_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Statue_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Statue_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Statue_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_TableRound_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_TableRound_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_TableRound_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_TableRound_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Tech_Dot_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Tech_Dot_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Tech_Dot_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Tech_Dot_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Tech_Hex_Tile_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Tech_Hex_Tile_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Tech_Hex_Tile_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Tech_Hex_Tile_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Tech_Panel_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Tech_Panel_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Tech_Panel_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Tech_Panel_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Water_M.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Water_M.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Water_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Water_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Wood_Oak_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Wood_Oak_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Wood_Oak_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Wood_Oak_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Wood_Pine_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Wood_Pine_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Wood_Pine_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Wood_Pine_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Wood_Walnut_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Wood_Walnut_D.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_Wood_Walnut_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_Wood_Walnut_N.uasset -------------------------------------------------------------------------------- /Content/StarterContent/Textures/T_ground_Moss_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/StarterContent/Textures/T_ground_Moss_D.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/IntroVideo/Ms_Intro.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/IntroVideo/Ms_Intro.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/IntroVideo/OWLcompIntro.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/IntroVideo/OWLcompIntro.mp4 -------------------------------------------------------------------------------- /Content/Textures/Stingers/IntroVideo/OWLcompIntro.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/IntroVideo/OWLcompIntro.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0000.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0000.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0000.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0001.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0001.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0001.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0002.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0002.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0003.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0003.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0003.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0004.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0004.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0004.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0005.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0005.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0005.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0006.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0006.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0006.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0007.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0007.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0007.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0008.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0008.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0008.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0009.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0009.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0009.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0010.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0010.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0010.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0011.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0011.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0011.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0012.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0012.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0012.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0013.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0013.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0013.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0014.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0014.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0014.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0015.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0015.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0015.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0016.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0016.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0016.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0017.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0017.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0017.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0018.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0018.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0018.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0019.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0019.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0019.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0020.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0020.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0020.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0021.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0021.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0021.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0022.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0022.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0022.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0023.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0023.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0023.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0024.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0024.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0024.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0025.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0025.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0025.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0026.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0026.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0026.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0027.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0027.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0027.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0028.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0028.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0028.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0029.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0029.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0029.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0030.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0030.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0030.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0031.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0031.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0031.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0032.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0032.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0032.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0033.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0033.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0033.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0034.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0034.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0034.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0035.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0035.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0035.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0036.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0036.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0036.uasset -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0037.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0038.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0039.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0040.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0041.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0042.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0043.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0044.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0045.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0046.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0047.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0048.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0049.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0050.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0051.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0052.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0053.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0054.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0055.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0056.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0057.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0058.png -------------------------------------------------------------------------------- /Content/Textures/Stingers/Stinger2/Ls_Stinger1_0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/Stingers/Stinger2/Ls_Stinger1_0059.png -------------------------------------------------------------------------------- /Content/Textures/dirtmask1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/dirtmask1.uasset -------------------------------------------------------------------------------- /Content/Textures/dirtmask2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/Textures/dirtmask2.uasset -------------------------------------------------------------------------------- /Content/V3Main/BP_Lightcontrol.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/BP_Lightcontrol.uasset -------------------------------------------------------------------------------- /Content/V3Main/Blueprints/BP_MediaHandler.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Blueprints/BP_MediaHandler.uasset -------------------------------------------------------------------------------- /Content/V3Main/Drafts/UI_BeginPlaySwitcherDraft.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Drafts/UI_BeginPlaySwitcherDraft.uasset -------------------------------------------------------------------------------- /Content/V3Main/HUD/UI_BeginPlaySwitcher_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/HUD/UI_BeginPlaySwitcher_2.uasset -------------------------------------------------------------------------------- /Content/V3Main/HUD/UI_Output.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/HUD/UI_Output.uasset -------------------------------------------------------------------------------- /Content/V3Main/LS_Stinger1playback_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/LS_Stinger1playback_2.uasset -------------------------------------------------------------------------------- /Content/V3Main/Materials/MI_Program_1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Materials/MI_Program_1.uasset -------------------------------------------------------------------------------- /Content/V3Main/Materials/MI_Wood_Planks.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Materials/MI_Wood_Planks.uasset -------------------------------------------------------------------------------- /Content/V3Main/Materials/M_CompKeyToPlane_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Materials/M_CompKeyToPlane_Inst.uasset -------------------------------------------------------------------------------- /Content/V3Main/Materials/M_Program.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Materials/M_Program.uasset -------------------------------------------------------------------------------- /Content/V3Main/Materials/M_Screen1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Materials/M_Screen1.uasset -------------------------------------------------------------------------------- /Content/V3Main/NewRemoteControlPreset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/NewRemoteControlPreset.uasset -------------------------------------------------------------------------------- /Content/V3Main/Sequences/Cam1_Movement.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Sequences/Cam1_Movement.uasset -------------------------------------------------------------------------------- /Content/V3Main/Sequences/Cam3_Movement.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Sequences/Cam3_Movement.uasset -------------------------------------------------------------------------------- /Content/V3Main/Sequences/MainCam/LS_C1Boom.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Sequences/MainCam/LS_C1Boom.uasset -------------------------------------------------------------------------------- /Content/V3Main/Sequences/MainCam/LS_C1Intro.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Sequences/MainCam/LS_C1Intro.uasset -------------------------------------------------------------------------------- /Content/V3Main/Sequences/MainCam/LS_C1Left.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Sequences/MainCam/LS_C1Left.uasset -------------------------------------------------------------------------------- /Content/V3Main/Sequences/MainCam/LS_C1Right.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Sequences/MainCam/LS_C1Right.uasset -------------------------------------------------------------------------------- /Content/V3Main/Sequences/Presets/LS_V3Preset1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Sequences/Presets/LS_V3Preset1.uasset -------------------------------------------------------------------------------- /Content/V3Main/Sequences/Presets/LS_V3Preset2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Sequences/Presets/LS_V3Preset2.uasset -------------------------------------------------------------------------------- /Content/V3Main/TP_V3Main.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/TP_V3Main.uasset -------------------------------------------------------------------------------- /Content/V3Main/Textures/Button1A.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Textures/Button1A.uasset -------------------------------------------------------------------------------- /Content/V3Main/Textures/Button1P.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Textures/Button1P.uasset -------------------------------------------------------------------------------- /Content/V3Main/Textures/Button1R.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Textures/Button1R.uasset -------------------------------------------------------------------------------- /Content/V3Main/Textures/LS_Cam4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Textures/LS_Cam4.uasset -------------------------------------------------------------------------------- /Content/V3Main/Textures/LS_CamLeftBoom.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Textures/LS_CamLeftBoom.uasset -------------------------------------------------------------------------------- /Content/V3Main/Textures/RT_Cam1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Textures/RT_Cam1.uasset -------------------------------------------------------------------------------- /Content/V3Main/Textures/RT_Cam2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Textures/RT_Cam2.uasset -------------------------------------------------------------------------------- /Content/V3Main/Textures/RT_Cam3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Textures/RT_Cam3.uasset -------------------------------------------------------------------------------- /Content/V3Main/Textures/RT_Cam4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/Textures/RT_Cam4.uasset -------------------------------------------------------------------------------- /Content/V3Main/UserInterfaceVerision/UI_Switcher.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/UserInterfaceVerision/UI_Switcher.uasset -------------------------------------------------------------------------------- /Content/V3Main/V3Main.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/V3Main.umap -------------------------------------------------------------------------------- /Content/V3Main/VP_PawnV3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/VP_PawnV3.uasset -------------------------------------------------------------------------------- /Content/V3Main/blueprints/BP_HUDSwitcher.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Content/V3Main/blueprints/BP_HUDSwitcher.uasset -------------------------------------------------------------------------------- /GreenScreenExample1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/GreenScreenExample1.mp4 -------------------------------------------------------------------------------- /OWLVirtualProduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/OWLVirtualProduction.png -------------------------------------------------------------------------------- /OWLVirtualProduction.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/OWLVirtualProduction.uproject -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-LivestreamingToolkit-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-LivestreamingToolkit.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-LivestreamingToolkitEditor-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-LivestreamingToolkitEditor.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-LivestreamingToolkitShaders-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-LivestreamingToolkitShaders.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWL360Camera-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWL360Camera.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLCamera-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLCamera.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLComposure-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLComposure.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLMedia-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLMedia.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLNDI-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLNDI.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLScreenCapture-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLScreenCapture.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLSpout-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLSpout.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLVirtualWebcam-Win64-DebugGame.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Binaries/Win64/UnrealEditor-OWLVirtualWebcam.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Docs/LinkToDocs.txt: -------------------------------------------------------------------------------- 1 | https://docs.offworld.live/#/ -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Intermediate/Build/BuildRules/OWLLivestreamingToolkitModuleRules.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/.gitignore: -------------------------------------------------------------------------------- 1 | doc -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/avcodec-owl-59.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/avdevice-owl-59.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/avfilter-owl-8.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/avformat-owl-59.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/avutil-owl-57.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/legacy.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/libcrypto-3-x64-owl.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/libssl-3-x64-owl.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/pkgconf-3.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/srt.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/swresample-owl-4.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/FFmpeg/bin/swscale-owl-6.pdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/OWLLivestreamingToolkit/OWLLivestreamingToolkit/Source/ThirdParty/VirtualWebcam/.gitignore: -------------------------------------------------------------------------------- 1 | !OWLVirtualWebcam.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/README.md -------------------------------------------------------------------------------- /Source/OWLVirtualProduction.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Source/OWLVirtualProduction.Target.cs -------------------------------------------------------------------------------- /Source/OWLVirtualProduction/MyClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Source/OWLVirtualProduction/MyClass.cpp -------------------------------------------------------------------------------- /Source/OWLVirtualProduction/MyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Source/OWLVirtualProduction/MyClass.h -------------------------------------------------------------------------------- /Source/OWLVirtualProduction/OWLVirtualProduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Source/OWLVirtualProduction/OWLVirtualProduction.cpp -------------------------------------------------------------------------------- /Source/OWLVirtualProduction/OWLVirtualProduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Source/OWLVirtualProduction/OWLVirtualProduction.h -------------------------------------------------------------------------------- /Source/OWLVirtualProductionEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/Source/OWLVirtualProductionEditor.Target.cs -------------------------------------------------------------------------------- /config.ocio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Off-World-Live-Collaborative/OWLVirtualProduction/HEAD/config.ocio --------------------------------------------------------------------------------