├── LICENSE ├── PuzzlePlatforms ├── .gitignore ├── Config │ ├── DefaultEditor.ini │ ├── DefaultEditorPerProjectUserSettings.ini │ ├── DefaultEngine.ini │ ├── DefaultGame.ini │ └── DefaultInput.ini ├── Content │ ├── Geometry │ │ └── Meshes │ │ │ ├── 1M_Cube.uasset │ │ │ ├── 1M_Cube_Chamfer.uasset │ │ │ ├── CubeMaterial.uasset │ │ │ └── TemplateFloor.uasset │ ├── Mannequin │ │ ├── Animations │ │ │ ├── ThirdPersonIdle.uasset │ │ │ ├── ThirdPersonJump_End.uasset │ │ │ ├── ThirdPersonJump_Loop.uasset │ │ │ ├── ThirdPersonJump_Start.uasset │ │ │ ├── ThirdPersonRun.uasset │ │ │ ├── ThirdPersonWalk.uasset │ │ │ ├── ThirdPerson_AnimBP.uasset │ │ │ ├── ThirdPerson_IdleRun_2D.uasset │ │ │ └── ThirdPerson_Jump.uasset │ │ └── Character │ │ │ ├── Materials │ │ │ ├── M_UE4Man_Body.uasset │ │ │ ├── M_UE4Man_ChestLogo.uasset │ │ │ └── MaterialLayers │ │ │ │ ├── ML_GlossyBlack_Latex_UE4.uasset │ │ │ │ ├── ML_Plastic_Shiny_Beige.uasset │ │ │ │ ├── ML_Plastic_Shiny_Beige_LOGO.uasset │ │ │ │ ├── ML_SoftMetal_UE4.uasset │ │ │ │ ├── T_ML_Aluminum01.uasset │ │ │ │ ├── T_ML_Aluminum01_N.uasset │ │ │ │ ├── T_ML_Rubber_Blue_01_D.uasset │ │ │ │ └── T_ML_Rubber_Blue_01_N.uasset │ │ │ ├── Mesh │ │ │ ├── SK_Mannequin.uasset │ │ │ ├── SK_Mannequin_PhysicsAsset.uasset │ │ │ └── UE4_Mannequin_Skeleton.uasset │ │ │ └── Textures │ │ │ ├── UE4Man_Logo_N.uasset │ │ │ ├── UE4_LOGO_CARD.uasset │ │ │ ├── UE4_Mannequin_MAT_MASKA.uasset │ │ │ └── UE4_Mannequin__normals.uasset │ ├── MenuSystem │ │ ├── Fonts │ │ │ ├── Audiowide-Regular.uasset │ │ │ └── Audiowide-Regular_Font.uasset │ │ ├── Images │ │ │ ├── 9728379504_030f0d6451_o.uasset │ │ │ ├── BoxExample.uasset │ │ │ ├── button.uasset │ │ │ ├── button_clicked.uasset │ │ │ ├── button_highlighted.uasset │ │ │ └── exit_icon.uasset │ │ ├── MainMenu.umap │ │ ├── WBP_InGameMenu.uasset │ │ └── WBP_MainMenu.uasset │ ├── PuzzlePlatforms │ │ ├── BP_PlatformTrigger.uasset │ │ └── Maps │ │ │ └── Lobby.umap │ ├── ThirdPerson │ │ └── Meshes │ │ │ ├── Bump_StaticMesh.uasset │ │ │ ├── CubeMaterial.uasset │ │ │ ├── LeftArm_StaticMesh.uasset │ │ │ ├── Linear_Stair_StaticMesh.uasset │ │ │ ├── RampMaterial.uasset │ │ │ ├── Ramp_StaticMesh.uasset │ │ │ └── RightArm_StaticMesh.uasset │ └── ThirdPersonCPP │ │ ├── Blueprints │ │ └── ThirdPersonCharacter.uasset │ │ └── Maps │ │ └── ThirdPersonExampleMap.umap ├── PuzzlePlatforms.uproject └── Source │ ├── PuzzlePlatforms.Target.cs │ ├── PuzzlePlatforms │ ├── MenuSystem │ │ ├── InGameMenu.cpp │ │ ├── InGameMenu.h │ │ ├── MainMenu.cpp │ │ ├── MainMenu.h │ │ ├── MenuInterface.cpp │ │ ├── MenuInterface.h │ │ ├── MenuWidget.cpp │ │ └── MenuWidget.h │ ├── MovingPlatform.cpp │ ├── MovingPlatform.h │ ├── PlatformTrigger.cpp │ ├── PlatformTrigger.h │ ├── PuzzlePlatforms.Build.cs │ ├── PuzzlePlatforms.cpp │ ├── PuzzlePlatforms.h │ ├── PuzzlePlatformsCharacter.cpp │ ├── PuzzlePlatformsCharacter.h │ ├── PuzzlePlatformsGameInstance.cpp │ ├── PuzzlePlatformsGameInstance.h │ ├── PuzzlePlatformsGameMode.cpp │ └── PuzzlePlatformsGameMode.h │ └── PuzzlePlatformsEditor.Target.cs └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/LICENSE -------------------------------------------------------------------------------- /PuzzlePlatforms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/.gitignore -------------------------------------------------------------------------------- /PuzzlePlatforms/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Config/DefaultEditor.ini -------------------------------------------------------------------------------- /PuzzlePlatforms/Config/DefaultEditorPerProjectUserSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Config/DefaultEditorPerProjectUserSettings.ini -------------------------------------------------------------------------------- /PuzzlePlatforms/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /PuzzlePlatforms/Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Config/DefaultGame.ini -------------------------------------------------------------------------------- /PuzzlePlatforms/Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Config/DefaultInput.ini -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Geometry/Meshes/1M_Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Geometry/Meshes/1M_Cube.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Geometry/Meshes/1M_Cube_Chamfer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Geometry/Meshes/1M_Cube_Chamfer.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Geometry/Meshes/CubeMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Geometry/Meshes/CubeMaterial.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Geometry/Meshes/TemplateFloor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Geometry/Meshes/TemplateFloor.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonIdle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonIdle.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonJump_End.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonJump_End.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonJump_Loop.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonJump_Loop.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonJump_Start.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonJump_Start.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonRun.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonRun.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonWalk.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Animations/ThirdPersonWalk.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Animations/ThirdPerson_AnimBP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Animations/ThirdPerson_AnimBP.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Animations/ThirdPerson_IdleRun_2D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Animations/ThirdPerson_IdleRun_2D.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Animations/ThirdPerson_Jump.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Animations/ThirdPerson_Jump.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/M_UE4Man_Body.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/M_UE4Man_Body.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/M_UE4Man_ChestLogo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/M_UE4Man_ChestLogo.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige_LOGO.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige_LOGO.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Mesh/SK_Mannequin.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Mesh/SK_Mannequin.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Mesh/SK_Mannequin_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Mesh/SK_Mannequin_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Mesh/UE4_Mannequin_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Mesh/UE4_Mannequin_Skeleton.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Textures/UE4Man_Logo_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Textures/UE4Man_Logo_N.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Textures/UE4_LOGO_CARD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Textures/UE4_LOGO_CARD.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Textures/UE4_Mannequin_MAT_MASKA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Textures/UE4_Mannequin_MAT_MASKA.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/Mannequin/Character/Textures/UE4_Mannequin__normals.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/Mannequin/Character/Textures/UE4_Mannequin__normals.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/Fonts/Audiowide-Regular.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/Fonts/Audiowide-Regular.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/Fonts/Audiowide-Regular_Font.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/Fonts/Audiowide-Regular_Font.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/Images/9728379504_030f0d6451_o.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/Images/9728379504_030f0d6451_o.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/Images/BoxExample.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/Images/BoxExample.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/Images/button.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/Images/button.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/Images/button_clicked.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/Images/button_clicked.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/Images/button_highlighted.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/Images/button_highlighted.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/Images/exit_icon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/Images/exit_icon.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/MainMenu.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/MainMenu.umap -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/WBP_InGameMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/WBP_InGameMenu.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/MenuSystem/WBP_MainMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/MenuSystem/WBP_MainMenu.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/PuzzlePlatforms/BP_PlatformTrigger.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/PuzzlePlatforms/BP_PlatformTrigger.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/PuzzlePlatforms/Maps/Lobby.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/PuzzlePlatforms/Maps/Lobby.umap -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/ThirdPerson/Meshes/Bump_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/ThirdPerson/Meshes/Bump_StaticMesh.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/ThirdPerson/Meshes/CubeMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/ThirdPerson/Meshes/CubeMaterial.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/ThirdPerson/Meshes/LeftArm_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/ThirdPerson/Meshes/LeftArm_StaticMesh.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/ThirdPerson/Meshes/Linear_Stair_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/ThirdPerson/Meshes/Linear_Stair_StaticMesh.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/ThirdPerson/Meshes/RampMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/ThirdPerson/Meshes/RampMaterial.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/ThirdPerson/Meshes/Ramp_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/ThirdPerson/Meshes/Ramp_StaticMesh.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/ThirdPerson/Meshes/RightArm_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/ThirdPerson/Meshes/RightArm_StaticMesh.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/ThirdPersonCPP/Blueprints/ThirdPersonCharacter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/ThirdPersonCPP/Blueprints/ThirdPersonCharacter.uasset -------------------------------------------------------------------------------- /PuzzlePlatforms/Content/ThirdPersonCPP/Maps/ThirdPersonExampleMap.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Content/ThirdPersonCPP/Maps/ThirdPersonExampleMap.umap -------------------------------------------------------------------------------- /PuzzlePlatforms/PuzzlePlatforms.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/PuzzlePlatforms.uproject -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms.Target.cs -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/InGameMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/InGameMenu.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/InGameMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/InGameMenu.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MainMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MainMenu.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MainMenu.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MenuInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MenuInterface.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MenuInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MenuInterface.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MenuWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MenuWidget.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MenuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MenuSystem/MenuWidget.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MovingPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MovingPlatform.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/MovingPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/MovingPlatform.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PlatformTrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PlatformTrigger.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PlatformTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PlatformTrigger.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatforms.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatforms.Build.cs -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatforms.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatforms.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsCharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsCharacter.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsCharacter.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsGameInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsGameInstance.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsGameInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsGameInstance.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsGameMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsGameMode.cpp -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsGameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatforms/PuzzlePlatformsGameMode.h -------------------------------------------------------------------------------- /PuzzlePlatforms/Source/PuzzlePlatformsEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/PuzzlePlatforms/Source/PuzzlePlatformsEditor.Target.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealMultiplayer/2_Menu_System/HEAD/README.md --------------------------------------------------------------------------------