├── .gitignore ├── Content ├── M_TestMat.uasset ├── Materials │ ├── MaterialFunctions │ │ ├── NVecApplyNormalStrength.uasset │ │ ├── NVecSimpleHeightmapDisplacement.uasset │ │ └── NVecTintColor.uasset │ ├── SimplePBR │ │ ├── MI_GlowingPlasticBlack.uasset │ │ ├── MI_GlowingPlasticBlue.uasset │ │ ├── MI_GlowingPlasticCyan.uasset │ │ ├── MI_GlowingPlasticGreen.uasset │ │ ├── MI_GlowingPlasticPurple.uasset │ │ ├── MI_GlowingPlasticRed.uasset │ │ ├── MI_GlowingPlasticWhite.uasset │ │ ├── MI_GlowingPlasticYellow.uasset │ │ ├── MI_Mirror.uasset │ │ ├── MI_RoughMetalBlack.uasset │ │ ├── MI_RoughMetalBlack_2.uasset │ │ ├── MI_RoughMetalBlue.uasset │ │ ├── MI_RoughMetalBlue_2.uasset │ │ ├── MI_RoughMetalCyan.uasset │ │ ├── MI_RoughMetalCyan_2.uasset │ │ ├── MI_RoughMetalGreen.uasset │ │ ├── MI_RoughMetalGreen_2.uasset │ │ ├── MI_RoughMetalPurple.uasset │ │ ├── MI_RoughMetalPurple_2.uasset │ │ ├── MI_RoughMetalRed.uasset │ │ ├── MI_RoughMetalRed_2.uasset │ │ ├── MI_RoughMetalWhite.uasset │ │ ├── MI_RoughMetalWhite_2.uasset │ │ ├── MI_RoughMetalYellow.uasset │ │ ├── MI_RoughMetalYellow_2.uasset │ │ ├── MI_RoughPlasticBlack.uasset │ │ ├── MI_RoughPlasticBlack_2.uasset │ │ ├── MI_RoughPlasticBlue.uasset │ │ ├── MI_RoughPlasticBlue_2.uasset │ │ ├── MI_RoughPlasticCyan.uasset │ │ ├── MI_RoughPlasticCyan_2.uasset │ │ ├── MI_RoughPlasticGreen.uasset │ │ ├── MI_RoughPlasticGreen_2.uasset │ │ ├── MI_RoughPlasticPurple.uasset │ │ ├── MI_RoughPlasticPurple_2.uasset │ │ ├── MI_RoughPlasticRed.uasset │ │ ├── MI_RoughPlasticRed_2.uasset │ │ ├── MI_RoughPlasticWhite.uasset │ │ ├── MI_RoughPlasticWhite_2.uasset │ │ ├── MI_RoughPlasticYellow.uasset │ │ ├── MI_RoughPlasticYellow_2.uasset │ │ ├── MI_ShinyMetalBlack.uasset │ │ ├── MI_ShinyMetalBlue.uasset │ │ ├── MI_ShinyMetalCyan.uasset │ │ ├── MI_ShinyMetalGreen.uasset │ │ ├── MI_ShinyMetalPurple.uasset │ │ ├── MI_ShinyMetalRed.uasset │ │ ├── MI_ShinyMetalWhite.uasset │ │ ├── MI_ShinyMetalYellow.uasset │ │ ├── MI_ShinyPlasticBlack.uasset │ │ ├── MI_ShinyPlasticBlue.uasset │ │ ├── MI_ShinyPlasticCyan.uasset │ │ ├── MI_ShinyPlasticGreen.uasset │ │ ├── MI_ShinyPlasticPurple.uasset │ │ ├── MI_ShinyPlasticRed.uasset │ │ ├── MI_ShinyPlasticWhite.uasset │ │ ├── MI_ShinyPlasticYellow.uasset │ │ ├── M_Simple.uasset │ │ └── M_SimplePBR.uasset │ ├── SimpleTexturedPBR │ │ └── M_SimpleTexturedPBR.uasset │ ├── SimpleTexturedPBRUsingRMA │ │ ├── MI_GroundGrass.uasset │ │ ├── MI_GroundMedievalPavement.uasset │ │ ├── MI_ImperialHangarFloor.uasset │ │ ├── MI_MordorRock.uasset │ │ ├── MI_TestRMA.uasset │ │ ├── M_SimpleTexturedPBRUsingRMA.uasset │ │ └── M_TestMat.uasset │ └── SimpleTexturedPBRUsingRMAWithHeightmap │ │ ├── MI_GroundGrassWithHeightmap.uasset │ │ ├── MI_GroundMedievalPavementWithHeightmap.uasset │ │ ├── MI_MordorRockWithHeightmap.uasset │ │ └── M_SimpleTexturedPBRUsingRMAWithHeightmap.uasset ├── Meshes │ └── Basic_Primitives │ │ ├── Bevelled_Unit_Cube.uasset │ │ ├── Bevelled_Unit_Cube_10.uasset │ │ ├── Bevelled_Unit_Cylinder_12.uasset │ │ ├── Bevelled_Unit_Cylinder_24.uasset │ │ ├── Bevelled_Unit_Cylinder_48.uasset │ │ ├── Bevelled_Unit_Right_Prism.uasset │ │ ├── Inverted_Unit_Sphere_12.uasset │ │ ├── Inverted_Unit_Sphere_192.uasset │ │ ├── Inverted_Unit_Sphere_24.uasset │ │ ├── Inverted_Unit_Sphere_48.uasset │ │ ├── Inverted_Unit_Sphere_96.uasset │ │ ├── Rounded_Unit_Cube.uasset │ │ ├── Rounded_Unit_Cube_10.uasset │ │ ├── Rounded_Unit_Cylinder_12.uasset │ │ ├── Rounded_Unit_Cylinder_24.uasset │ │ ├── Rounded_Unit_Cylinder_48.uasset │ │ ├── Rounded_Unit_Right_Prism.uasset │ │ ├── Tessellation_Sphere_0.uasset │ │ ├── Tessellation_Sphere_1.uasset │ │ ├── Tessellation_Sphere_10.uasset │ │ ├── Tessellation_Sphere_11.uasset │ │ ├── Tessellation_Sphere_12.uasset │ │ ├── Tessellation_Sphere_13.uasset │ │ ├── Tessellation_Sphere_14.uasset │ │ ├── Tessellation_Sphere_15.uasset │ │ ├── Tessellation_Sphere_16.uasset │ │ ├── Tessellation_Sphere_17.uasset │ │ ├── Tessellation_Sphere_18.uasset │ │ ├── Tessellation_Sphere_19.uasset │ │ ├── Tessellation_Sphere_2.uasset │ │ ├── Tessellation_Sphere_20.uasset │ │ ├── Tessellation_Sphere_21.uasset │ │ ├── Tessellation_Sphere_22.uasset │ │ ├── Tessellation_Sphere_24.uasset │ │ ├── Tessellation_Sphere_25.uasset │ │ ├── Tessellation_Sphere_26.uasset │ │ ├── Tessellation_Sphere_27.uasset │ │ ├── Tessellation_Sphere_28.uasset │ │ ├── Tessellation_Sphere_29.uasset │ │ ├── Tessellation_Sphere_3.uasset │ │ ├── Tessellation_Sphere_30.uasset │ │ ├── Tessellation_Sphere_31.uasset │ │ ├── Tessellation_Sphere_32.uasset │ │ ├── Tessellation_Sphere_4.uasset │ │ ├── Tessellation_Sphere_5.uasset │ │ ├── Tessellation_Sphere_6.uasset │ │ ├── Tessellation_Sphere_7.uasset │ │ ├── Tessellation_Sphere_8.uasset │ │ ├── Tessellation_Sphere_9.uasset │ │ ├── Tesselllation_Sphere_23.uasset │ │ ├── Unit_Cube.uasset │ │ ├── Unit_Cube_10div.uasset │ │ ├── Unit_Cylinder_12.uasset │ │ ├── Unit_Cylinder_24.uasset │ │ ├── Unit_Cylinder_48.uasset │ │ ├── Unit_Cylinder_96.uasset │ │ ├── Unit_Plane.uasset │ │ ├── Unit_Plane_10.uasset │ │ ├── Unit_Plane_128.uasset │ │ ├── Unit_Plane_16.uasset │ │ ├── Unit_Plane_2.uasset │ │ ├── Unit_Plane_256.uasset │ │ ├── Unit_Plane_32.uasset │ │ ├── Unit_Plane_4.uasset │ │ ├── Unit_Plane_512.uasset │ │ ├── Unit_Plane_64.uasset │ │ ├── Unit_Plane_8.uasset │ │ ├── Unit_Right_Prism.uasset │ │ ├── Unit_Sphere_12.uasset │ │ ├── Unit_Sphere_192.uasset │ │ ├── Unit_Sphere_24.uasset │ │ ├── Unit_Sphere_48.uasset │ │ └── Unit_Sphere_96.uasset ├── TestMap.umap └── Textures │ └── Samples │ ├── ImperialHangarFloor_Base_Color.uasset │ ├── ImperialHangarFloor_Normal.uasset │ ├── ImperialHangarFloor_RMA.uasset │ ├── Mordor_Rock_Base_Color.uasset │ ├── Mordor_Rock_Normal.uasset │ ├── Mordor_Rock_RMA.uasset │ ├── Mordor_Rock_height.uasset │ ├── ground_grass_Base_Color.uasset │ ├── ground_grass_Height.uasset │ ├── ground_grass_Normal.uasset │ ├── ground_grass_RMA.uasset │ ├── ground_medieval_pavement_Base_Color.uasset │ ├── ground_medieval_pavement_Height.uasset │ ├── ground_medieval_pavement_Normal.uasset │ └── ground_medieval_pavement_RMA.uasset ├── Graphic_Resources └── Basic_Primitives │ ├── Basic_Primitives.lxo │ ├── Bevelled_Unit_Cube.fbx │ ├── Bevelled_Unit_Cube_10.fbx │ ├── Bevelled_Unit_Cylinder_12.fbx │ ├── Bevelled_Unit_Cylinder_24.fbx │ ├── Bevelled_Unit_Cylinder_48.fbx │ ├── Bevelled_Unit_Right_Prism.fbx │ ├── Inverted_Unit_Sphere_12.fbx │ ├── Inverted_Unit_Sphere_192.fbx │ ├── Inverted_Unit_Sphere_24.fbx │ ├── Inverted_Unit_Sphere_48.fbx │ ├── Inverted_Unit_Sphere_96.fbx │ ├── Rounded_Unit_Cube.fbx │ ├── Rounded_Unit_Cube_10.fbx │ ├── Rounded_Unit_Cylinder_12.fbx │ ├── Rounded_Unit_Cylinder_24.fbx │ ├── Rounded_Unit_Cylinder_48.fbx │ ├── Rounded_Unit_Right_Prism.fbx │ ├── Tessellation_Sphere_0.fbx │ ├── Tessellation_Sphere_1.fbx │ ├── Tessellation_Sphere_10.fbx │ ├── Tessellation_Sphere_11.fbx │ ├── Tessellation_Sphere_12.fbx │ ├── Tessellation_Sphere_13.fbx │ ├── Tessellation_Sphere_14.fbx │ ├── Tessellation_Sphere_15.fbx │ ├── Tessellation_Sphere_16.fbx │ ├── Tessellation_Sphere_17.fbx │ ├── Tessellation_Sphere_18.fbx │ ├── Tessellation_Sphere_19.fbx │ ├── Tessellation_Sphere_2.fbx │ ├── Tessellation_Sphere_20.fbx │ ├── Tessellation_Sphere_21.fbx │ ├── Tessellation_Sphere_22.fbx │ ├── Tessellation_Sphere_24.fbx │ ├── Tessellation_Sphere_25.fbx │ ├── Tessellation_Sphere_26.fbx │ ├── Tessellation_Sphere_27.fbx │ ├── Tessellation_Sphere_28.fbx │ ├── Tessellation_Sphere_29.fbx │ ├── Tessellation_Sphere_3.fbx │ ├── Tessellation_Sphere_30.fbx │ ├── Tessellation_Sphere_31.fbx │ ├── Tessellation_Sphere_32.fbx │ ├── Tessellation_Sphere_4.fbx │ ├── Tessellation_Sphere_5.fbx │ ├── Tessellation_Sphere_6.fbx │ ├── Tessellation_Sphere_7.fbx │ ├── Tessellation_Sphere_8.fbx │ ├── Tessellation_Sphere_9.fbx │ ├── Tesselllation_Sphere_23.fbx │ ├── Unit_Cube.fbx │ ├── Unit_Cube_10div.fbx │ ├── Unit_Cylinder_12.fbx │ ├── Unit_Cylinder_24.fbx │ ├── Unit_Cylinder_48.fbx │ ├── Unit_Cylinder_96.fbx │ ├── Unit_Plane.fbx │ ├── Unit_Plane_10.fbx │ ├── Unit_Plane_128.fbx │ ├── Unit_Plane_16.fbx │ ├── Unit_Plane_2.fbx │ ├── Unit_Plane_256.fbx │ ├── Unit_Plane_32.fbx │ ├── Unit_Plane_4.fbx │ ├── Unit_Plane_512.fbx │ ├── Unit_Plane_64.fbx │ ├── Unit_Plane_8.fbx │ ├── Unit_Right_Prism.fbx │ ├── Unit_Sphere_12.fbx │ ├── Unit_Sphere_192.fbx │ ├── Unit_Sphere_24.fbx │ ├── Unit_Sphere_48.fbx │ └── Unit_Sphere_96.fbx ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/M_TestMat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/M_TestMat.uasset -------------------------------------------------------------------------------- /Content/Materials/MaterialFunctions/NVecApplyNormalStrength.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/MaterialFunctions/NVecApplyNormalStrength.uasset -------------------------------------------------------------------------------- /Content/Materials/MaterialFunctions/NVecSimpleHeightmapDisplacement.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/MaterialFunctions/NVecSimpleHeightmapDisplacement.uasset -------------------------------------------------------------------------------- /Content/Materials/MaterialFunctions/NVecTintColor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/MaterialFunctions/NVecTintColor.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_GlowingPlasticBlack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_GlowingPlasticBlack.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_GlowingPlasticBlue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_GlowingPlasticBlue.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_GlowingPlasticCyan.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_GlowingPlasticCyan.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_GlowingPlasticGreen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_GlowingPlasticGreen.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_GlowingPlasticPurple.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_GlowingPlasticPurple.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_GlowingPlasticRed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_GlowingPlasticRed.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_GlowingPlasticWhite.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_GlowingPlasticWhite.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_GlowingPlasticYellow.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_GlowingPlasticYellow.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_Mirror.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_Mirror.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalBlack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalBlack.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalBlack_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalBlack_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalBlue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalBlue.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalBlue_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalBlue_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalCyan.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalCyan.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalCyan_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalCyan_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalGreen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalGreen.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalGreen_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalGreen_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalPurple.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalPurple.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalPurple_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalPurple_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalRed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalRed.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalRed_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalRed_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalWhite.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalWhite.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalWhite_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalWhite_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalYellow.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalYellow.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughMetalYellow_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughMetalYellow_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticBlack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticBlack.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticBlack_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticBlack_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticBlue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticBlue.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticBlue_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticBlue_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticCyan.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticCyan.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticCyan_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticCyan_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticGreen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticGreen.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticGreen_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticGreen_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticPurple.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticPurple.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticPurple_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticPurple_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticRed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticRed.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticRed_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticRed_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticWhite.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticWhite.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticWhite_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticWhite_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticYellow.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticYellow.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_RoughPlasticYellow_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_RoughPlasticYellow_2.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyMetalBlack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyMetalBlack.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyMetalBlue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyMetalBlue.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyMetalCyan.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyMetalCyan.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyMetalGreen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyMetalGreen.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyMetalPurple.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyMetalPurple.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyMetalRed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyMetalRed.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyMetalWhite.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyMetalWhite.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyMetalYellow.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyMetalYellow.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyPlasticBlack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyPlasticBlack.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyPlasticBlue.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyPlasticBlue.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyPlasticCyan.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyPlasticCyan.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyPlasticGreen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyPlasticGreen.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyPlasticPurple.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyPlasticPurple.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyPlasticRed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyPlasticRed.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyPlasticWhite.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyPlasticWhite.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/MI_ShinyPlasticYellow.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/MI_ShinyPlasticYellow.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/M_Simple.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/M_Simple.uasset -------------------------------------------------------------------------------- /Content/Materials/SimplePBR/M_SimplePBR.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimplePBR/M_SimplePBR.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBR/M_SimpleTexturedPBR.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBR/M_SimpleTexturedPBR.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMA/MI_GroundGrass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMA/MI_GroundGrass.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMA/MI_GroundMedievalPavement.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMA/MI_GroundMedievalPavement.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMA/MI_ImperialHangarFloor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMA/MI_ImperialHangarFloor.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMA/MI_MordorRock.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMA/MI_MordorRock.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMA/MI_TestRMA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMA/MI_TestRMA.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMA/M_SimpleTexturedPBRUsingRMA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMA/M_SimpleTexturedPBRUsingRMA.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMA/M_TestMat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMA/M_TestMat.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMAWithHeightmap/MI_GroundGrassWithHeightmap.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMAWithHeightmap/MI_GroundGrassWithHeightmap.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMAWithHeightmap/MI_GroundMedievalPavementWithHeightmap.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMAWithHeightmap/MI_GroundMedievalPavementWithHeightmap.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMAWithHeightmap/MI_MordorRockWithHeightmap.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMAWithHeightmap/MI_MordorRockWithHeightmap.uasset -------------------------------------------------------------------------------- /Content/Materials/SimpleTexturedPBRUsingRMAWithHeightmap/M_SimpleTexturedPBRUsingRMAWithHeightmap.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Materials/SimpleTexturedPBRUsingRMAWithHeightmap/M_SimpleTexturedPBRUsingRMAWithHeightmap.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Bevelled_Unit_Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Bevelled_Unit_Cube.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Bevelled_Unit_Cube_10.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Bevelled_Unit_Cube_10.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Bevelled_Unit_Cylinder_12.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Bevelled_Unit_Cylinder_12.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Bevelled_Unit_Cylinder_24.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Bevelled_Unit_Cylinder_24.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Bevelled_Unit_Cylinder_48.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Bevelled_Unit_Cylinder_48.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Bevelled_Unit_Right_Prism.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Bevelled_Unit_Right_Prism.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_12.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_12.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_192.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_192.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_24.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_24.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_48.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_48.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_96.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Inverted_Unit_Sphere_96.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Rounded_Unit_Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Rounded_Unit_Cube.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Rounded_Unit_Cube_10.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Rounded_Unit_Cube_10.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Rounded_Unit_Cylinder_12.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Rounded_Unit_Cylinder_12.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Rounded_Unit_Cylinder_24.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Rounded_Unit_Cylinder_24.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Rounded_Unit_Cylinder_48.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Rounded_Unit_Cylinder_48.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Rounded_Unit_Right_Prism.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Rounded_Unit_Right_Prism.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_0.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_0.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_1.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_10.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_10.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_11.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_11.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_12.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_12.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_13.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_13.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_14.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_14.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_15.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_15.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_16.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_16.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_17.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_17.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_18.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_18.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_19.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_19.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_2.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_20.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_20.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_21.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_21.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_22.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_22.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_24.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_24.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_25.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_25.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_26.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_26.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_27.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_27.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_28.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_28.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_29.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_29.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_3.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_30.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_30.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_31.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_31.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_32.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_32.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_4.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_5.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_5.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_6.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_6.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_7.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_7.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_8.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_8.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tessellation_Sphere_9.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tessellation_Sphere_9.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Tesselllation_Sphere_23.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Tesselllation_Sphere_23.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Cube.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Cube_10div.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Cube_10div.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Cylinder_12.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Cylinder_12.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Cylinder_24.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Cylinder_24.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Cylinder_48.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Cylinder_48.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Cylinder_96.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Cylinder_96.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_10.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_10.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_128.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_128.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_16.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_16.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_2.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_256.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_256.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_32.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_32.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_4.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_512.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_512.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_64.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_64.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Plane_8.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Plane_8.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Right_Prism.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Right_Prism.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Sphere_12.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Sphere_12.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Sphere_192.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Sphere_192.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Sphere_24.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Sphere_24.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Sphere_48.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Sphere_48.uasset -------------------------------------------------------------------------------- /Content/Meshes/Basic_Primitives/Unit_Sphere_96.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Meshes/Basic_Primitives/Unit_Sphere_96.uasset -------------------------------------------------------------------------------- /Content/TestMap.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/TestMap.umap -------------------------------------------------------------------------------- /Content/Textures/Samples/ImperialHangarFloor_Base_Color.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ImperialHangarFloor_Base_Color.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ImperialHangarFloor_Normal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ImperialHangarFloor_Normal.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ImperialHangarFloor_RMA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ImperialHangarFloor_RMA.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/Mordor_Rock_Base_Color.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/Mordor_Rock_Base_Color.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/Mordor_Rock_Normal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/Mordor_Rock_Normal.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/Mordor_Rock_RMA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/Mordor_Rock_RMA.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/Mordor_Rock_height.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/Mordor_Rock_height.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ground_grass_Base_Color.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ground_grass_Base_Color.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ground_grass_Height.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ground_grass_Height.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ground_grass_Normal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ground_grass_Normal.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ground_grass_RMA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ground_grass_RMA.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ground_medieval_pavement_Base_Color.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ground_medieval_pavement_Base_Color.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ground_medieval_pavement_Height.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ground_medieval_pavement_Height.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ground_medieval_pavement_Normal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ground_medieval_pavement_Normal.uasset -------------------------------------------------------------------------------- /Content/Textures/Samples/ground_medieval_pavement_RMA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Content/Textures/Samples/ground_medieval_pavement_RMA.uasset -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Basic_Primitives.lxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Basic_Primitives.lxo -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cube.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cube_10.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cube_10.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cylinder_12.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cylinder_12.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cylinder_24.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cylinder_24.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cylinder_48.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Bevelled_Unit_Cylinder_48.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Bevelled_Unit_Right_Prism.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Bevelled_Unit_Right_Prism.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_12.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_12.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_192.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_192.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_24.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_24.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_48.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_48.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_96.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Inverted_Unit_Sphere_96.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Rounded_Unit_Cube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Rounded_Unit_Cube.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Rounded_Unit_Cube_10.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Rounded_Unit_Cube_10.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Rounded_Unit_Cylinder_12.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Rounded_Unit_Cylinder_12.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Rounded_Unit_Cylinder_24.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Rounded_Unit_Cylinder_24.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Rounded_Unit_Cylinder_48.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Rounded_Unit_Cylinder_48.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Rounded_Unit_Right_Prism.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Rounded_Unit_Right_Prism.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_0.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_0.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_1.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_10.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_10.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_11.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_11.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_12.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_12.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_13.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_13.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_14.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_14.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_15.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_15.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_16.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_16.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_17.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_17.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_18.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_18.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_19.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_19.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_2.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_20.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_20.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_21.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_21.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_22.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_22.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_24.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_24.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_25.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_25.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_26.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_26.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_27.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_27.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_28.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_28.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_29.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_29.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_3.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_3.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_30.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_30.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_31.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_31.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_32.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_32.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_4.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_4.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_5.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_5.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_6.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_6.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_7.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_7.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_8.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_8.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tessellation_Sphere_9.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tessellation_Sphere_9.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Tesselllation_Sphere_23.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Tesselllation_Sphere_23.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Cube.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Cube.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Cube_10div.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Cube_10div.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Cylinder_12.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Cylinder_12.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Cylinder_24.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Cylinder_24.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Cylinder_48.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Cylinder_48.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Cylinder_96.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Cylinder_96.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_10.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_10.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_128.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_128.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_16.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_16.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_2.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_256.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_256.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_32.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_32.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_4.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_4.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_512.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_512.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_64.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_64.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Plane_8.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Plane_8.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Right_Prism.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Right_Prism.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Sphere_12.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Sphere_12.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Sphere_192.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Sphere_192.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Sphere_24.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Sphere_24.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Sphere_48.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Sphere_48.fbx -------------------------------------------------------------------------------- /Graphic_Resources/Basic_Primitives/Unit_Sphere_96.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/Graphic_Resources/Basic_Primitives/Unit_Sphere_96.fbx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/normalvector/ue4_basic_toolkit/HEAD/README.md --------------------------------------------------------------------------------