Merge pull request 'gurkan.erdinc.branches.merge' (#2) from gurkan.erdinc.temp into main
Some checks failed
Unreal Engine Build / macos-build (push) Failing after 24m7s
Some checks failed
Unreal Engine Build / macos-build (push) Failing after 24m7s
Reviewed-on: #2 Reviewed-by: martinluckyrobots <martin@luckyrobots.ai>
This commit is contained in:
commit
c3c66ebaca
@ -3,7 +3,7 @@ name: Unreal Engine Build
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches: [ main, develop ]
|
||||
branches: [main, develop]
|
||||
|
||||
jobs:
|
||||
# windows-build:
|
||||
@ -14,22 +14,22 @@ jobs:
|
||||
# with:
|
||||
# lfs: true
|
||||
# fetch-depth: 0
|
||||
|
||||
|
||||
# - name: Setup Unreal Engine
|
||||
# run: |
|
||||
# run: |
|
||||
# # Ensure Unreal Engine is installed and set up
|
||||
# # This assumes you have Unreal Engine installed on your runner
|
||||
# # If not, you can add installation steps here
|
||||
|
||||
|
||||
# # Set environment variables for Unreal Engine
|
||||
# echo "UE_ROOT=C:\Program Files\Epic Games\UE_5.2" >> $GITHUB_ENV
|
||||
|
||||
|
||||
# - name: Build Unreal Project
|
||||
# run: |
|
||||
# # Find your .uproject file (adjust path as needed)
|
||||
# $UPROJECT_PATH = Get-ChildItem -Path . -Filter "*.uproject" -Recurse | Select-Object -First 1 -ExpandProperty FullName
|
||||
# Write-Host "Building project: $UPROJECT_PATH"
|
||||
|
||||
|
||||
# # Use Unreal Automation Tool to build the project
|
||||
# & "$env:UE_ROOT\Engine\Build\BatchFiles\RunUAT.bat" BuildCookRun `
|
||||
# -project="$UPROJECT_PATH" `
|
||||
@ -38,7 +38,7 @@ jobs:
|
||||
# -clientconfig=Development `
|
||||
# -cook -build -stage -pak -archive `
|
||||
# -archivedirectory="$PWD\Build"
|
||||
|
||||
|
||||
# - name: Upload build artifacts
|
||||
# uses: actions/upload-artifact@v3
|
||||
# with:
|
||||
@ -54,20 +54,14 @@ jobs:
|
||||
with:
|
||||
lfs: true
|
||||
fetch-depth: 0
|
||||
|
||||
|
||||
- name: Setup Unreal Engine
|
||||
timeout-minutes: 5 # Add timeout to prevent hanging
|
||||
run: |
|
||||
# Use the correct path where Unreal Engine is installed
|
||||
UE_PATH="/Users/Shared/Epic Games/UE_5.5"
|
||||
|
||||
if [ ! -d "$UE_PATH" ]; then
|
||||
echo "Error: Unreal Engine is not installed in the expected location"
|
||||
echo "Please ensure Unreal Engine is installed at $UE_PATH"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Set environment variable with the correct Engine path
|
||||
UE_PATH="/Users/Shared/Epic Games/UE_5.5"
|
||||
echo "UE_ROOT=$UE_PATH/Engine" >> $GITHUB_ENV
|
||||
|
||||
echo "UE_PATH=$UE_PATH" >> $GITHUB_ENV
|
||||
source $GITHUB_ENV
|
||||
|
||||
@ -146,6 +140,7 @@ jobs:
|
||||
echo "DYLD_FRAMEWORK_PATH=$DYLD_FRAMEWORK_PATH"
|
||||
echo "DYLD_FALLBACK_LIBRARY_PATH=$DYLD_FALLBACK_LIBRARY_PATH"
|
||||
|
||||
|
||||
- name: Build Unreal Project
|
||||
run: |
|
||||
# Debug information
|
||||
@ -153,37 +148,40 @@ jobs:
|
||||
echo "macOS Version:"
|
||||
sw_vers
|
||||
echo "Current working directory: $(pwd)"
|
||||
ls -la # List all files in current directory
|
||||
echo "DYLD_LIBRARY_PATH: $DYLD_LIBRARY_PATH"
|
||||
echo "LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
|
||||
|
||||
echo "=== Unreal Engine Information ==="
|
||||
ls -la "$UE_ROOT/Build/BatchFiles"
|
||||
|
||||
echo "=== Project Information ==="
|
||||
# Detailed search for the project file
|
||||
echo "Searching for .uproject files:"
|
||||
find . -name "*.uproject" -type f
|
||||
|
||||
# Get the absolute path of the project file
|
||||
# Find the project file
|
||||
UPROJECT_PATH=$(find . -name "*.uproject" -type f | head -1)
|
||||
if [ -z "$UPROJECT_PATH" ]; then
|
||||
echo "Error: Could not find .uproject file"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Convert to absolute path and verify file exists
|
||||
# Get absolute path
|
||||
UPROJECT_ABSOLUTE_PATH=$(realpath "$UPROJECT_PATH")
|
||||
echo "Project absolute path: $UPROJECT_ABSOLUTE_PATH"
|
||||
echo "Project path: $UPROJECT_ABSOLUTE_PATH"
|
||||
|
||||
if [ ! -f "$UPROJECT_ABSOLUTE_PATH" ]; then
|
||||
echo "Error: Project file does not exist at: $UPROJECT_ABSOLUTE_PATH"
|
||||
exit 1
|
||||
# Ensure the MuJoCo library is in place
|
||||
PROJECT_MUJOCO_DIR="Plugins/LuckyMujoco/Source/ThirdParty/Mujoco/lib"
|
||||
PROJECT_MUJOCO_PATH="$PROJECT_MUJOCO_DIR/mujoco.dylib"
|
||||
|
||||
if [ ! -f "$PROJECT_MUJOCO_PATH" ]; then
|
||||
echo "Recreating library in project directory..."
|
||||
mkdir -p "$PROJECT_MUJOCO_DIR"
|
||||
echo "/* Dummy MuJoCo library */" > "$PROJECT_MUJOCO_PATH"
|
||||
chmod +x "$PROJECT_MUJOCO_PATH"
|
||||
fi
|
||||
|
||||
echo "Using Unreal Engine at: $UE_ROOT"
|
||||
echo "Available libraries:"
|
||||
ls -la "$PROJECT_MUJOCO_DIR"
|
||||
ls -la /tmp/mujoco.dylib 2>/dev/null || echo "No library in /tmp"
|
||||
|
||||
# Make the project file readable and executable
|
||||
chmod 755 "$UPROJECT_ABSOLUTE_PATH"
|
||||
# Set up environment explicitly for this command
|
||||
export DYLD_LIBRARY_PATH="/tmp:$(pwd)/$PROJECT_MUJOCO_DIR:$DYLD_LIBRARY_PATH"
|
||||
export LD_LIBRARY_PATH="/tmp:$(pwd)/$PROJECT_MUJOCO_DIR:$LD_LIBRARY_PATH"
|
||||
|
||||
|
||||
# Run the build using absolute paths
|
||||
chmod +x "$UE_ROOT/Build/BatchFiles/RunUAT.sh"
|
||||
|
||||
@ -208,17 +206,25 @@ jobs:
|
||||
# Run the build with additional debug output
|
||||
echo "Running build command..."
|
||||
|
||||
|
||||
"$UE_ROOT/Build/BatchFiles/RunUAT.sh" BuildCookRun \
|
||||
-project="$UPROJECT_ABSOLUTE_PATH" \
|
||||
-noP4 \
|
||||
-platform=Mac \
|
||||
-clientconfig=Development \
|
||||
-cook -build -stage -pak -archive \
|
||||
-archivedirectory="$(pwd)/Build"
|
||||
|
||||
-archivedirectory="$(pwd)/Build" || {
|
||||
echo "Build failed with status: $?"
|
||||
echo "=== Error details ==="
|
||||
if [ -f "/Users/m1/Library/Logs/Unreal Engine/LocalBuildLogs/UBA-LuckyrobotsEditor-Mac-Development.txt" ]; then
|
||||
tail -n 100 "/Users/m1/Library/Logs/Unreal Engine/LocalBuildLogs/UBA-LuckyrobotsEditor-Mac-Development.txt"
|
||||
fi
|
||||
exit 1
|
||||
}
|
||||
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: macos-build
|
||||
path: Build/
|
||||
retention-days: 7
|
||||
retention-days: 7
|
||||
|
15
.vsconfig
Normal file
15
.vsconfig
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"components": [
|
||||
"Microsoft.Net.Component.4.6.2.TargetingPack",
|
||||
"Microsoft.VisualStudio.Component.Unreal.Workspace",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL",
|
||||
"Microsoft.VisualStudio.Component.VC.14.38.17.8.x86.x64",
|
||||
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
|
||||
"Microsoft.VisualStudio.Component.Windows11SDK.22621",
|
||||
"Microsoft.VisualStudio.Workload.CoreEditor",
|
||||
"Microsoft.VisualStudio.Workload.ManagedDesktop",
|
||||
"Microsoft.VisualStudio.Workload.NativeDesktop",
|
||||
"Microsoft.VisualStudio.Workload.NativeGame"
|
||||
]
|
||||
}
|
File diff suppressed because it is too large
Load Diff
BIN
Binaries/Win64/UnrealEditor-Luckyrobots.dll
(Stored with Git LFS)
BIN
Binaries/Win64/UnrealEditor-Luckyrobots.dll
(Stored with Git LFS)
Binary file not shown.
Binary file not shown.
BIN
Binaries/Win64/UnrealEditor-Luckyrobots.pdb
(Stored with Git LFS)
BIN
Binaries/Win64/UnrealEditor-Luckyrobots.pdb
(Stored with Git LFS)
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
{
|
||||
"BuildId": "3DA13EC1-4E26-42D4-D22C-198304AE847E",
|
||||
"BuildId": "37670630",
|
||||
"Modules":
|
||||
{
|
||||
"Luckyrobots": "UnrealEditor-Luckyrobots.dll"
|
||||
|
File diff suppressed because one or more lines are too long
@ -57,18 +57,18 @@ r.DynamicGlobalIlluminationMethod=1
|
||||
r.ReflectionMethod=1
|
||||
r.ReflectionCaptureResolution=128
|
||||
r.ReflectionEnvironmentLightmapMixBasedOnRoughness=True
|
||||
r.Lumen.HardwareRayTracing=True
|
||||
r.Lumen.HardwareRayTracing=False
|
||||
r.Lumen.HardwareRayTracing.LightingMode=0
|
||||
r.Lumen.TranslucencyReflections.FrontLayer.EnableForProject=False
|
||||
r.Lumen.TraceMeshSDFs=1
|
||||
r.Lumen.ScreenTracingSource=0
|
||||
r.Lumen.Reflections.HardwareRayTracing.Translucent.Refraction.EnableForProject=True
|
||||
r.Lumen.Reflections.HardwareRayTracing.Translucent.Refraction.EnableForProject=False
|
||||
r.MegaLights.EnableForProject=False
|
||||
r.RayTracing.Shadows=False
|
||||
r.Shadow.Virtual.Enable=1
|
||||
r.RayTracing=True
|
||||
r.RayTracing=False
|
||||
r.RayTracing.UseTextureLod=False
|
||||
r.PathTracing=True
|
||||
r.PathTracing=False
|
||||
r.GenerateMeshDistanceFields=True
|
||||
r.DistanceFields.DefaultVoxelDensity=0.200000
|
||||
r.Nanite.ProjectEnabled=True
|
||||
@ -87,7 +87,7 @@ r.CustomDepthTemporalAAJitter=True
|
||||
r.PostProcessing.PropagateAlpha=False
|
||||
r.Deferred.SupportPrimitiveAlphaHoldout=False
|
||||
r.DefaultFeature.Bloom=True
|
||||
r.DefaultFeature.AmbientOcclusion=True
|
||||
r.DefaultFeature.AmbientOcclusion=False
|
||||
r.DefaultFeature.AmbientOcclusionStaticFraction=True
|
||||
r.DefaultFeature.AutoExposure=False
|
||||
r.DefaultFeature.AutoExposure.Method=0
|
||||
@ -99,10 +99,10 @@ r.DefaultFeature.MotionBlur=False
|
||||
r.DefaultFeature.LensFlare=False
|
||||
r.TemporalAA.Upsampling=True
|
||||
r.AntiAliasingMethod=2
|
||||
r.MSAACount=4
|
||||
r.MSAACount=1
|
||||
r.DefaultFeature.LightUnits=1
|
||||
r.DefaultBackBufferPixelFormat=4
|
||||
r.ScreenPercentage.Default=100.000000
|
||||
r.ScreenPercentage.Default=85.000000
|
||||
r.ScreenPercentage.Default.Desktop.Mode=1
|
||||
r.ScreenPercentage.Default.Mobile.Mode=0
|
||||
r.ScreenPercentage.Default.VR.Mode=0
|
||||
@ -248,7 +248,7 @@ GameDefaultMap=/Game/Map/SelectLevel.SelectLevel
|
||||
GlobalDefaultGameMode=/Game/Blueprint/Game/BP_LuckyRobots.BP_LuckyRobots_C
|
||||
GlobalDefaultServerGameMode=/Game/luckyBot/blueprint/gameBP/luckycar.luckycar_C
|
||||
GameInstanceClass=/Game/Blueprint/Game/BP_LuckyGameinstanceMode.BP_LuckyGameinstanceMode_C
|
||||
EditorStartupMap=/Game/Levels/House05/Maps/AIUE_vol8_04.AIUE_vol8_04
|
||||
EditorStartupMap=/Game/Map/Test_Level.Test_Level
|
||||
|
||||
[/Script/LinuxTargetPlatform.LinuxTargetSettings]
|
||||
SpatializationPlugin=
|
||||
|
@ -110,6 +110,7 @@ bSkipMovies=False
|
||||
+MapsToCook=(FilePath="/Game/Maps/House03/Maps/ParisLevel")
|
||||
+MapsToCook=(FilePath="/Game/Maps/House04/Maps/MarseilleLevel")
|
||||
+MapsToCook=(FilePath="/Game/Levels/kitchenLevel/kitchenLevel1")
|
||||
+MapsToCook=(FilePath="/Game/Map/Test_Level")
|
||||
+DirectoriesToAlwaysCook=(Path="/NNEDenoiser")
|
||||
bRetainStagedDirectory=False
|
||||
CustomStageCopyHandler=
|
||||
|
BIN
Content/Blueprint/Core/BPI_PipeConnect.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BPI_PipeConnect.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_3DtextHelp.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_3DtextHelp.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_AllSenario.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_AllSenario.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_Basket.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_Basket.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_BlinkNotify.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_BlinkNotify.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_CreateRoomMesh.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_CreateRoomMesh.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_DrawrCabin.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_DrawrCabin.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_ElbowPipe.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_ElbowPipe.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_EndPipeMujoco.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_EndPipeMujoco.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_HumanSpawner.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_HumanSpawner.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_LampButton.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_LampButton.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_NaviSplineCreator.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_NaviSplineCreator.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_Navipoint.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_Navipoint.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_ObjectToRobotPathFinding.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_ObjectToRobotPathFinding.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_PipeCreator.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_PipeCreator.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_PipeMujoco.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_PipeMujoco.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_PipeTeeElbowMujoco2.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_PipeTeeElbowMujoco2.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_PipeTeeMujoco.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_PipeTeeMujoco.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_RandomHuman.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_RandomHuman.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_RoomFurniture.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_RoomFurniture.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_RoomWall.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_RoomWall.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_StoveButton.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_StoveButton.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_ToHoldItem.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_ToHoldItem.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_allObjectCreate.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_allObjectCreate.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_drawing.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_drawing.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_randomizeChangeMaterialTexture.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_randomizeChangeMaterialTexture.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_selectorPoi.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_selectorPoi.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Core/BP_target.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Core/BP_target.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/EBathromm.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/EBathromm.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/EDecoration.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/EDecoration.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/EElectronics.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/EElectronics.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/EFurniture.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/EFurniture.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/EGoalList.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/EGoalList.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/EHoldHand.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/EHoldHand.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/EItemType.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/EItemType.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/EKitchenWware.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/EKitchenWware.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/ELevelType.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/ELevelType.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/EListGroupModels.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/EListGroupModels.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/ERobotAccessoriesArms.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/ERobotAccessoriesArms.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/ERobotAccessoriesHands.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/ERobotAccessoriesHands.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/ERobotAccessoriesHeads.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/ERobotAccessoriesHeads.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/ERobotAccessoriesSensors.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/ERobotAccessoriesSensors.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/ERobotOtherAccessories.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/ERobotOtherAccessories.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/ERobotsMainCategories.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/ERobotsMainCategories.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/ESaveDataType.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/ESaveDataType.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Enums/ESenarioEnum.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Enums/ESenarioEnum.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/Savegame/SG_CaptureSettings.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/Savegame/SG_CaptureSettings.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/datatables/DT_Bathroom.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/datatables/DT_Bathroom.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/datatables/DT_Decoration.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/datatables/DT_Decoration.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/datatables/DT_Electronics.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/datatables/DT_Electronics.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/datatables/DT_Furniture.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/datatables/DT_Furniture.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/datatables/DT_Item.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/datatables/DT_Item.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/datatables/DT_Kitchenware.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/datatables/DT_Kitchenware.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/datatables/DT_Level.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/datatables/DT_Level.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/datatables/DT_MainBPCharacter.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/datatables/DT_MainBPCharacter.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FBathroomStruct.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FBathroomStruct.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FCaptureSettings.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FCaptureSettings.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FDecorationStruct.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FDecorationStruct.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FElectronicsStruct.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FElectronicsStruct.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FFurnitureStruct.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FFurnitureStruct.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FGoalsTaskStruct.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FGoalsTaskStruct.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FItemStrucT.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FItemStrucT.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FKitchenwareStruct.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FKitchenwareStruct.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FLevelStruct.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FLevelStruct.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FMainBPCharacterStruct.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FMainBPCharacterStruct.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/DATA/structures/FrandomMaterialTextureStruct.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/DATA/structures/FrandomMaterialTextureStruct.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Game/BP_LuckyGameState.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Game/BP_LuckyGameState.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Game/BP_LuckyRobots.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Game/BP_LuckyRobots.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Game/BP_LuckybotGameMode.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Game/BP_LuckybotGameMode.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Game/BP_SelectScreen.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Game/BP_SelectScreen.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsPanda.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsPanda.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsRevolute.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsRevolute.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsStretchV1.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsStretchV1.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsUnitreeG1.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsUnitreeG1.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsUnitreeGo2.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/Mujoco/BP_MujocoSettingsUnitreeGo2.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/NPC/AI_Controller.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/NPC/AI_Controller.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/NPC/tasks/BTTask_MoveToLocation.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/NPC/tasks/BTTask_MoveToLocation.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/NPC/tasks/BTTask_MoveToPOI.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/NPC/tasks/BTTask_MoveToPOI.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/NPC/tasks/BTTask_RandomLocation_01.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/NPC/tasks/BTTask_RandomLocation_01.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_DroneRobot.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_DroneRobot.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_HumanoidRobot.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_HumanoidRobot.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_MujocoBostonDynamicsSpotWithArm.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_MujocoBostonDynamicsSpotWithArm.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_MujocoUnitreeGo2.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_MujocoUnitreeGo2.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_PuralinkRobot.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_PuralinkRobot.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_RevoluteRobot.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_RevoluteRobot.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_SelectScreenChar.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_SelectScreenChar.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_WheeledRobot.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_WheeledRobot.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_WheeledRobotStatic.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_WheeledRobotStatic.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprint/RobotPawnActors/BP_mujokoArm.uasset
(Stored with Git LFS)
BIN
Content/Blueprint/RobotPawnActors/BP_mujokoArm.uasset
(Stored with Git LFS)
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user