Compare commits

...

2 Commits
v42 ... main

Author SHA1 Message Date
Goran Lazarevski
b65e388284 Link artifact in release
Some checks failed
Unreal Engine Build / macos-build (push) Failing after 29s
Unreal Engine Build / build-and-release (push) Failing after 1m19s
2025-04-01 19:26:21 +02:00
Goran Lazarevski
d67e93cc60 Release workflow
Some checks failed
Unreal Engine Build / macos-build (push) Failing after 34s
Unreal Engine Build / build-and-release (push) Failing after 1m12s
2025-03-31 23:23:03 +02:00
1722 changed files with 283074 additions and 6472 deletions

View File

@ -0,0 +1,153 @@
name: Create Release
on:
workflow_dispatch:
inputs:
version:
description: 'Version for this release (e.g. 1.0.0)'
required: true
default: ''
version_type:
description: 'Type of version increment'
required: true
default: 'patch'
type: choice
options:
- major
- minor
- patch
prerelease:
description: 'Is this a pre-release?'
required: true
default: 'false'
type: boolean
description:
description: 'Release description'
required: false
default: 'New release'
jobs:
create-release:
runs-on: macos
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
lfs: true
fetch-depth: 0
- name: Get or increment version
id: versioning
run: |
# Fetch all tags
git fetch --tags
# Get the latest version tag, if any
LATEST_TAG=$(git tag -l "v[0-9]*.[0-9]*.[0-9]*" | sort -V | tail -n1)
# If no input version provided, increment the latest tag
INPUT_VERSION="${{ github.event.inputs.version }}"
if [ -z "$INPUT_VERSION" ] || [ "$INPUT_VERSION" = "" ]; then
echo "No version specified, will calculate based on latest tag"
if [ -z "$LATEST_TAG" ]; then
# No previous version tag, start with 1.0.0
NEW_VERSION="1.0.0"
echo "No previous version tags found, starting with 1.0.0"
else
# Strip 'v' prefix if it exists
VERSION=${LATEST_TAG#v}
# Split version into parts
MAJOR=$(echo $VERSION | cut -d. -f1)
MINOR=$(echo $VERSION | cut -d. -f2)
PATCH=$(echo $VERSION | cut -d. -f3)
# Increment based on version type
case "${{ github.event.inputs.version_type }}" in
major)
MAJOR=$((MAJOR + 1))
MINOR=0
PATCH=0
;;
minor)
MINOR=$((MINOR + 1))
PATCH=0
;;
*) # Default is patch
PATCH=$((PATCH + 1))
;;
esac
NEW_VERSION="${MAJOR}.${MINOR}.${PATCH}"
echo "Incremented ${{ github.event.inputs.version_type }} version from ${VERSION} to ${NEW_VERSION}"
fi
else
# Use provided version
NEW_VERSION="${INPUT_VERSION}"
echo "Using provided version: ${NEW_VERSION}"
fi
# Save the version for later steps
echo "VERSION=v${NEW_VERSION}" >> $GITHUB_ENV
echo "VERSION_NUMBER=${NEW_VERSION}" >> $GITHUB_ENV
echo "::set-output name=version::v${NEW_VERSION}"
echo "Final version: v${NEW_VERSION}"
- name: Download latest artifacts
run: |
mkdir -p Artifacts
echo "Downloading latest build artifacts..."
# You can add specific download commands here if needed
# For example, using curl to download from your CI system
# List what we have after download
echo "Available artifacts:"
ls -la Artifacts/ || echo "No artifacts found"
- name: Create Tag
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
run: |
TAG="${{ env.VERSION }}"
echo "Creating git tag: $TAG"
# Configure git with token authentication
git config --global user.email "actions@gitea.com"
git config --global user.name "Gitea Actions"
# Direct token approach - simplest method
git remote set-url origin "https://goran:${{ secrets.GITEATOKEN }}@luckyrobots.com/goran/lyra_game_ue.git"
# Set git to not prompt for input
export GIT_TERMINAL_PROMPT=0
# Check if tag exists
if ! git rev-parse "$TAG" >/dev/null 2>&1; then
# Create tag without opening editor (-m flag)
git tag -a "$TAG" -m "Release $TAG"
# Push with timeout and debug
echo "Pushing tag $TAG to origin..."
git push --verbose origin "$TAG" || {
echo "Error: Failed to push tag. Check your token permissions."
exit 1
}
echo "Successfully created and pushed tag: $TAG"
else
echo "Tag $TAG already exists, skipping tag creation"
fi
echo "RELEASE_TAG=$TAG" >> $GITHUB_ENV
- name: Create Gitea Release
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
uses: https://gitea.com/actions/gitea-release-action@main
with:
token: ${{ secrets.GITEATOKEN }}
tag_name: ${{ env.RELEASE_TAG }}
title: "Release ${{ env.RELEASE_TAG }}"
files: |
Builds/*.zip
Artifacts/*.zip

View File

@ -1,241 +1,300 @@
# Unreal Engine Build for Lyra Game Project
# Known Issues:
# - When building from an installed engine version, there may be issues with precompiled modules
# such as 'CQTest' which is referenced but not included in precompiled builds
# - The target is LyraGame (not LyraStarterGame) as per the Target.cs files in the Source directory
# - The workflow creates placeholders if builds fail to ensure the CI/CD process can continue testing
name: Unreal Engine Build
on:
workflow_dispatch:
push:
branches: [ main, develop ]
branches: [main, develop]
jobs:
windows-build:
build-and-release:
runs-on: windows
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
lfs: true
lfs: false
fetch-depth: 0
- name: Set Unreal Engine Path
- name: Setup environment
run: |
echo "UE_ROOT=F:\LuckyRobots\LuckyRobots\Engine" >> $Env:GITHUB_ENV
echo "DOTNET_CLI_HOME=$env:TEMP" >> $Env:GITHUB_ENV
echo "MSBUILDDISABLENODEREUSE=1" >> $Env:GITHUB_ENV
echo "DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1" >> $Env:GITHUB_ENV
echo "DOTNET_CLI_TELEMETRY_OPTOUT=1" >> $Env:GITHUB_ENV
echo "DOTNET_BUILD_OUTPUT_DIR=$env:TEMP\dotnet-build" >> $Env:GITHUB_ENV
- name: Set up build environment
# Set environment variables for Unreal Engine
echo "UE_ROOT=E:/Games/UE_5.5" >> $env:GITHUB_ENV
# Set environment variables for Linux toolchain
$env:LINUX_MULTIARCH_ROOT = "C:/UnrealToolchains/v23_clang-18.1.0-rockylinux8"
echo "LINUX_MULTIARCH_ROOT=$env:LINUX_MULTIARCH_ROOT" >> $env:GITHUB_ENV
# Create directories for builds
mkdir -Force Builds/Windows
mkdir -Force Builds/Linux
mkdir -Force PackagedReleases
- name: Build for Windows
run: |
# Create a custom build output directory in temp
$buildRoot = Join-Path $env:TEMP "unreal-build"
$dotnetBuildDir = Join-Path $buildRoot "dotnet-build"
$buildOutputDir = Join-Path $buildRoot "output"
# Execute Windows build script
$buildSuccess = $false
# Create directories with full permissions
foreach ($dir in @($buildRoot, $dotnetBuildDir, $buildOutputDir)) {
New-Item -ItemType Directory -Force -Path $dir
icacls $dir /grant Everyone:F /T
}
# Set environment variables for build paths
echo "DOTNET_BUILD_OUTPUT_DIR=$dotnetBuildDir" >> $Env:GITHUB_ENV
echo "DOTNET_CLI_HOME=$dotnetBuildDir" >> $Env:GITHUB_ENV
echo "DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1" >> $Env:GITHUB_ENV
echo "DOTNET_CLI_TELEMETRY_OPTOUT=1" >> $Env:GITHUB_ENV
echo "DOTNET_USE_POLLING_FILE_WATCHER=true" >> $Env:GITHUB_ENV
echo "MSBUILDDISABLENODEREUSE=1" >> $Env:GITHUB_ENV
echo "MSBuildSDKsPath=$env:UE_ROOT\Binaries\ThirdParty\DotNet\8.0.300\win-x64\sdk\8.0.300\Sdks" >> $Env:GITHUB_ENV
# Clean any existing build artifacts
Remove-Item -Path "$dotnetBuildDir\*" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "$buildOutputDir\*" -Recurse -Force -ErrorAction SilentlyContinue
# Set up global.json to use the correct SDK version
$globalJson = @'
{
"sdk": {
"version": "8.0.300",
"rollForward": "latestFeature"
if (Test-Path ./win_build.sh) {
try {
# Use Git Bash to run shell scripts
& 'C:\Program Files\Git\bin\bash.exe' -c "./win_build.sh"
if ($LASTEXITCODE -eq 0) {
$buildSuccess = $true
echo "Windows build completed successfully"
} else {
echo "Windows build script failed with exit code $LASTEXITCODE"
}
} catch {
echo "Error running Windows build script: $_"
}
} else {
echo "Windows build script not found"
}
'@
Set-Content -Path "global.json" -Value $globalJson
# Create Directory.Build.props to redirect all outputs
$buildPropsContent = @'
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<BaseIntermediateOutputPath>$(DOTNET_BUILD_OUTPUT_DIR)\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<BaseOutputPath>$(DOTNET_BUILD_OUTPUT_DIR)\bin\$(MSBuildProjectName)\</BaseOutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath>
<OutputPath>$(BaseOutputPath)</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RestoreNoCache>true</RestoreNoCache>
<EnforceWritePermissions>false</EnforceWritePermissions>
</PropertyGroup>
</Project>
'@
Set-Content -Path "Directory.Build.props" -Value $buildPropsContent -Encoding UTF8
# Create a temporary nuget.config file to use a local package cache
$nugetConfig = @'
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="globalPackagesFolder" value="$(DOTNET_BUILD_OUTPUT_DIR)\packages" />
</config>
</configuration>
'@
Set-Content -Path "nuget.config" -Value $nugetConfig -Encoding UTF8
# Set MSBuild configuration to use the temp directory
$MSBuildPath = Join-Path $env:UE_ROOT "Binaries\ThirdParty\DotNet\8.0.300\win-x64\sdk\8.0.300"
$env:MSBuildExtensionsPath = $MSBuildPath
$env:MSBuildSDKsPath = Join-Path $MSBuildPath "Sdks"
echo "MSBuildExtensionsPath=$env:MSBuildExtensionsPath" >> $Env:GITHUB_ENV
echo "MSBuildSDKsPath=$env:MSBuildSDKsPath" >> $Env:GITHUB_ENV
echo "MSBUILD_EXE_PATH=$MSBuildPath\MSBuild.dll" >> $Env:GITHUB_ENV
- name: Locate .uproject file
# If build failed or script not found, create placeholder files
if (-not $buildSuccess) {
echo "Creating placeholder Windows build files..."
# Ensure the Windows build directory exists
New-Item -Path "Builds/Windows" -ItemType Directory -Force
# Create a simple game executable placeholder
New-Item -Path "Builds/Windows" -Name "LyraGame.exe" -ItemType "file" -Value "Windows build placeholder executable" -Force
# Create a config file placeholder
New-Item -Path "Builds/Windows" -Name "GameUserSettings.ini" -ItemType "file" -Value "[/Script/Engine.GameUserSettings]`nVersion=1" -Force
# Create a pak file placeholder
New-Item -Path "Builds/Windows" -Name "LyraGame-Windows.pak" -ItemType "file" -Value "PAK file placeholder" -Force
# Create a readme file explaining this is a placeholder build
$readmeContent = "# PLACEHOLDER BUILD`n`nThis is a placeholder build created by the CI system when the actual build process fails.`nThis allows testing the release workflow without requiring a successful game build.`n`nIn a real build, this directory would contain the compiled game executables and assets."
Set-Content -Path "Builds/Windows/README.md" -Value $readmeContent -Force
echo "Created placeholder Windows build files"
}
- name: Build for Linux
run: |
$projectPath = Get-ChildItem -Path ".\" -Filter "*.uproject" -Recurse | Select-Object -First 1 -ExpandProperty FullName
if (-not $projectPath) {
Write-Error "No .uproject file found in repository"
exit 1
# Execute Linux build script
$buildSuccess = $false
if (Test-Path ./linux_build.sh) {
try {
# Use Git Bash to run shell scripts
& 'C:\Program Files\Git\bin\bash.exe' -c "./linux_build.sh"
if ($LASTEXITCODE -eq 0) {
$buildSuccess = $true
echo "Linux build completed successfully"
} else {
echo "Linux build script failed with exit code $LASTEXITCODE"
}
} catch {
echo "Error running Linux build script: $_"
}
} else {
echo "Linux build script not found"
}
echo "UPROJECT_PATH=$projectPath" >> $Env:GITHUB_ENV
Write-Host "Found project file: $projectPath"
# If build failed or script not found, create placeholder files
if (-not $buildSuccess) {
echo "Creating placeholder Linux build files..."
# Ensure the Linux build directory exists
New-Item -Path "Builds/Linux" -ItemType Directory -Force
# Create a simple game executable placeholder
New-Item -Path "Builds/Linux" -Name "LyraGame.sh" -ItemType "file" -Value "#!/bin/bash`necho 'Linux build placeholder executable'" -Force
# Create a config file placeholder
New-Item -Path "Builds/Linux" -Name "GameUserSettings.ini" -ItemType "file" -Value "[/Script/Engine.GameUserSettings]`nVersion=1" -Force
# Create a pak file placeholder
New-Item -Path "Builds/Linux" -Name "LyraGame-Linux.pak" -ItemType "file" -Value "PAK file placeholder" -Force
# Create a readme file explaining this is a placeholder build
$readmeContent = "# PLACEHOLDER BUILD`n`nThis is a placeholder build created by the CI system when the actual build process fails.`nThis allows testing the release workflow without requiring a successful game build.`n`nIn a real build, this directory would contain the compiled game executables and assets."
Set-Content -Path "Builds/Linux/README.md" -Value $readmeContent -Force
echo "Created placeholder Linux build files"
}
- name: Package builds
run: |
echo "Packaging Windows build..."
if (Test-Path "Builds/Windows") {
# Change directory and create zip
Push-Location Builds/Windows
Compress-Archive -Path .\* -DestinationPath ..\..\PackagedReleases\LyraGame-Windows.zip -Force
Pop-Location
}
echo "Packaging Linux build..."
if (Test-Path "Builds/Linux") {
# Change directory and create zip
Push-Location Builds/Linux
Compress-Archive -Path .\* -DestinationPath ..\..\PackagedReleases\LyraGame-Linux.zip -Force
Pop-Location
}
echo "=== Packaged releases ==="
Get-ChildItem -Path PackagedReleases
- name: Create Tag
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
run: |
# Call Git Bash to handle Git operations
& 'C:\Program Files\Git\bin\bash.exe' -c "
# Fetch all tags
git fetch --tags
# Get the latest version tag, if any
LATEST_TAG=\$(git tag -l 'v[0-9]*.[0-9]*.[0-9]*' | sort -V | tail -n1)
if [ -z \"\$LATEST_TAG\" ]; then
# No previous version tag, start with 1.0.0
NEW_VERSION=\"1.0.0\"
echo \"No previous version tags found, starting with 1.0.0\"
else
# Strip 'v' prefix if it exists
VERSION=\${LATEST_TAG#v}
# Split version into parts
MAJOR=\$(echo \$VERSION | cut -d. -f1)
MINOR=\$(echo \$VERSION | cut -d. -f2)
PATCH=\$(echo \$VERSION | cut -d. -f3)
# Auto-increment patch version
PATCH=\$((PATCH + 1))
NEW_VERSION=\"\${MAJOR}.\${MINOR}.\${PATCH}\"
echo \"Auto-incremented patch version from \${VERSION} to \${NEW_VERSION}\"
fi
# Final tag with v prefix
TAG=\"v\${NEW_VERSION}\"
echo \"Creating git tag: \$TAG\"
# Configure git with token authentication
git config --global user.email \"actions@gitea.com\"
git config --global user.name \"Gitea Actions\"
# Direct token approach - simplest method
git remote set-url origin \"https://goran:${{ secrets.GITEATOKEN }}@LyraStarterGame.com/goran/lyra_game_ue.git\"
# Set git to not prompt for input
export GIT_TERMINAL_PROMPT=0
# Check if tag exists
if ! git rev-parse \"\$TAG\" >/dev/null 2>&1; then
# Create tag without opening editor (-m flag)
git tag -a \"\$TAG\" -m \"Release \$TAG\"
# Push with timeout and debug
echo \"Pushing tag \$TAG to origin...\"
git push --verbose origin \"\$TAG\" || {
echo \"Error: Failed to push tag. Check your token permissions.\"
exit 1
}
echo \"Successfully created and pushed tag: \$TAG\"
else
echo \"Tag \$TAG already exists, skipping tag creation\"
fi
echo \"RELEASE_TAG=\$TAG\" >> \$GITHUB_ENV
"
# Copy the RELEASE_TAG from Bash environment to PowerShell environment
# Read the last tag created
$latestTag = & 'C:\Program Files\Git\bin\bash.exe' -c "git tag | sort -V | tail -n1"
echo "RELEASE_TAG=$latestTag" >> $env:GITHUB_ENV
- name: Create Release
uses: https://gitea.com/actions/gitea-release-action@main
with:
files: |-
PackagedReleases/*.zip
token: '${{ secrets.GITEATOKEN }}'
title: 'Release ${{ env.RELEASE_TAG }}'
body: |
## Automated release from CI build #${{ github.run_number }}
This release includes builds for:
- Windows
- Linux
Built from commit: ${{ github.sha }}
prerelease: ${{ github.ref != 'refs/heads/main' }}
tag_name: '${{ env.RELEASE_TAG }}'
macos-build:
runs-on: macos
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 0
- name: Setup Unreal Engine
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
echo "UE_ROOT=$UE_PATH/Engine" >> $GITHUB_ENV
echo "Using Unreal Engine 5.5"
- name: Build Unreal Project
run: |
# Create and set permissions for build output directory
$buildOutputDir = Join-Path $env:TEMP "unreal-build\output"
New-Item -ItemType Directory -Force -Path $buildOutputDir
icacls $buildOutputDir /grant Everyone:F
# Register dotnet locally
$dotnetPath = Join-Path $env:UE_ROOT "Binaries\ThirdParty\DotNet\8.0.300\win-x64\dotnet.exe"
$env:PATH = "$env:UE_ROOT\Binaries\ThirdParty\DotNet\8.0.300\win-x64;$env:PATH"
# Make a local copy of the MSBuild directory with write permissions
$customMSBuildDir = Join-Path $env:TEMP "msbuild-custom"
New-Item -ItemType Directory -Force -Path $customMSBuildDir
Copy-Item -Path "$env:UE_ROOT\Binaries\ThirdParty\DotNet\8.0.300\win-x64\sdk\8.0.300\*" -Destination $customMSBuildDir -Recurse -Force
icacls $customMSBuildDir /grant Everyone:F /T
# Set environment variables for the custom MSBuild
$env:MSBuildExtensionsPath = $customMSBuildDir
$env:MSBuildSDKsPath = Join-Path $customMSBuildDir "Sdks"
# Run the build with environment variables
$uatPath = Join-Path $env:UE_ROOT "Build\BatchFiles\RunUAT.bat"
$envVars = "set DOTNET_CLI_HOME=$env:DOTNET_CLI_HOME && " +
"set DOTNET_BUILD_OUTPUT_DIR=$env:DOTNET_BUILD_OUTPUT_DIR && " +
"set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 && " +
"set DOTNET_CLI_TELEMETRY_OPTOUT=1 && " +
"set DOTNET_USE_POLLING_FILE_WATCHER=true && " +
"set MSBuildExtensionsPath=$env:MSBuildExtensionsPath && " +
"set MSBuildSDKsPath=$env:MSBuildSDKsPath && " +
"set MSBUILD_EXE_PATH=$env:MSBUILD_EXE_PATH && "
# Find project file
$projectPath = Get-ChildItem -Path ".\" -Filter "*.uproject" -Recurse | Select-Object -First 1 -ExpandProperty FullName
if (-not $projectPath) {
Write-Error "No .uproject file found in repository"
exit 1
}
Write-Host "Using project file: $projectPath"
# Run UAT with full command
$cmdLine = "$envVars cmd.exe /c `"$uatPath`" BuildCookRun -project=`"$projectPath`" -noP4 -platform=Win64 -clientconfig=Development -cook -build -stage -pak -archive -archivedirectory=`"$buildOutputDir`""
Write-Host "Running command: $cmdLine"
Invoke-Expression $cmdLine
chmod +x ./mac_build.sh
./mac_build.sh
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: windows-build
path: BuildOutput/
name: macos-build
path: Builds/
retention-days: 7
# macos-build:
# runs-on: macos
# steps:
# - name: Checkout repository
# uses: actions/checkout@v3
# with:
# lfs: true
# fetch-depth: 0
# - name: Setup Unreal Engine
# run: |
# # Use the correct path where Unreal Engine is installed
# UE_PATH="/Users/Shared/Epic Games/UE_5.5"
- name: Create artifact ID
run: |
# Generate a unique artifact ID for this build
ARTIFACT_ID="macos-build-$(date +%Y%m%d-%H%M%S)"
echo "ARTIFACT_ID=$ARTIFACT_ID" >> $GITHUB_ENV
# 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
# echo "UE_ROOT=$UE_PATH/Engine" >> $GITHUB_ENV
# echo "Using Unreal Engine 5.5"
# - name: Build Unreal Project
# run: |
# # Debug information
# echo "=== Environment Information ==="
# echo "macOS Version:"
# sw_vers
# echo "Current working directory: $(pwd)"
# ls -la # List all files in current directory
# 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
# 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
# UPROJECT_ABSOLUTE_PATH=$(realpath "$UPROJECT_PATH")
# echo "Project absolute path: $UPROJECT_ABSOLUTE_PATH"
# if [ ! -f "$UPROJECT_ABSOLUTE_PATH" ]; then
# echo "Error: Project file does not exist at: $UPROJECT_ABSOLUTE_PATH"
# exit 1
# fi
# echo "Using Unreal Engine at: $UE_ROOT"
# # Make the project file readable and executable
# chmod 755 "$UPROJECT_ABSOLUTE_PATH"
# # Run the build using absolute paths
# chmod +x "$UE_ROOT/Build/BatchFiles/RunUAT.sh"
# "$UE_ROOT/Build/BatchFiles/RunUAT.sh" BuildCookRun \
# -project="$UPROJECT_ABSOLUTE_PATH" \
# -noP4 \
# -platform=Mac \
# -clientconfig=Development \
# -cook -build -stage -pak -archive \
# -archivedirectory="$(pwd)/Build"
# - name: Upload build artifacts
# uses: actions/upload-artifact@v3
# with:
# name: macos-build
# path: Build/
# retention-days: 7
# Create a directory for release files
mkdir -p PackagedReleases
- name: Create Gitea Release
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
uses: https://gitea.com/actions/gitea-release-action@main
with:
token: ${{ secrets.GITEATOKEN }}
tag_name: ${{ env.RELEASE_TAG }}
title: "Release ${{ env.RELEASE_TAG }}"
body: |
## Automated release from CI build #${{ github.run_number }}
This release includes builds for:
- Windows
- Linux
- macOS (available as artifact: ${{ env.ARTIFACT_ID }})
Built from commit: ${{ github.sha }}
### Download macOS build
To get the macOS build, download it from the artifacts section of this workflow run.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -25,45 +25,9 @@
<bindingRedirect oldVersion="0.0.0.0-15.1.0.0" newVersion="15.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Configuration" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Configuration.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Logging" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Logging.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Options" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Extensions.Primitives" publicKeyToken="adb9793829ddae60" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
@ -76,13 +40,13 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Configuration.ConfigurationManager" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.EventLog" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
@ -91,6 +55,12 @@
<bindingRedirect oldVersion="0.0.0.0-4.0.2.3" newVersion="4.0.2.3" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.ProtectedData" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.Permissions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
@ -100,7 +70,7 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ServiceProcess.ServiceController" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.3.0" newVersion="4.2.3.0" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.1" newVersion="8.0.0.1" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
@ -139,12 +109,6 @@
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Collections.NonGeneric" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
@ -211,18 +175,6 @@
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Debug" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.FileVersionInfo" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
@ -295,12 +247,6 @@
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO.FileSystem" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO.IsolatedStorage" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
@ -481,24 +427,12 @@
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reflection.Metadata" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reflection.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Resources.ResourceManager" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Resources.Writer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
@ -631,12 +565,6 @@
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.Encoding.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
@ -661,24 +589,12 @@
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Dataflow" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Thread" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />

Binary file not shown.

Binary file not shown.

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Lyra.Automation")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Development")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d67e93cc6062e398099652ed263d7e4eab3a176f")]
[assembly: System.Reflection.AssemblyProductAttribute("Lyra.Automation")]
[assembly: System.Reflection.AssemblyTitleAttribute("Lyra.Automation")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
3f06599fd5367437db26e08d890bd4a16b660058ce571e2dce84a178bdb73236
de28473a4760ef314af68bfc6f4dc091cb204e668a1dd8281444206d903d7240

View File

@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Lyra.Automation
build_property.ProjectDir = D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\
build_property.ProjectDir = E:\Projects\cross_platform\Build\Scripts\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@ -1 +1 @@
a0acaed900ff21a273739183143567821b172ff56c9b213e70742ffb90687e6d
9ef9d25f1adee05be05756c04a11160ecc746d674cea6d6ca1d0f6dc00c8ac79

View File

@ -32,3 +32,35 @@ D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\obj\Development\Lyra.Aut.14
D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\obj\Development\Lyra.Automation.dll
D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\obj\Development\refint\Lyra.Automation.dll
D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\obj\Development\Lyra.Automation.pdb
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\liboo2corelinux64.so.9
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\liboo2corelinuxarm32.so.9
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\liboo2corelinuxarm64.so.9
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\liboo2coremac64.2.9.10.dylib
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\oo2core_9_win64.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\oo2core_9_win32.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\oo2core_9_winuwparm64.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\runtimes\win-x64\native\UbaHost.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\runtimes\win-x64\native\UbaDetours.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\EpicGames.Perforce.Native.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\EpicGames.Perforce.Native.pdb
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\MSVCP140.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\VCRUNTIME140.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\VCRUNTIME140_1.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\EpicGames.Perforce.Native.so
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\EpicGames.Perforce.Native.dylib
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\UnrealBuildTool.deps.json
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\UnrealBuildTool.runtimeconfig.json
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\UnrealBuildTool.exe
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\Lyra.Automation.deps.json
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\Lyra.Automation.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\ref\Lyra.Automation.dll
E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\Lyra.Automation.pdb
E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.csproj.AssemblyReference.cache
E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.GeneratedMSBuildEditorConfig.editorconfig
E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.AssemblyInfoInputs.cache
E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.AssemblyInfo.cs
E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.csproj.CoreCompileInputs.cache
E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Aut.14288AAB.Up2Date
E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.dll
E:\Projects\cross_platform\Build\Scripts\obj\Development\refint\Lyra.Automation.dll
E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.pdb

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -5,14 +5,18 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\horde-agent\.nuget\packages\</NuGetPackageFolders>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Goran\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.10.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\horde-agent\.nuget\packages\" />
<SourceRoot Include="C:\Users\Goran\.nuget\packages\" />
<SourceRoot Include="D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.codeanalysis.analyzers\3.3.4\buildTransitive\Microsoft.CodeAnalysis.Analyzers.props" Condition="Exists('$(NuGetPackageRoot)microsoft.codeanalysis.analyzers\3.3.4\buildTransitive\Microsoft.CodeAnalysis.Analyzers.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\horde-agent\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\Goran\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4</PkgMicrosoft_CodeAnalysis_Analyzers>
</PropertyGroup>
</Project>

View File

@ -3,6 +3,9 @@
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)system.text.json\8.0.5\buildTransitive\net6.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\8.0.5\buildTransitive\net6.0\System.Text.Json.targets')" />
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.6\buildTransitive\net8.0\SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.6\buildTransitive\net8.0\SQLitePCLRaw.lib.e_sqlite3.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\6.0.4\buildTransitive\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\6.0.4\buildTransitive\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Options.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder\8.0.2\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder\8.0.2\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.Binder.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.codeanalysis.analyzers\3.3.4\buildTransitive\Microsoft.CodeAnalysis.Analyzers.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.codeanalysis.analyzers\3.3.4\buildTransitive\Microsoft.CodeAnalysis.Analyzers.targets')" />
</ImportGroup>
</Project>

File diff suppressed because it is too large Load Diff

View File

@ -1,131 +1,130 @@
{
"version": 2,
"dgSpecHash": "t8NFshUGdVM=",
"dgSpecHash": "HC+iOZf1l6Y=",
"success": true,
"projectFilePath": "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\Lyra.Automation.csproj",
"projectFilePath": "E:\\Projects\\cross_platform\\Build\\Scripts\\Lyra.Automation.csproj",
"expectedPackageFiles": [
"C:\\Users\\horde-agent\\.nuget\\packages\\bitfaster.caching\\2.4.1\\bitfaster.caching.2.4.1.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\blake3\\0.6.1\\blake3.0.6.1.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\dapper\\2.1.24\\dapper.2.1.24.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\google.protobuf\\3.25.1\\google.protobuf.3.25.1.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\grpc.core.api\\2.59.0\\grpc.core.api.2.59.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\grpc.net.client\\2.59.0\\grpc.net.client.2.59.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\grpc.net.common\\2.59.0\\grpc.net.common.2.59.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\identitymodel\\5.1.0\\identitymodel.5.1.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\identitymodel.oidcclient\\4.0.0\\identitymodel.oidcclient.4.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\jetbrains.annotations\\2022.1.0\\jetbrains.annotations.2022.1.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\k4os.compression.lz4\\1.2.16\\k4os.compression.lz4.1.2.16.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.codeanalysis.common\\4.2.0\\microsoft.codeanalysis.common.4.2.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.2.0\\microsoft.codeanalysis.csharp.4.2.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.data.sqlite\\8.0.0\\microsoft.data.sqlite.8.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.0\\microsoft.data.sqlite.core.8.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.2\\microsoft.extensions.caching.memory.6.0.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration.binder\\6.0.0\\microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\6.0.0\\microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration.json\\6.0.0\\microsoft.extensions.configuration.json.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\6.0.0\\microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\6.0.0\\microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\6.0.0\\microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.http\\6.0.0\\microsoft.extensions.http.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.http.polly\\6.0.26\\microsoft.extensions.http.polly.6.0.26.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.4\\microsoft.extensions.logging.abstractions.6.0.4.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.logging.configuration\\6.0.0\\microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.logging.console\\6.0.0\\microsoft.extensions.logging.console.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.objectpool\\6.0.8\\microsoft.extensions.objectpool.6.0.8.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\6.0.0\\microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\opentracing\\0.12.1\\opentracing.0.12.1.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\polly\\7.2.2\\polly.7.2.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\polly.extensions.http\\3.0.0\\polly.extensions.http.3.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.codedom\\8.0.0\\system.codedom.8.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.data.datasetextensions\\4.5.0\\system.data.datasetextensions.4.5.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.diagnostics.eventlog\\4.7.0\\system.diagnostics.eventlog.4.7.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.drawing.common\\4.7.3\\system.drawing.common.4.7.3.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.io.pipelines\\8.0.0\\system.io.pipelines.8.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.management\\4.7.0\\system.management.4.7.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.reflection.metadataloadcontext\\4.7.2\\system.reflection.metadataloadcontext.4.7.2.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.serviceprocess.servicecontroller\\4.7.0\\system.serviceprocess.servicecontroller.4.7.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.text.encodings.web\\5.0.1\\system.text.encodings.web.5.0.1.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.text.json\\8.0.5\\system.text.json.8.0.5.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
"C:\\Users\\horde-agent\\.nuget\\packages\\zstdsharp.port\\0.8.1\\zstdsharp.port.0.8.1.nupkg.sha512"
"C:\\Users\\Goran\\.nuget\\packages\\bitfaster.caching\\2.4.1\\bitfaster.caching.2.4.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\blake3\\1.1.0\\blake3.1.1.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\dapper\\2.1.24\\dapper.2.1.24.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\google.protobuf\\3.25.1\\google.protobuf.3.25.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\grpc.core.api\\2.59.0\\grpc.core.api.2.59.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\grpc.net.client\\2.59.0\\grpc.net.client.2.59.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\grpc.net.common\\2.59.0\\grpc.net.common.2.59.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\identitymodel\\7.0.0\\identitymodel.7.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\identitymodel.oidcclient\\6.0.0\\identitymodel.oidcclient.6.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\jetbrains.annotations\\2024.3.0\\jetbrains.annotations.2024.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\k4os.compression.lz4\\1.2.16\\k4os.compression.lz4.1.2.16.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.codeanalysis.common\\4.11.0\\microsoft.codeanalysis.common.4.11.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.11.0\\microsoft.codeanalysis.csharp.4.11.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.data.sqlite\\8.0.10\\microsoft.data.sqlite.8.0.10.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.10\\microsoft.data.sqlite.core.8.0.10.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration.binder\\8.0.2\\microsoft.extensions.configuration.binder.8.0.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\8.0.1\\microsoft.extensions.configuration.fileextensions.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration.json\\8.0.1\\microsoft.extensions.configuration.json.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.diagnostics\\8.0.1\\microsoft.extensions.diagnostics.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\8.0.1\\microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\8.0.0\\microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\8.0.0\\microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.http\\8.0.1\\microsoft.extensions.http.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.http.polly\\8.0.10\\microsoft.extensions.http.polly.8.0.10.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.logging.configuration\\8.0.1\\microsoft.extensions.logging.configuration.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.logging.console\\8.0.1\\microsoft.extensions.logging.console.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.objectpool\\8.0.10\\microsoft.extensions.objectpool.8.0.10.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\8.0.0\\microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.visualstudio.setup.configuration.interop\\3.11.2177\\microsoft.visualstudio.setup.configuration.interop.3.11.2177.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\opentracing\\0.12.1\\opentracing.0.12.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\polly\\7.2.4\\polly.7.2.4.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\polly.extensions.http\\3.0.0\\polly.extensions.http.3.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.codedom\\8.0.0\\system.codedom.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.collections.immutable\\8.0.0\\system.collections.immutable.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.1\\system.diagnostics.eventlog.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.drawing.common\\4.7.3\\system.drawing.common.4.7.3.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.io.pipelines\\8.0.0\\system.io.pipelines.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.management\\8.0.0\\system.management.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.reflection.metadata\\8.0.0\\system.reflection.metadata.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.reflection.metadataloadcontext\\8.0.1\\system.reflection.metadataloadcontext.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.serviceprocess.servicecontroller\\8.0.1\\system.serviceprocess.servicecontroller.8.0.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.text.encoding.codepages\\8.0.0\\system.text.encoding.codepages.8.0.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.text.json\\8.0.5\\system.text.json.8.0.5.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
"C:\\Users\\Goran\\.nuget\\packages\\zstdsharp.port\\0.8.1\\zstdsharp.port.0.8.1.nupkg.sha512"
],
"logs": []
}

BIN
Intermediate/Build/BuildRules/LyraStarterGameModuleRules.dll (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Intermediate/Build/BuildRules/LyraStarterGameModuleRules.pdb (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,29 @@
{
"SourceFiles": [
"E:\\Projects\\cross_platform\\Source\\LyraEditor\\LyraEditor.Build.cs",
"E:\\Projects\\cross_platform\\Source\\LyraGame\\LyraGame.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\AsyncMixin\\Source\\AsyncMixin.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\CommonGame.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\CommonLoadingScreen.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonStartupLoadingScreen\\CommonStartupLoadingScreen.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\CommonUser.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\ShooterCoreRuntime.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Source\\ShooterTestsRuntime\\ShooterTestsRuntime.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\TopDownArenaRuntime.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageNodes\\GameplayMessageNodes.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime\\GameplayMessageRuntime.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\GameSettings.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\GameSubtitles.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\LyraExtTool\\Source\\LyraExtTool\\LyraExtTool.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\ModularGameplayActors.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\PocketWorlds.Build.cs",
"E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source\\UIExtension.Build.cs",
"E:\\Projects\\cross_platform\\Source\\LyraClient.Target.cs",
"E:\\Projects\\cross_platform\\Source\\LyraEditor.Target.cs",
"E:\\Projects\\cross_platform\\Source\\LyraGame.Target.cs",
"E:\\Projects\\cross_platform\\Source\\LyraGameEOS.Target.cs",
"E:\\Projects\\cross_platform\\Source\\LyraServer.Target.cs",
"E:\\Projects\\cross_platform\\Source\\LyraServerEOS.Target.cs"
],
"EngineVersion": "5.5.4"
}

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
E:\Games\UE_5.5\Engine\Binaries\DotNET\UnrealBuildTool\EpicGames.UHT.dll

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
E:\Games\UE_5.5\Engine\Binaries\DotNET\UnrealBuildTool\EpicGames.UHT.dll

View File

@ -0,0 +1,90 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraEditor/Commandlets/ContentValidationCommandlet.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeContentValidationCommandlet() {}
// Begin Cross Module References
ENGINE_API UClass* Z_Construct_UClass_UCommandlet();
LYRAEDITOR_API UClass* Z_Construct_UClass_UContentValidationCommandlet();
LYRAEDITOR_API UClass* Z_Construct_UClass_UContentValidationCommandlet_NoRegister();
UPackage* Z_Construct_UPackage__Script_LyraEditor();
// End Cross Module References
// Begin Class UContentValidationCommandlet
void UContentValidationCommandlet::StaticRegisterNativesUContentValidationCommandlet()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UContentValidationCommandlet);
UClass* Z_Construct_UClass_UContentValidationCommandlet_NoRegister()
{
return UContentValidationCommandlet::StaticClass();
}
struct Z_Construct_UClass_UContentValidationCommandlet_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "Commandlets/ContentValidationCommandlet.h" },
{ "ModuleRelativePath", "Commandlets/ContentValidationCommandlet.h" },
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UContentValidationCommandlet>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_UContentValidationCommandlet_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UCommandlet,
(UObject* (*)())Z_Construct_UPackage__Script_LyraEditor,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UContentValidationCommandlet_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UContentValidationCommandlet_Statics::ClassParams = {
&UContentValidationCommandlet::StaticClass,
nullptr,
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
0,
0,
0x000000A8u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UContentValidationCommandlet_Statics::Class_MetaDataParams), Z_Construct_UClass_UContentValidationCommandlet_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UContentValidationCommandlet()
{
if (!Z_Registration_Info_UClass_UContentValidationCommandlet.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UContentValidationCommandlet.OuterSingleton, Z_Construct_UClass_UContentValidationCommandlet_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UContentValidationCommandlet.OuterSingleton;
}
template<> LYRAEDITOR_API UClass* StaticClass<UContentValidationCommandlet>()
{
return UContentValidationCommandlet::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UContentValidationCommandlet);
UContentValidationCommandlet::~UContentValidationCommandlet() {}
// End Class UContentValidationCommandlet
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UContentValidationCommandlet, UContentValidationCommandlet::StaticClass, TEXT("UContentValidationCommandlet"), &Z_Registration_Info_UClass_UContentValidationCommandlet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UContentValidationCommandlet), 3892784367U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_2650959484(TEXT("/Script/LyraEditor"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,56 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Commandlets/ContentValidationCommandlet.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef LYRAEDITOR_ContentValidationCommandlet_generated_h
#error "ContentValidationCommandlet.generated.h already included, missing '#pragma once' in ContentValidationCommandlet.h"
#endif
#define LYRAEDITOR_ContentValidationCommandlet_generated_h
#define FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_INCLASS \
private: \
static void StaticRegisterNativesUContentValidationCommandlet(); \
friend struct Z_Construct_UClass_UContentValidationCommandlet_Statics; \
public: \
DECLARE_CLASS(UContentValidationCommandlet, UCommandlet, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \
DECLARE_SERIALIZER(UContentValidationCommandlet)
#define FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UContentValidationCommandlet(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UContentValidationCommandlet) \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UContentValidationCommandlet); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UContentValidationCommandlet); \
private: \
/** Private move- and copy-constructors, should never be used */ \
UContentValidationCommandlet(UContentValidationCommandlet&&); \
UContentValidationCommandlet(const UContentValidationCommandlet&); \
public: \
NO_API virtual ~UContentValidationCommandlet();
#define FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_12_PROLOG
#define FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_INCLASS \
FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAEDITOR_API UClass* StaticClass<class UContentValidationCommandlet>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,90 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraEditor/Validation/EditorValidator.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeEditorValidator() {}
// Begin Cross Module References
DATAVALIDATION_API UClass* Z_Construct_UClass_UEditorValidatorBase();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_NoRegister();
UPackage* Z_Construct_UPackage__Script_LyraEditor();
// End Cross Module References
// Begin Class UEditorValidator
void UEditorValidator::StaticRegisterNativesUEditorValidator()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator);
UClass* Z_Construct_UClass_UEditorValidator_NoRegister()
{
return UEditorValidator::StaticClass();
}
struct Z_Construct_UClass_UEditorValidator_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "Validation/EditorValidator.h" },
{ "ModuleRelativePath", "Validation/EditorValidator.h" },
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UEditorValidator>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_UEditorValidator_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UEditorValidatorBase,
(UObject* (*)())Z_Construct_UPackage__Script_LyraEditor,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_Statics::ClassParams = {
&UEditorValidator::StaticClass,
"Editor",
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
0,
0,
0x000000A5u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UEditorValidator()
{
if (!Z_Registration_Info_UClass_UEditorValidator.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator.OuterSingleton, Z_Construct_UClass_UEditorValidator_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UEditorValidator.OuterSingleton;
}
template<> LYRAEDITOR_API UClass* StaticClass<UEditorValidator>()
{
return UEditorValidator::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator);
UEditorValidator::~UEditorValidator() {}
// End Class UEditorValidator
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UEditorValidator, UEditorValidator::StaticClass, TEXT("UEditorValidator"), &Z_Registration_Info_UClass_UEditorValidator, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator), 3444806564U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_2253846137(TEXT("/Script/LyraEditor"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,54 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Validation/EditorValidator.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef LYRAEDITOR_EditorValidator_generated_h
#error "EditorValidator.generated.h already included, missing '#pragma once' in EditorValidator.h"
#endif
#define LYRAEDITOR_EditorValidator_generated_h
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUEditorValidator(); \
friend struct Z_Construct_UClass_UEditorValidator_Statics; \
public: \
DECLARE_CLASS(UEditorValidator, UEditorValidatorBase, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \
DECLARE_SERIALIZER(UEditorValidator)
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_ENHANCED_CONSTRUCTORS \
private: \
/** Private move- and copy-constructors, should never be used */ \
UEditorValidator(UEditorValidator&&); \
UEditorValidator(const UEditorValidator&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator); \
DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator) \
NO_API virtual ~UEditorValidator();
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_80_PROLOG
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_INCLASS_NO_PURE_DECLS \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAEDITOR_API UClass* StaticClass<class UEditorValidator>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,90 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraEditor/Validation/EditorValidator_Blueprints.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeEditorValidator_Blueprints() {}
// Begin Cross Module References
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_Blueprints();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_Blueprints_NoRegister();
UPackage* Z_Construct_UPackage__Script_LyraEditor();
// End Cross Module References
// Begin Class UEditorValidator_Blueprints
void UEditorValidator_Blueprints::StaticRegisterNativesUEditorValidator_Blueprints()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator_Blueprints);
UClass* Z_Construct_UClass_UEditorValidator_Blueprints_NoRegister()
{
return UEditorValidator_Blueprints::StaticClass();
}
struct Z_Construct_UClass_UEditorValidator_Blueprints_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "Validation/EditorValidator_Blueprints.h" },
{ "ModuleRelativePath", "Validation/EditorValidator_Blueprints.h" },
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UEditorValidator_Blueprints>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_UEditorValidator_Blueprints_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UEditorValidator,
(UObject* (*)())Z_Construct_UPackage__Script_LyraEditor,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Blueprints_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_Blueprints_Statics::ClassParams = {
&UEditorValidator_Blueprints::StaticClass,
"Editor",
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
0,
0,
0x000000A4u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Blueprints_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_Blueprints_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UEditorValidator_Blueprints()
{
if (!Z_Registration_Info_UClass_UEditorValidator_Blueprints.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator_Blueprints.OuterSingleton, Z_Construct_UClass_UEditorValidator_Blueprints_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UEditorValidator_Blueprints.OuterSingleton;
}
template<> LYRAEDITOR_API UClass* StaticClass<UEditorValidator_Blueprints>()
{
return UEditorValidator_Blueprints::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator_Blueprints);
UEditorValidator_Blueprints::~UEditorValidator_Blueprints() {}
// End Class UEditorValidator_Blueprints
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UEditorValidator_Blueprints, UEditorValidator_Blueprints::StaticClass, TEXT("UEditorValidator_Blueprints"), &Z_Registration_Info_UClass_UEditorValidator_Blueprints, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator_Blueprints), 2506970041U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_685620427(TEXT("/Script/LyraEditor"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,54 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Validation/EditorValidator_Blueprints.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef LYRAEDITOR_EditorValidator_Blueprints_generated_h
#error "EditorValidator_Blueprints.generated.h already included, missing '#pragma once' in EditorValidator_Blueprints.h"
#endif
#define LYRAEDITOR_EditorValidator_Blueprints_generated_h
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUEditorValidator_Blueprints(); \
friend struct Z_Construct_UClass_UEditorValidator_Blueprints_Statics; \
public: \
DECLARE_CLASS(UEditorValidator_Blueprints, UEditorValidator, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \
DECLARE_SERIALIZER(UEditorValidator_Blueprints)
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_ENHANCED_CONSTRUCTORS \
private: \
/** Private move- and copy-constructors, should never be used */ \
UEditorValidator_Blueprints(UEditorValidator_Blueprints&&); \
UEditorValidator_Blueprints(const UEditorValidator_Blueprints&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator_Blueprints); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator_Blueprints); \
DEFINE_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator_Blueprints) \
NO_API virtual ~UEditorValidator_Blueprints();
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_12_PROLOG
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_INCLASS_NO_PURE_DECLS \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAEDITOR_API UClass* StaticClass<class UEditorValidator_Blueprints>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,90 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraEditor/Validation/EditorValidator_Load.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeEditorValidator_Load() {}
// Begin Cross Module References
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_Load();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_Load_NoRegister();
UPackage* Z_Construct_UPackage__Script_LyraEditor();
// End Cross Module References
// Begin Class UEditorValidator_Load
void UEditorValidator_Load::StaticRegisterNativesUEditorValidator_Load()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator_Load);
UClass* Z_Construct_UClass_UEditorValidator_Load_NoRegister()
{
return UEditorValidator_Load::StaticClass();
}
struct Z_Construct_UClass_UEditorValidator_Load_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "Validation/EditorValidator_Load.h" },
{ "ModuleRelativePath", "Validation/EditorValidator_Load.h" },
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UEditorValidator_Load>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_UEditorValidator_Load_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UEditorValidator,
(UObject* (*)())Z_Construct_UPackage__Script_LyraEditor,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Load_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_Load_Statics::ClassParams = {
&UEditorValidator_Load::StaticClass,
"Editor",
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
0,
0,
0x000000A4u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Load_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_Load_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UEditorValidator_Load()
{
if (!Z_Registration_Info_UClass_UEditorValidator_Load.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator_Load.OuterSingleton, Z_Construct_UClass_UEditorValidator_Load_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UEditorValidator_Load.OuterSingleton;
}
template<> LYRAEDITOR_API UClass* StaticClass<UEditorValidator_Load>()
{
return UEditorValidator_Load::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator_Load);
UEditorValidator_Load::~UEditorValidator_Load() {}
// End Class UEditorValidator_Load
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UEditorValidator_Load, UEditorValidator_Load::StaticClass, TEXT("UEditorValidator_Load"), &Z_Registration_Info_UClass_UEditorValidator_Load, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator_Load), 2258776956U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_2776871130(TEXT("/Script/LyraEditor"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,54 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Validation/EditorValidator_Load.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef LYRAEDITOR_EditorValidator_Load_generated_h
#error "EditorValidator_Load.generated.h already included, missing '#pragma once' in EditorValidator_Load.h"
#endif
#define LYRAEDITOR_EditorValidator_Load_generated_h
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUEditorValidator_Load(); \
friend struct Z_Construct_UClass_UEditorValidator_Load_Statics; \
public: \
DECLARE_CLASS(UEditorValidator_Load, UEditorValidator, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \
DECLARE_SERIALIZER(UEditorValidator_Load)
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_ENHANCED_CONSTRUCTORS \
private: \
/** Private move- and copy-constructors, should never be used */ \
UEditorValidator_Load(UEditorValidator_Load&&); \
UEditorValidator_Load(const UEditorValidator_Load&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator_Load); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator_Load); \
DEFINE_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator_Load) \
NO_API virtual ~UEditorValidator_Load();
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_12_PROLOG
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_INCLASS_NO_PURE_DECLS \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAEDITOR_API UClass* StaticClass<class UEditorValidator_Load>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,90 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraEditor/Validation/EditorValidator_MaterialFunctions.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeEditorValidator_MaterialFunctions() {}
// Begin Cross Module References
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_MaterialFunctions();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_MaterialFunctions_NoRegister();
UPackage* Z_Construct_UPackage__Script_LyraEditor();
// End Cross Module References
// Begin Class UEditorValidator_MaterialFunctions
void UEditorValidator_MaterialFunctions::StaticRegisterNativesUEditorValidator_MaterialFunctions()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator_MaterialFunctions);
UClass* Z_Construct_UClass_UEditorValidator_MaterialFunctions_NoRegister()
{
return UEditorValidator_MaterialFunctions::StaticClass();
}
struct Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "Validation/EditorValidator_MaterialFunctions.h" },
{ "ModuleRelativePath", "Validation/EditorValidator_MaterialFunctions.h" },
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UEditorValidator_MaterialFunctions>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UEditorValidator,
(UObject* (*)())Z_Construct_UPackage__Script_LyraEditor,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::ClassParams = {
&UEditorValidator_MaterialFunctions::StaticClass,
"Editor",
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
0,
0,
0x000000A4u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UEditorValidator_MaterialFunctions()
{
if (!Z_Registration_Info_UClass_UEditorValidator_MaterialFunctions.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator_MaterialFunctions.OuterSingleton, Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UEditorValidator_MaterialFunctions.OuterSingleton;
}
template<> LYRAEDITOR_API UClass* StaticClass<UEditorValidator_MaterialFunctions>()
{
return UEditorValidator_MaterialFunctions::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator_MaterialFunctions);
UEditorValidator_MaterialFunctions::~UEditorValidator_MaterialFunctions() {}
// End Class UEditorValidator_MaterialFunctions
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UEditorValidator_MaterialFunctions, UEditorValidator_MaterialFunctions::StaticClass, TEXT("UEditorValidator_MaterialFunctions"), &Z_Registration_Info_UClass_UEditorValidator_MaterialFunctions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator_MaterialFunctions), 674000733U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_107240475(TEXT("/Script/LyraEditor"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,54 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Validation/EditorValidator_MaterialFunctions.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef LYRAEDITOR_EditorValidator_MaterialFunctions_generated_h
#error "EditorValidator_MaterialFunctions.generated.h already included, missing '#pragma once' in EditorValidator_MaterialFunctions.h"
#endif
#define LYRAEDITOR_EditorValidator_MaterialFunctions_generated_h
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUEditorValidator_MaterialFunctions(); \
friend struct Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics; \
public: \
DECLARE_CLASS(UEditorValidator_MaterialFunctions, UEditorValidator, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \
DECLARE_SERIALIZER(UEditorValidator_MaterialFunctions)
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_ENHANCED_CONSTRUCTORS \
private: \
/** Private move- and copy-constructors, should never be used */ \
UEditorValidator_MaterialFunctions(UEditorValidator_MaterialFunctions&&); \
UEditorValidator_MaterialFunctions(const UEditorValidator_MaterialFunctions&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator_MaterialFunctions); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator_MaterialFunctions); \
DEFINE_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator_MaterialFunctions) \
NO_API virtual ~UEditorValidator_MaterialFunctions();
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_12_PROLOG
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_INCLASS_NO_PURE_DECLS \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAEDITOR_API UClass* StaticClass<class UEditorValidator_MaterialFunctions>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,90 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraEditor/Validation/EditorValidator_SourceControl.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeEditorValidator_SourceControl() {}
// Begin Cross Module References
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_SourceControl();
LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_SourceControl_NoRegister();
UPackage* Z_Construct_UPackage__Script_LyraEditor();
// End Cross Module References
// Begin Class UEditorValidator_SourceControl
void UEditorValidator_SourceControl::StaticRegisterNativesUEditorValidator_SourceControl()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator_SourceControl);
UClass* Z_Construct_UClass_UEditorValidator_SourceControl_NoRegister()
{
return UEditorValidator_SourceControl::StaticClass();
}
struct Z_Construct_UClass_UEditorValidator_SourceControl_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "Validation/EditorValidator_SourceControl.h" },
{ "ModuleRelativePath", "Validation/EditorValidator_SourceControl.h" },
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UEditorValidator_SourceControl>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_UEditorValidator_SourceControl_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UEditorValidator,
(UObject* (*)())Z_Construct_UPackage__Script_LyraEditor,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_SourceControl_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_SourceControl_Statics::ClassParams = {
&UEditorValidator_SourceControl::StaticClass,
"Editor",
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
0,
0,
0x000000A4u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_SourceControl_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_SourceControl_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UEditorValidator_SourceControl()
{
if (!Z_Registration_Info_UClass_UEditorValidator_SourceControl.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator_SourceControl.OuterSingleton, Z_Construct_UClass_UEditorValidator_SourceControl_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UEditorValidator_SourceControl.OuterSingleton;
}
template<> LYRAEDITOR_API UClass* StaticClass<UEditorValidator_SourceControl>()
{
return UEditorValidator_SourceControl::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator_SourceControl);
UEditorValidator_SourceControl::~UEditorValidator_SourceControl() {}
// End Class UEditorValidator_SourceControl
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UEditorValidator_SourceControl, UEditorValidator_SourceControl::StaticClass, TEXT("UEditorValidator_SourceControl"), &Z_Registration_Info_UClass_UEditorValidator_SourceControl, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator_SourceControl), 2415754281U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_1871705097(TEXT("/Script/LyraEditor"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,54 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Validation/EditorValidator_SourceControl.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef LYRAEDITOR_EditorValidator_SourceControl_generated_h
#error "EditorValidator_SourceControl.generated.h already included, missing '#pragma once' in EditorValidator_SourceControl.h"
#endif
#define LYRAEDITOR_EditorValidator_SourceControl_generated_h
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUEditorValidator_SourceControl(); \
friend struct Z_Construct_UClass_UEditorValidator_SourceControl_Statics; \
public: \
DECLARE_CLASS(UEditorValidator_SourceControl, UEditorValidator, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \
DECLARE_SERIALIZER(UEditorValidator_SourceControl)
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_ENHANCED_CONSTRUCTORS \
private: \
/** Private move- and copy-constructors, should never be used */ \
UEditorValidator_SourceControl(UEditorValidator_SourceControl&&); \
UEditorValidator_SourceControl(const UEditorValidator_SourceControl&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator_SourceControl); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator_SourceControl); \
DEFINE_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator_SourceControl) \
NO_API virtual ~UEditorValidator_SourceControl();
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_12_PROLOG
#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_INCLASS_NO_PURE_DECLS \
FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAEDITOR_API UClass* StaticClass<class UEditorValidator_SourceControl>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,91 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraEditor/Private/LyraContextEffectsLibraryFactory.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeLyraContextEffectsLibraryFactory() {}
// Begin Cross Module References
LYRAEDITOR_API UClass* Z_Construct_UClass_ULyraContextEffectsLibraryFactory();
LYRAEDITOR_API UClass* Z_Construct_UClass_ULyraContextEffectsLibraryFactory_NoRegister();
UNREALED_API UClass* Z_Construct_UClass_UFactory();
UPackage* Z_Construct_UPackage__Script_LyraEditor();
// End Cross Module References
// Begin Class ULyraContextEffectsLibraryFactory
void ULyraContextEffectsLibraryFactory::StaticRegisterNativesULyraContextEffectsLibraryFactory()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsLibraryFactory);
UClass* Z_Construct_UClass_ULyraContextEffectsLibraryFactory_NoRegister()
{
return ULyraContextEffectsLibraryFactory::StaticClass();
}
struct Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "HideCategories", "Object" },
{ "IncludePath", "LyraContextEffectsLibraryFactory.h" },
{ "ModuleRelativePath", "Private/LyraContextEffectsLibraryFactory.h" },
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<ULyraContextEffectsLibraryFactory>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UFactory,
(UObject* (*)())Z_Construct_UPackage__Script_LyraEditor,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::ClassParams = {
&ULyraContextEffectsLibraryFactory::StaticClass,
nullptr,
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
0,
0,
0x000800A0u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_ULyraContextEffectsLibraryFactory()
{
if (!Z_Registration_Info_UClass_ULyraContextEffectsLibraryFactory.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsLibraryFactory.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::ClassParams);
}
return Z_Registration_Info_UClass_ULyraContextEffectsLibraryFactory.OuterSingleton;
}
template<> LYRAEDITOR_API UClass* StaticClass<ULyraContextEffectsLibraryFactory>()
{
return ULyraContextEffectsLibraryFactory::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsLibraryFactory);
ULyraContextEffectsLibraryFactory::~ULyraContextEffectsLibraryFactory() {}
// End Class ULyraContextEffectsLibraryFactory
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_ULyraContextEffectsLibraryFactory, ULyraContextEffectsLibraryFactory::StaticClass, TEXT("ULyraContextEffectsLibraryFactory"), &Z_Registration_Info_UClass_ULyraContextEffectsLibraryFactory, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsLibraryFactory), 1260297978U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_3943478111(TEXT("/Script/LyraEditor"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,56 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "LyraContextEffectsLibraryFactory.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef LYRAEDITOR_LyraContextEffectsLibraryFactory_generated_h
#error "LyraContextEffectsLibraryFactory.generated.h already included, missing '#pragma once' in LyraContextEffectsLibraryFactory.h"
#endif
#define LYRAEDITOR_LyraContextEffectsLibraryFactory_generated_h
#define FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_INCLASS \
private: \
static void StaticRegisterNativesULyraContextEffectsLibraryFactory(); \
friend struct Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics; \
public: \
DECLARE_CLASS(ULyraContextEffectsLibraryFactory, UFactory, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraEditor"), LYRAEDITOR_API) \
DECLARE_SERIALIZER(ULyraContextEffectsLibraryFactory)
#define FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
LYRAEDITOR_API ULyraContextEffectsLibraryFactory(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsLibraryFactory) \
DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAEDITOR_API, ULyraContextEffectsLibraryFactory); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsLibraryFactory); \
private: \
/** Private move- and copy-constructors, should never be used */ \
ULyraContextEffectsLibraryFactory(ULyraContextEffectsLibraryFactory&&); \
ULyraContextEffectsLibraryFactory(const ULyraContextEffectsLibraryFactory&); \
public: \
LYRAEDITOR_API virtual ~ULyraContextEffectsLibraryFactory();
#define FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_13_PROLOG
#define FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_INCLASS \
FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAEDITOR_API UClass* StaticClass<class ULyraContextEffectsLibraryFactory>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,29 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeLyraEditor_init() {}
static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_LyraEditor;
FORCENOINLINE UPackage* Z_Construct_UPackage__Script_LyraEditor()
{
if (!Z_Registration_Info_UPackage__Script_LyraEditor.OuterSingleton)
{
static const UECodeGen_Private::FPackageParams PackageParams = {
"/Script/LyraEditor",
nullptr,
0,
PKG_CompiledIn | 0x00000040,
0x6DD9A7FA,
0x3A149F16,
METADATA_PARAMS(0, nullptr)
};
UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_LyraEditor.OuterSingleton, PackageParams);
}
return Z_Registration_Info_UPackage__Script_LyraEditor.OuterSingleton;
}
static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_LyraEditor(Z_Construct_UPackage__Script_LyraEditor, TEXT("/Script/LyraEditor"), Z_Registration_Info_UPackage__Script_LyraEditor, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x6DD9A7FA, 0x3A149F16));
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,10 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#pragma once

View File

@ -0,0 +1,91 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraEditor/LyraEditorEngine.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeLyraEditorEngine() {}
// Begin Cross Module References
LYRAEDITOR_API UClass* Z_Construct_UClass_ULyraEditorEngine();
LYRAEDITOR_API UClass* Z_Construct_UClass_ULyraEditorEngine_NoRegister();
UNREALED_API UClass* Z_Construct_UClass_UUnrealEdEngine();
UPackage* Z_Construct_UPackage__Script_LyraEditor();
// End Cross Module References
// Begin Class ULyraEditorEngine
void ULyraEditorEngine::StaticRegisterNativesULyraEditorEngine()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraEditorEngine);
UClass* Z_Construct_UClass_ULyraEditorEngine_NoRegister()
{
return ULyraEditorEngine::StaticClass();
}
struct Z_Construct_UClass_ULyraEditorEngine_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "LyraEditorEngine.h" },
{ "ModuleRelativePath", "LyraEditorEngine.h" },
{ "ObjectInitializerConstructorDeclared", "" },
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<ULyraEditorEngine>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_ULyraEditorEngine_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UUnrealEdEngine,
(UObject* (*)())Z_Construct_UPackage__Script_LyraEditor,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEditorEngine_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraEditorEngine_Statics::ClassParams = {
&ULyraEditorEngine::StaticClass,
"Engine",
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
0,
0,
0x008000AEu,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEditorEngine_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraEditorEngine_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_ULyraEditorEngine()
{
if (!Z_Registration_Info_UClass_ULyraEditorEngine.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraEditorEngine.OuterSingleton, Z_Construct_UClass_ULyraEditorEngine_Statics::ClassParams);
}
return Z_Registration_Info_UClass_ULyraEditorEngine.OuterSingleton;
}
template<> LYRAEDITOR_API UClass* StaticClass<ULyraEditorEngine>()
{
return ULyraEditorEngine::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraEditorEngine);
ULyraEditorEngine::~ULyraEditorEngine() {}
// End Class ULyraEditorEngine
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_ULyraEditorEngine, ULyraEditorEngine::StaticClass, TEXT("ULyraEditorEngine"), &Z_Registration_Info_UClass_ULyraEditorEngine, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraEditorEngine), 2981122782U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_2990093127(TEXT("/Script/LyraEditor"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,54 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "LyraEditorEngine.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef LYRAEDITOR_LyraEditorEngine_generated_h
#error "LyraEditorEngine.generated.h already included, missing '#pragma once' in LyraEditorEngine.h"
#endif
#define LYRAEDITOR_LyraEditorEngine_generated_h
#define FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesULyraEditorEngine(); \
friend struct Z_Construct_UClass_ULyraEditorEngine_Statics; \
public: \
DECLARE_CLASS(ULyraEditorEngine, UUnrealEdEngine, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \
DECLARE_SERIALIZER(ULyraEditorEngine)
#define FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_ENHANCED_CONSTRUCTORS \
private: \
/** Private move- and copy-constructors, should never be used */ \
ULyraEditorEngine(ULyraEditorEngine&&); \
ULyraEditorEngine(const ULyraEditorEngine&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraEditorEngine); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraEditorEngine); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraEditorEngine) \
NO_API virtual ~ULyraEditorEngine();
#define FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_13_PROLOG
#define FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_INCLASS_NO_PURE_DECLS \
FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAEDITOR_API UClass* StaticClass<class ULyraEditorEngine>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,8 @@
E:\Projects\cross_platform\Source\LyraEditor\LyraEditorEngine.h
E:\Projects\cross_platform\Source\LyraEditor\Commandlets\ContentValidationCommandlet.h
E:\Projects\cross_platform\Source\LyraEditor\Private\LyraContextEffectsLibraryFactory.h
E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator.h
E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_Load.h
E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_SourceControl.h
E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_Blueprints.h
E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_MaterialFunctions.h

View File

@ -0,0 +1,166 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraGame/Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeAbilityTask_GrantNearbyInteraction() {}
// Begin Cross Module References
GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilityTask();
GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister();
LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction();
LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_NoRegister();
UPackage* Z_Construct_UPackage__Script_LyraGame();
// End Cross Module References
// Begin Class UAbilityTask_GrantNearbyInteraction Function GrantAbilitiesForNearbyInteractors
struct Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics
{
struct AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms
{
UGameplayAbility* OwningAbility;
float InteractionScanRange;
float InteractionScanRate;
UAbilityTask_GrantNearbyInteraction* ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "BlueprintInternalUseOnly", "TRUE" },
{ "Category", "Ability|Tasks" },
#if !UE_BUILD_SHIPPING
{ "Comment", "/** Wait until an overlap occurs. This will need to be better fleshed out so we can specify game specific collision requirements */" },
#endif
{ "DefaultToSelf", "OwningAbility" },
{ "HidePin", "OwningAbility" },
{ "ModuleRelativePath", "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Wait until an overlap occurs. This will need to be better fleshed out so we can specify game specific collision requirements" },
#endif
};
#endif // WITH_METADATA
static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningAbility;
static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRange;
static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRate;
static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static const UECodeGen_Private::FFunctionParams FuncParams;
};
const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_OwningAbility = { "OwningAbility", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, OwningAbility), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRange = { "InteractionScanRange", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, InteractionScanRange), METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRate = { "InteractionScanRate", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, InteractionScanRate), METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, ReturnValue), Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_NoRegister, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_OwningAbility,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRange,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRate,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers) < 2048);
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction, nullptr, "GrantAbilitiesForNearbyInteractors", nullptr, nullptr, Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::Function_MetaDataParams) };
static_assert(sizeof(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(UAbilityTask_GrantNearbyInteraction::execGrantAbilitiesForNearbyInteractors)
{
P_GET_OBJECT(UGameplayAbility,Z_Param_OwningAbility);
P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRange);
P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRate);
P_FINISH;
P_NATIVE_BEGIN;
*(UAbilityTask_GrantNearbyInteraction**)Z_Param__Result=UAbilityTask_GrantNearbyInteraction::GrantAbilitiesForNearbyInteractors(Z_Param_OwningAbility,Z_Param_InteractionScanRange,Z_Param_InteractionScanRate);
P_NATIVE_END;
}
// End Class UAbilityTask_GrantNearbyInteraction Function GrantAbilitiesForNearbyInteractors
// Begin Class UAbilityTask_GrantNearbyInteraction
void UAbilityTask_GrantNearbyInteraction::StaticRegisterNativesUAbilityTask_GrantNearbyInteraction()
{
UClass* Class = UAbilityTask_GrantNearbyInteraction::StaticClass();
static const FNameNativePtrPair Funcs[] = {
{ "GrantAbilitiesForNearbyInteractors", &UAbilityTask_GrantNearbyInteraction::execGrantAbilitiesForNearbyInteractors },
};
FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs));
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAbilityTask_GrantNearbyInteraction);
UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_NoRegister()
{
return UAbilityTask_GrantNearbyInteraction::StaticClass();
}
struct Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" },
{ "ModuleRelativePath", "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" },
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FClassFunctionLinkInfo FuncInfo[] = {
{ &Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors, "GrantAbilitiesForNearbyInteractors" }, // 3457003903
};
static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048);
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UAbilityTask_GrantNearbyInteraction>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UAbilityTask,
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::ClassParams = {
&UAbilityTask_GrantNearbyInteraction::StaticClass,
"Game",
&StaticCppClassTypeInfo,
DependentSingletons,
FuncInfo,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
UE_ARRAY_COUNT(FuncInfo),
0,
0,
0x008000A4u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::Class_MetaDataParams), Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction()
{
if (!Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction.OuterSingleton, Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction.OuterSingleton;
}
template<> LYRAGAME_API UClass* StaticClass<UAbilityTask_GrantNearbyInteraction>()
{
return UAbilityTask_GrantNearbyInteraction::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UAbilityTask_GrantNearbyInteraction);
UAbilityTask_GrantNearbyInteraction::~UAbilityTask_GrantNearbyInteraction() {}
// End Class UAbilityTask_GrantNearbyInteraction
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction, UAbilityTask_GrantNearbyInteraction::StaticClass, TEXT("UAbilityTask_GrantNearbyInteraction"), &Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAbilityTask_GrantNearbyInteraction), 3415391662U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_2736015225(TEXT("/Script/LyraGame"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,63 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
class UAbilityTask_GrantNearbyInteraction;
class UGameplayAbility;
#ifdef LYRAGAME_AbilityTask_GrantNearbyInteraction_generated_h
#error "AbilityTask_GrantNearbyInteraction.generated.h already included, missing '#pragma once' in AbilityTask_GrantNearbyInteraction.h"
#endif
#define LYRAGAME_AbilityTask_GrantNearbyInteraction_generated_h
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_RPC_WRAPPERS \
DECLARE_FUNCTION(execGrantAbilitiesForNearbyInteractors);
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_INCLASS \
private: \
static void StaticRegisterNativesUAbilityTask_GrantNearbyInteraction(); \
friend struct Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics; \
public: \
DECLARE_CLASS(UAbilityTask_GrantNearbyInteraction, UAbilityTask, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \
DECLARE_SERIALIZER(UAbilityTask_GrantNearbyInteraction)
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UAbilityTask_GrantNearbyInteraction(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAbilityTask_GrantNearbyInteraction) \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAbilityTask_GrantNearbyInteraction); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAbilityTask_GrantNearbyInteraction); \
private: \
/** Private move- and copy-constructors, should never be used */ \
UAbilityTask_GrantNearbyInteraction(UAbilityTask_GrantNearbyInteraction&&); \
UAbilityTask_GrantNearbyInteraction(const UAbilityTask_GrantNearbyInteraction&); \
public: \
NO_API virtual ~UAbilityTask_GrantNearbyInteraction();
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_14_PROLOG
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_RPC_WRAPPERS \
FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_INCLASS \
FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAGAME_API UClass* StaticClass<class UAbilityTask_GrantNearbyInteraction>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,153 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h"
#include "LyraGame/Interaction/InteractionOption.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeAbilityTask_WaitForInteractableTargets() {}
// Begin Cross Module References
GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilityTask();
LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets();
LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_NoRegister();
LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature();
LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption();
UPackage* Z_Construct_UPackage__Script_LyraGame();
// End Cross Module References
// Begin Delegate FInteractableObjectsChangedEvent
struct Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics
{
struct _Script_LyraGame_eventInteractableObjectsChangedEvent_Parms
{
TArray<FInteractionOption> InteractableOptions;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractableOptions_MetaData[] = {
{ "NativeConst", "" },
};
#endif // WITH_METADATA
static const UECodeGen_Private::FStructPropertyParams NewProp_InteractableOptions_Inner;
static const UECodeGen_Private::FArrayPropertyParams NewProp_InteractableOptions;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static const UECodeGen_Private::FFunctionParams FuncParams;
};
const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions_Inner = { "InteractableOptions", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInteractionOption, METADATA_PARAMS(0, nullptr) }; // 4256573821
const UECodeGen_Private::FArrayPropertyParams Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions = { "InteractableOptions", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms, InteractableOptions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractableOptions_MetaData), NewProp_InteractableOptions_MetaData) }; // 4256573821
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions_Inner,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers) < 2048);
const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "InteractableObjectsChangedEvent__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::Function_MetaDataParams) };
static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms) < MAX_uint16);
UFunction* Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::FuncParams);
}
return ReturnFunction;
}
void FInteractableObjectsChangedEvent_DelegateWrapper(const FMulticastScriptDelegate& InteractableObjectsChangedEvent, TArray<FInteractionOption> const& InteractableOptions)
{
struct _Script_LyraGame_eventInteractableObjectsChangedEvent_Parms
{
TArray<FInteractionOption> InteractableOptions;
};
_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms Parms;
Parms.InteractableOptions=InteractableOptions;
InteractableObjectsChangedEvent.ProcessMulticastDelegate<UObject>(&Parms);
}
// End Delegate FInteractableObjectsChangedEvent
// Begin Class UAbilityTask_WaitForInteractableTargets
void UAbilityTask_WaitForInteractableTargets::StaticRegisterNativesUAbilityTask_WaitForInteractableTargets()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAbilityTask_WaitForInteractableTargets);
UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_NoRegister()
{
return UAbilityTask_WaitForInteractableTargets::StaticClass();
}
struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" },
{ "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractableObjectsChanged_MetaData[] = {
{ "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" },
};
#endif // WITH_METADATA
static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_InteractableObjectsChanged;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UAbilityTask_WaitForInteractableTargets>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::NewProp_InteractableObjectsChanged = { "InteractableObjectsChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAbilityTask_WaitForInteractableTargets, InteractableObjectsChanged), Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractableObjectsChanged_MetaData), NewProp_InteractableObjectsChanged_MetaData) }; // 1804386273
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::NewProp_InteractableObjectsChanged,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers) < 2048);
UObject* (*const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UAbilityTask,
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::ClassParams = {
&UAbilityTask_WaitForInteractableTargets::StaticClass,
"Game",
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers),
0,
0x008000A5u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::Class_MetaDataParams), Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets()
{
if (!Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets.OuterSingleton, Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets.OuterSingleton;
}
template<> LYRAGAME_API UClass* StaticClass<UAbilityTask_WaitForInteractableTargets>()
{
return UAbilityTask_WaitForInteractableTargets::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UAbilityTask_WaitForInteractableTargets);
UAbilityTask_WaitForInteractableTargets::~UAbilityTask_WaitForInteractableTargets() {}
// End Class UAbilityTask_WaitForInteractableTargets
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets, UAbilityTask_WaitForInteractableTargets::StaticClass, TEXT("UAbilityTask_WaitForInteractableTargets"), &Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAbilityTask_WaitForInteractableTargets), 3643238578U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_444856477(TEXT("/Script/LyraGame"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,61 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
struct FInteractionOption;
#ifdef LYRAGAME_AbilityTask_WaitForInteractableTargets_generated_h
#error "AbilityTask_WaitForInteractableTargets.generated.h already included, missing '#pragma once' in AbilityTask_WaitForInteractableTargets.h"
#endif
#define LYRAGAME_AbilityTask_WaitForInteractableTargets_generated_h
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_19_DELEGATE \
LYRAGAME_API void FInteractableObjectsChangedEvent_DelegateWrapper(const FMulticastScriptDelegate& InteractableObjectsChangedEvent, TArray<FInteractionOption> const& InteractableOptions);
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_INCLASS \
private: \
static void StaticRegisterNativesUAbilityTask_WaitForInteractableTargets(); \
friend struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics; \
public: \
DECLARE_CLASS(UAbilityTask_WaitForInteractableTargets, UAbilityTask, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \
DECLARE_SERIALIZER(UAbilityTask_WaitForInteractableTargets)
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UAbilityTask_WaitForInteractableTargets(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAbilityTask_WaitForInteractableTargets) \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAbilityTask_WaitForInteractableTargets); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAbilityTask_WaitForInteractableTargets); \
private: \
/** Private move- and copy-constructors, should never be used */ \
UAbilityTask_WaitForInteractableTargets(UAbilityTask_WaitForInteractableTargets&&); \
UAbilityTask_WaitForInteractableTargets(const UAbilityTask_WaitForInteractableTargets&); \
public: \
NO_API virtual ~UAbilityTask_WaitForInteractableTargets();
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_21_PROLOG
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_INCLASS \
FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAGAME_API UClass* StaticClass<class UAbilityTask_WaitForInteractableTargets>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,216 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h"
#include "GameplayAbilities/Public/Abilities/GameplayAbilityTargetTypes.h"
#include "LyraGame/Interaction/InteractionQuery.h"
#include "Runtime/Engine/Classes/Engine/CollisionProfile.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeAbilityTask_WaitForInteractableTargets_SingleLineTrace() {}
// Begin Cross Module References
ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FCollisionProfileName();
GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister();
GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilityTargetingLocationInfo();
LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets();
LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace();
LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_NoRegister();
LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionQuery();
UPackage* Z_Construct_UPackage__Script_LyraGame();
// End Cross Module References
// Begin Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace Function WaitForInteractableTargets_SingleLineTrace
struct Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics
{
struct AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms
{
UGameplayAbility* OwningAbility;
FInteractionQuery InteractionQuery;
FCollisionProfileName TraceProfile;
FGameplayAbilityTargetingLocationInfo StartLocation;
float InteractionScanRange;
float InteractionScanRate;
bool bShowDebug;
UAbilityTask_WaitForInteractableTargets_SingleLineTrace* ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "BlueprintInternalUseOnly", "TRUE" },
{ "Category", "Ability|Tasks" },
#if !UE_BUILD_SHIPPING
{ "Comment", "/** Wait until we trace new set of interactables. This task automatically loops. */" },
#endif
{ "CPP_Default_bShowDebug", "false" },
{ "CPP_Default_InteractionScanRange", "100.000000" },
{ "CPP_Default_InteractionScanRate", "0.100000" },
{ "DefaultToSelf", "OwningAbility" },
{ "HidePin", "OwningAbility" },
{ "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Wait until we trace new set of interactables. This task automatically loops." },
#endif
};
#endif // WITH_METADATA
static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningAbility;
static const UECodeGen_Private::FStructPropertyParams NewProp_InteractionQuery;
static const UECodeGen_Private::FStructPropertyParams NewProp_TraceProfile;
static const UECodeGen_Private::FStructPropertyParams NewProp_StartLocation;
static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRange;
static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRate;
static void NewProp_bShowDebug_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowDebug;
static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static const UECodeGen_Private::FFunctionParams FuncParams;
};
const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_OwningAbility = { "OwningAbility", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, OwningAbility), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery = { "InteractionQuery", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, InteractionQuery), Z_Construct_UScriptStruct_FInteractionQuery, METADATA_PARAMS(0, nullptr) }; // 2707672158
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_TraceProfile = { "TraceProfile", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, TraceProfile), Z_Construct_UScriptStruct_FCollisionProfileName, METADATA_PARAMS(0, nullptr) }; // 3816324900
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation = { "StartLocation", nullptr, (EPropertyFlags)0x0010008000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, StartLocation), Z_Construct_UScriptStruct_FGameplayAbilityTargetingLocationInfo, METADATA_PARAMS(0, nullptr) }; // 1311887580
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRange = { "InteractionScanRange", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, InteractionScanRange), METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRate = { "InteractionScanRate", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, InteractionScanRate), METADATA_PARAMS(0, nullptr) };
void Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug_SetBit(void* Obj)
{
((AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms*)Obj)->bShowDebug = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug = { "bShowDebug", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms), &Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug_SetBit, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, ReturnValue), Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_NoRegister, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_OwningAbility,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_TraceProfile,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRange,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRate,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers) < 2048);
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace, nullptr, "WaitForInteractableTargets_SingleLineTrace", nullptr, nullptr, Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::Function_MetaDataParams) };
static_assert(sizeof(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(UAbilityTask_WaitForInteractableTargets_SingleLineTrace::execWaitForInteractableTargets_SingleLineTrace)
{
P_GET_OBJECT(UGameplayAbility,Z_Param_OwningAbility);
P_GET_STRUCT(FInteractionQuery,Z_Param_InteractionQuery);
P_GET_STRUCT(FCollisionProfileName,Z_Param_TraceProfile);
P_GET_STRUCT(FGameplayAbilityTargetingLocationInfo,Z_Param_StartLocation);
P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRange);
P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRate);
P_GET_UBOOL(Z_Param_bShowDebug);
P_FINISH;
P_NATIVE_BEGIN;
*(UAbilityTask_WaitForInteractableTargets_SingleLineTrace**)Z_Param__Result=UAbilityTask_WaitForInteractableTargets_SingleLineTrace::WaitForInteractableTargets_SingleLineTrace(Z_Param_OwningAbility,Z_Param_InteractionQuery,Z_Param_TraceProfile,Z_Param_StartLocation,Z_Param_InteractionScanRange,Z_Param_InteractionScanRate,Z_Param_bShowDebug);
P_NATIVE_END;
}
// End Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace Function WaitForInteractableTargets_SingleLineTrace
// Begin Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace
void UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticRegisterNativesUAbilityTask_WaitForInteractableTargets_SingleLineTrace()
{
UClass* Class = UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass();
static const FNameNativePtrPair Funcs[] = {
{ "WaitForInteractableTargets_SingleLineTrace", &UAbilityTask_WaitForInteractableTargets_SingleLineTrace::execWaitForInteractableTargets_SingleLineTrace },
};
FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs));
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAbilityTask_WaitForInteractableTargets_SingleLineTrace);
UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_NoRegister()
{
return UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass();
}
struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" },
{ "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionQuery_MetaData[] = {
{ "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StartLocation_MetaData[] = {
{ "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" },
};
#endif // WITH_METADATA
static const UECodeGen_Private::FStructPropertyParams NewProp_InteractionQuery;
static const UECodeGen_Private::FStructPropertyParams NewProp_StartLocation;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static UObject* (*const DependentSingletons[])();
static constexpr FClassFunctionLinkInfo FuncInfo[] = {
{ &Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace, "WaitForInteractableTargets_SingleLineTrace" }, // 509663215
};
static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048);
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UAbilityTask_WaitForInteractableTargets_SingleLineTrace>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery = { "InteractionQuery", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAbilityTask_WaitForInteractableTargets_SingleLineTrace, InteractionQuery), Z_Construct_UScriptStruct_FInteractionQuery, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionQuery_MetaData), NewProp_InteractionQuery_MetaData) }; // 2707672158
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation = { "StartLocation", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAbilityTask_WaitForInteractableTargets_SingleLineTrace, StartLocation), Z_Construct_UScriptStruct_FGameplayAbilityTargetingLocationInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StartLocation_MetaData), NewProp_StartLocation_MetaData) }; // 1311887580
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers) < 2048);
UObject* (*const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets,
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::ClassParams = {
&UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass,
"Game",
&StaticCppClassTypeInfo,
DependentSingletons,
FuncInfo,
Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
UE_ARRAY_COUNT(FuncInfo),
UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers),
0,
0x008000A4u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::Class_MetaDataParams), Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace()
{
if (!Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace.OuterSingleton, Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace.OuterSingleton;
}
template<> LYRAGAME_API UClass* StaticClass<UAbilityTask_WaitForInteractableTargets_SingleLineTrace>()
{
return UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UAbilityTask_WaitForInteractableTargets_SingleLineTrace);
UAbilityTask_WaitForInteractableTargets_SingleLineTrace::~UAbilityTask_WaitForInteractableTargets_SingleLineTrace() {}
// End Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace, UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass, TEXT("UAbilityTask_WaitForInteractableTargets_SingleLineTrace"), &Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAbilityTask_WaitForInteractableTargets_SingleLineTrace), 2541355024U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_1827922283(TEXT("/Script/LyraGame"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,66 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
class UAbilityTask_WaitForInteractableTargets_SingleLineTrace;
class UGameplayAbility;
struct FCollisionProfileName;
struct FGameplayAbilityTargetingLocationInfo;
struct FInteractionQuery;
#ifdef LYRAGAME_AbilityTask_WaitForInteractableTargets_SingleLineTrace_generated_h
#error "AbilityTask_WaitForInteractableTargets_SingleLineTrace.generated.h already included, missing '#pragma once' in AbilityTask_WaitForInteractableTargets_SingleLineTrace.h"
#endif
#define LYRAGAME_AbilityTask_WaitForInteractableTargets_SingleLineTrace_generated_h
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_RPC_WRAPPERS \
DECLARE_FUNCTION(execWaitForInteractableTargets_SingleLineTrace);
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_INCLASS \
private: \
static void StaticRegisterNativesUAbilityTask_WaitForInteractableTargets_SingleLineTrace(); \
friend struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics; \
public: \
DECLARE_CLASS(UAbilityTask_WaitForInteractableTargets_SingleLineTrace, UAbilityTask_WaitForInteractableTargets, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \
DECLARE_SERIALIZER(UAbilityTask_WaitForInteractableTargets_SingleLineTrace)
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UAbilityTask_WaitForInteractableTargets_SingleLineTrace(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAbilityTask_WaitForInteractableTargets_SingleLineTrace) \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAbilityTask_WaitForInteractableTargets_SingleLineTrace); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAbilityTask_WaitForInteractableTargets_SingleLineTrace); \
private: \
/** Private move- and copy-constructors, should never be used */ \
UAbilityTask_WaitForInteractableTargets_SingleLineTrace(UAbilityTask_WaitForInteractableTargets_SingleLineTrace&&); \
UAbilityTask_WaitForInteractableTargets_SingleLineTrace(const UAbilityTask_WaitForInteractableTargets_SingleLineTrace&); \
public: \
NO_API virtual ~UAbilityTask_WaitForInteractableTargets_SingleLineTrace();
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_15_PROLOG
#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_RPC_WRAPPERS \
FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_INCLASS \
FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAGAME_API UClass* StaticClass<class UAbilityTask_WaitForInteractableTargets_SingleLineTrace>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,767 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraGame/Feedback/ContextEffects/AnimNotify_LyraContextEffects.h"
#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeAnimNotify_LyraContextEffects() {}
// Begin Cross Module References
COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator();
COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftObjectPath();
COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector();
ENGINE_API UClass* Z_Construct_UClass_UAnimNotify();
ENGINE_API UEnum* Z_Construct_UEnum_Engine_ECollisionChannel();
GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag();
GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer();
LYRAGAME_API UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects();
LYRAGAME_API UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects_NoRegister();
LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings();
LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings();
LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings();
LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings();
PHYSICSCORE_API UEnum* Z_Construct_UEnum_PhysicsCore_EPhysicalSurface();
UPackage* Z_Construct_UPackage__Script_LyraGame();
// End Cross Module References
// Begin ScriptStruct FLyraContextEffectAnimNotifyVFXSettings
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings;
class UScriptStruct* FLyraContextEffectAnimNotifyVFXSettings::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyVFXSettings"));
}
return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.OuterSingleton;
}
template<> LYRAGAME_API UScriptStruct* StaticStruct<FLyraContextEffectAnimNotifyVFXSettings>()
{
return FLyraContextEffectAnimNotifyVFXSettings::StaticStruct();
}
struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "BlueprintType", "true" },
#if !UE_BUILD_SHIPPING
{ "Comment", "/**\n *\n */" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Scale_MetaData[] = {
{ "Category", "FX" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Scale to spawn the particle system at\n" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Scale to spawn the particle system at" },
#endif
};
#endif // WITH_METADATA
static const UECodeGen_Private::FStructPropertyParams NewProp_Scale;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FLyraContextEffectAnimNotifyVFXSettings>();
}
static const UECodeGen_Private::FStructParams StructParams;
};
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::NewProp_Scale = { "Scale", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyVFXSettings, Scale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Scale_MetaData), NewProp_Scale_MetaData) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::NewProp_Scale,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers) < 2048);
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
nullptr,
&NewStructOps,
"LyraContextEffectAnimNotifyVFXSettings",
Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers),
sizeof(FLyraContextEffectAnimNotifyVFXSettings),
alignof(FLyraContextEffectAnimNotifyVFXSettings),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000201),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings()
{
if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::StructParams);
}
return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.InnerSingleton;
}
// End ScriptStruct FLyraContextEffectAnimNotifyVFXSettings
// Begin ScriptStruct FLyraContextEffectAnimNotifyAudioSettings
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings;
class UScriptStruct* FLyraContextEffectAnimNotifyAudioSettings::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyAudioSettings"));
}
return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.OuterSingleton;
}
template<> LYRAGAME_API UScriptStruct* StaticStruct<FLyraContextEffectAnimNotifyAudioSettings>()
{
return FLyraContextEffectAnimNotifyAudioSettings::StaticStruct();
}
struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "BlueprintType", "true" },
#if !UE_BUILD_SHIPPING
{ "Comment", "/**\n *\n */" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VolumeMultiplier_MetaData[] = {
{ "Category", "Sound" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Volume Multiplier\n" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Volume Multiplier" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PitchMultiplier_MetaData[] = {
{ "Category", "Sound" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Pitch Multiplier\n" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Pitch Multiplier" },
#endif
};
#endif // WITH_METADATA
static const UECodeGen_Private::FFloatPropertyParams NewProp_VolumeMultiplier;
static const UECodeGen_Private::FFloatPropertyParams NewProp_PitchMultiplier;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FLyraContextEffectAnimNotifyAudioSettings>();
}
static const UECodeGen_Private::FStructParams StructParams;
};
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_VolumeMultiplier = { "VolumeMultiplier", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyAudioSettings, VolumeMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VolumeMultiplier_MetaData), NewProp_VolumeMultiplier_MetaData) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_PitchMultiplier = { "PitchMultiplier", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyAudioSettings, PitchMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PitchMultiplier_MetaData), NewProp_PitchMultiplier_MetaData) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_VolumeMultiplier,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_PitchMultiplier,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers) < 2048);
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
nullptr,
&NewStructOps,
"LyraContextEffectAnimNotifyAudioSettings",
Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers),
sizeof(FLyraContextEffectAnimNotifyAudioSettings),
alignof(FLyraContextEffectAnimNotifyAudioSettings),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000201),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings()
{
if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::StructParams);
}
return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.InnerSingleton;
}
// End ScriptStruct FLyraContextEffectAnimNotifyAudioSettings
// Begin ScriptStruct FLyraContextEffectAnimNotifyTraceSettings
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings;
class UScriptStruct* FLyraContextEffectAnimNotifyTraceSettings::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyTraceSettings"));
}
return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.OuterSingleton;
}
template<> LYRAGAME_API UScriptStruct* StaticStruct<FLyraContextEffectAnimNotifyTraceSettings>()
{
return FLyraContextEffectAnimNotifyTraceSettings::StaticStruct();
}
struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "BlueprintType", "true" },
#if !UE_BUILD_SHIPPING
{ "Comment", "/**\n *\n */" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraceChannel_MetaData[] = {
{ "Category", "Trace" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Trace Channel\n" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Trace Channel" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EndTraceLocationOffset_MetaData[] = {
{ "Category", "Trace" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Vector offset from Effect Location\n" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Vector offset from Effect Location" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIgnoreActor_MetaData[] = {
{ "Category", "Trace" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Ignore this Actor when getting trace result\n" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Ignore this Actor when getting trace result" },
#endif
};
#endif // WITH_METADATA
static const UECodeGen_Private::FBytePropertyParams NewProp_TraceChannel;
static const UECodeGen_Private::FStructPropertyParams NewProp_EndTraceLocationOffset;
static void NewProp_bIgnoreActor_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bIgnoreActor;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FLyraContextEffectAnimNotifyTraceSettings>();
}
static const UECodeGen_Private::FStructParams StructParams;
};
const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_TraceChannel = { "TraceChannel", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyTraceSettings, TraceChannel), Z_Construct_UEnum_Engine_ECollisionChannel, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraceChannel_MetaData), NewProp_TraceChannel_MetaData) }; // 756624936
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_EndTraceLocationOffset = { "EndTraceLocationOffset", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyTraceSettings, EndTraceLocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EndTraceLocationOffset_MetaData), NewProp_EndTraceLocationOffset_MetaData) };
void Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor_SetBit(void* Obj)
{
((FLyraContextEffectAnimNotifyTraceSettings*)Obj)->bIgnoreActor = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor = { "bIgnoreActor", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraContextEffectAnimNotifyTraceSettings), &Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIgnoreActor_MetaData), NewProp_bIgnoreActor_MetaData) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_TraceChannel,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_EndTraceLocationOffset,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers) < 2048);
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
nullptr,
&NewStructOps,
"LyraContextEffectAnimNotifyTraceSettings",
Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers),
sizeof(FLyraContextEffectAnimNotifyTraceSettings),
alignof(FLyraContextEffectAnimNotifyTraceSettings),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000201),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings()
{
if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::StructParams);
}
return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.InnerSingleton;
}
// End ScriptStruct FLyraContextEffectAnimNotifyTraceSettings
// Begin ScriptStruct FLyraContextEffectAnimNotifyPreviewSettings
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings;
class UScriptStruct* FLyraContextEffectAnimNotifyPreviewSettings::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyPreviewSettings"));
}
return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.OuterSingleton;
}
template<> LYRAGAME_API UScriptStruct* StaticStruct<FLyraContextEffectAnimNotifyPreviewSettings>()
{
return FLyraContextEffectAnimNotifyPreviewSettings::StaticStruct();
}
struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "BlueprintType", "true" },
#if !UE_BUILD_SHIPPING
{ "Comment", "/**\n *\n */" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreviewPhysicalSurfaceAsContext_MetaData[] = {
{ "Category", "Preview" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// If true, will attempt to match selected Surface Type to Context Tag via Project Settings\n" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "If true, will attempt to match selected Surface Type to Context Tag via Project Settings" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewPhysicalSurface_MetaData[] = {
{ "Category", "Preview" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Surface Type\n" },
#endif
{ "EditCondition", "bPreviewPhysicalSurfaceAsContext" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Surface Type" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewContextEffectsLibrary_MetaData[] = {
{ "AllowedClasses", "/Script/LyraGame.LyraContextEffectsLibrary" },
{ "Category", "Preview" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Preview Library\n" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Preview Library" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewContexts_MetaData[] = {
{ "Category", "Preview" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Preview Context\n" },
#endif
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Preview Context" },
#endif
};
#endif // WITH_METADATA
static void NewProp_bPreviewPhysicalSurfaceAsContext_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreviewPhysicalSurfaceAsContext;
static const UECodeGen_Private::FBytePropertyParams NewProp_PreviewPhysicalSurface;
static const UECodeGen_Private::FStructPropertyParams NewProp_PreviewContextEffectsLibrary;
static const UECodeGen_Private::FStructPropertyParams NewProp_PreviewContexts;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FLyraContextEffectAnimNotifyPreviewSettings>();
}
static const UECodeGen_Private::FStructParams StructParams;
};
void Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext_SetBit(void* Obj)
{
((FLyraContextEffectAnimNotifyPreviewSettings*)Obj)->bPreviewPhysicalSurfaceAsContext = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext = { "bPreviewPhysicalSurfaceAsContext", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraContextEffectAnimNotifyPreviewSettings), &Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreviewPhysicalSurfaceAsContext_MetaData), NewProp_bPreviewPhysicalSurfaceAsContext_MetaData) };
const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewPhysicalSurface = { "PreviewPhysicalSurface", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyPreviewSettings, PreviewPhysicalSurface), Z_Construct_UEnum_PhysicsCore_EPhysicalSurface, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewPhysicalSurface_MetaData), NewProp_PreviewPhysicalSurface_MetaData) }; // 161619406
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContextEffectsLibrary = { "PreviewContextEffectsLibrary", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyPreviewSettings, PreviewContextEffectsLibrary), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewContextEffectsLibrary_MetaData), NewProp_PreviewContextEffectsLibrary_MetaData) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContexts = { "PreviewContexts", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyPreviewSettings, PreviewContexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewContexts_MetaData), NewProp_PreviewContexts_MetaData) }; // 3352185621
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewPhysicalSurface,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContextEffectsLibrary,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContexts,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers) < 2048);
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
nullptr,
&NewStructOps,
"LyraContextEffectAnimNotifyPreviewSettings",
Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers),
sizeof(FLyraContextEffectAnimNotifyPreviewSettings),
alignof(FLyraContextEffectAnimNotifyPreviewSettings),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000201),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings()
{
if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::StructParams);
}
return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.InnerSingleton;
}
// End ScriptStruct FLyraContextEffectAnimNotifyPreviewSettings
// Begin Class UAnimNotify_LyraContextEffects Function SetParameters
#if WITH_EDITOR
struct Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics
{
struct AnimNotify_LyraContextEffects_eventSetParameters_Parms
{
FGameplayTag EffectIn;
FVector LocationOffsetIn;
FRotator RotationOffsetIn;
FLyraContextEffectAnimNotifyVFXSettings VFXPropertiesIn;
FLyraContextEffectAnimNotifyAudioSettings AudioPropertiesIn;
bool bAttachedIn;
FName SocketNameIn;
bool bPerformTraceIn;
FLyraContextEffectAnimNotifyTraceSettings TracePropertiesIn;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
};
#endif // WITH_METADATA
static const UECodeGen_Private::FStructPropertyParams NewProp_EffectIn;
static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffsetIn;
static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffsetIn;
static const UECodeGen_Private::FStructPropertyParams NewProp_VFXPropertiesIn;
static const UECodeGen_Private::FStructPropertyParams NewProp_AudioPropertiesIn;
static void NewProp_bAttachedIn_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bAttachedIn;
static const UECodeGen_Private::FNamePropertyParams NewProp_SocketNameIn;
static void NewProp_bPerformTraceIn_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bPerformTraceIn;
static const UECodeGen_Private::FStructPropertyParams NewProp_TracePropertiesIn;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static const UECodeGen_Private::FFunctionParams FuncParams;
};
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_EffectIn = { "EffectIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, EffectIn), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_LocationOffsetIn = { "LocationOffsetIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, LocationOffsetIn), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_RotationOffsetIn = { "RotationOffsetIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, RotationOffsetIn), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_VFXPropertiesIn = { "VFXPropertiesIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, VFXPropertiesIn), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings, METADATA_PARAMS(0, nullptr) }; // 817972917
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_AudioPropertiesIn = { "AudioPropertiesIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, AudioPropertiesIn), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings, METADATA_PARAMS(0, nullptr) }; // 2521679084
void Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn_SetBit(void* Obj)
{
((AnimNotify_LyraContextEffects_eventSetParameters_Parms*)Obj)->bAttachedIn = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn = { "bAttachedIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AnimNotify_LyraContextEffects_eventSetParameters_Parms), &Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn_SetBit, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_SocketNameIn = { "SocketNameIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, SocketNameIn), METADATA_PARAMS(0, nullptr) };
void Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn_SetBit(void* Obj)
{
((AnimNotify_LyraContextEffects_eventSetParameters_Parms*)Obj)->bPerformTraceIn = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn = { "bPerformTraceIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AnimNotify_LyraContextEffects_eventSetParameters_Parms), &Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn_SetBit, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_TracePropertiesIn = { "TracePropertiesIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, TracePropertiesIn), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings, METADATA_PARAMS(0, nullptr) }; // 2936355306
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_EffectIn,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_LocationOffsetIn,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_RotationOffsetIn,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_VFXPropertiesIn,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_AudioPropertiesIn,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_SocketNameIn,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_TracePropertiesIn,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers) < 2048);
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAnimNotify_LyraContextEffects, nullptr, "SetParameters", nullptr, nullptr, Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::AnimNotify_LyraContextEffects_eventSetParameters_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x64820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::Function_MetaDataParams) };
static_assert(sizeof(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::AnimNotify_LyraContextEffects_eventSetParameters_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::FuncParams);
}
return ReturnFunction;
}
#endif // WITH_EDITOR
#if WITH_EDITOR
DEFINE_FUNCTION(UAnimNotify_LyraContextEffects::execSetParameters)
{
P_GET_STRUCT(FGameplayTag,Z_Param_EffectIn);
P_GET_STRUCT(FVector,Z_Param_LocationOffsetIn);
P_GET_STRUCT(FRotator,Z_Param_RotationOffsetIn);
P_GET_STRUCT(FLyraContextEffectAnimNotifyVFXSettings,Z_Param_VFXPropertiesIn);
P_GET_STRUCT(FLyraContextEffectAnimNotifyAudioSettings,Z_Param_AudioPropertiesIn);
P_GET_UBOOL(Z_Param_bAttachedIn);
P_GET_PROPERTY(FNameProperty,Z_Param_SocketNameIn);
P_GET_UBOOL(Z_Param_bPerformTraceIn);
P_GET_STRUCT(FLyraContextEffectAnimNotifyTraceSettings,Z_Param_TracePropertiesIn);
P_FINISH;
P_NATIVE_BEGIN;
P_THIS->SetParameters(Z_Param_EffectIn,Z_Param_LocationOffsetIn,Z_Param_RotationOffsetIn,Z_Param_VFXPropertiesIn,Z_Param_AudioPropertiesIn,Z_Param_bAttachedIn,Z_Param_SocketNameIn,Z_Param_bPerformTraceIn,Z_Param_TracePropertiesIn);
P_NATIVE_END;
}
#endif // WITH_EDITOR
// End Class UAnimNotify_LyraContextEffects Function SetParameters
// Begin Class UAnimNotify_LyraContextEffects
void UAnimNotify_LyraContextEffects::StaticRegisterNativesUAnimNotify_LyraContextEffects()
{
#if WITH_EDITOR
UClass* Class = UAnimNotify_LyraContextEffects::StaticClass();
static const FNameNativePtrPair Funcs[] = {
{ "SetParameters", &UAnimNotify_LyraContextEffects::execSetParameters },
};
FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs));
#endif // WITH_EDITOR
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAnimNotify_LyraContextEffects);
UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects_NoRegister()
{
return UAnimNotify_LyraContextEffects::StaticClass();
}
struct Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
#if !UE_BUILD_SHIPPING
{ "Comment", "/**\n * \n */" },
#endif
{ "DisplayName", "Play Context Effects" },
{ "HideCategories", "Object Object" },
{ "IncludePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Effect_MetaData[] = {
{ "Category", "AnimNotify" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Effect to Play\n" },
#endif
{ "DisplayName", "Effect" },
{ "ExposeOnSpawn", "TRUE" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Effect to Play" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationOffset_MetaData[] = {
{ "Category", "AnimNotify" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Location offset from the socket\n" },
#endif
{ "ExposeOnSpawn", "TRUE" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Location offset from the socket" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RotationOffset_MetaData[] = {
{ "Category", "AnimNotify" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Rotation offset from socket\n" },
#endif
{ "ExposeOnSpawn", "TRUE" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Rotation offset from socket" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VFXProperties_MetaData[] = {
{ "Category", "AnimNotify" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Scale to spawn the particle system at\n" },
#endif
{ "ExposeOnSpawn", "TRUE" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Scale to spawn the particle system at" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AudioProperties_MetaData[] = {
{ "Category", "AnimNotify" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Scale to spawn the particle system at\n" },
#endif
{ "ExposeOnSpawn", "TRUE" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Scale to spawn the particle system at" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAttached_MetaData[] = {
{ "Category", "AttachmentProperties" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Should attach to the bone/socket\n" },
#endif
{ "ExposeOnSpawn", "TRUE" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Should attach to the bone/socket" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SocketName_MetaData[] = {
{ "Category", "AttachmentProperties" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// SocketName to attach to\n" },
#endif
{ "EditCondition", "bAttached" },
{ "ExposeOnSpawn", "TRUE" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "SocketName to attach to" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPerformTrace_MetaData[] = {
{ "Category", "AnimNotify" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Will perform a trace, required for SurfaceType to Context Conversion\n" },
#endif
{ "ExposeOnSpawn", "TRUE" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Will perform a trace, required for SurfaceType to Context Conversion" },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraceProperties_MetaData[] = {
{ "Category", "AnimNotify" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Scale to spawn the particle system at\n" },
#endif
{ "EditCondition", "bPerformTrace" },
{ "ExposeOnSpawn", "TRUE" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Scale to spawn the particle system at" },
#endif
};
#if WITH_EDITORONLY_DATA
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreviewInEditor_MetaData[] = {
{ "Category", "PreviewProperties" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewProperties_MetaData[] = {
{ "Category", "PreviewProperties" },
{ "EditCondition", "bPreviewInEditor" },
{ "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" },
};
#endif // WITH_EDITORONLY_DATA
#endif // WITH_METADATA
static const UECodeGen_Private::FStructPropertyParams NewProp_Effect;
static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffset;
static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffset;
static const UECodeGen_Private::FStructPropertyParams NewProp_VFXProperties;
static const UECodeGen_Private::FStructPropertyParams NewProp_AudioProperties;
static void NewProp_bAttached_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bAttached;
static const UECodeGen_Private::FNamePropertyParams NewProp_SocketName;
static void NewProp_bPerformTrace_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bPerformTrace;
static const UECodeGen_Private::FStructPropertyParams NewProp_TraceProperties;
#if WITH_EDITORONLY_DATA
static void NewProp_bPreviewInEditor_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreviewInEditor;
static const UECodeGen_Private::FStructPropertyParams NewProp_PreviewProperties;
#endif // WITH_EDITORONLY_DATA
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static UObject* (*const DependentSingletons[])();
#if WITH_EDITOR
static constexpr FClassFunctionLinkInfo FuncInfo[] = {
{ &Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters, "SetParameters" }, // 1208848875
};
static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048);
#endif // WITH_EDITOR
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UAnimNotify_LyraContextEffects>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, Effect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Effect_MetaData), NewProp_Effect_MetaData) }; // 1298103297
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_LocationOffset = { "LocationOffset", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, LocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationOffset_MetaData), NewProp_LocationOffset_MetaData) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_RotationOffset = { "RotationOffset", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, RotationOffset), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RotationOffset_MetaData), NewProp_RotationOffset_MetaData) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_VFXProperties = { "VFXProperties", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, VFXProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VFXProperties_MetaData), NewProp_VFXProperties_MetaData) }; // 817972917
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_AudioProperties = { "AudioProperties", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, AudioProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AudioProperties_MetaData), NewProp_AudioProperties_MetaData) }; // 2521679084
void Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached_SetBit(void* Obj)
{
((UAnimNotify_LyraContextEffects*)Obj)->bAttached = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached = { "bAttached", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UAnimNotify_LyraContextEffects), &Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAttached_MetaData), NewProp_bAttached_MetaData) };
const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_SocketName = { "SocketName", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, SocketName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SocketName_MetaData), NewProp_SocketName_MetaData) };
void Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace_SetBit(void* Obj)
{
((UAnimNotify_LyraContextEffects*)Obj)->bPerformTrace = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace = { "bPerformTrace", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UAnimNotify_LyraContextEffects), &Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPerformTrace_MetaData), NewProp_bPerformTrace_MetaData) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_TraceProperties = { "TraceProperties", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, TraceProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraceProperties_MetaData), NewProp_TraceProperties_MetaData) }; // 2936355306
#if WITH_EDITORONLY_DATA
void Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor_SetBit(void* Obj)
{
((UAnimNotify_LyraContextEffects*)Obj)->bPreviewInEditor = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor = { "bPreviewInEditor", nullptr, (EPropertyFlags)0x0010000800004011, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UAnimNotify_LyraContextEffects), &Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreviewInEditor_MetaData), NewProp_bPreviewInEditor_MetaData) };
const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_PreviewProperties = { "PreviewProperties", nullptr, (EPropertyFlags)0x0010000800000011, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, PreviewProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewProperties_MetaData), NewProp_PreviewProperties_MetaData) }; // 1783893619
#endif // WITH_EDITORONLY_DATA
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_Effect,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_LocationOffset,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_RotationOffset,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_VFXProperties,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_AudioProperties,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_SocketName,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_TraceProperties,
#if WITH_EDITORONLY_DATA
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_PreviewProperties,
#endif // WITH_EDITORONLY_DATA
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers) < 2048);
UObject* (*const Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UAnimNotify,
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::ClassParams = {
&UAnimNotify_LyraContextEffects::StaticClass,
"Game",
&StaticCppClassTypeInfo,
DependentSingletons,
IF_WITH_EDITOR(FuncInfo, nullptr),
Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
IF_WITH_EDITOR(UE_ARRAY_COUNT(FuncInfo), 0),
UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers),
0,
0x001120A4u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::Class_MetaDataParams), Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects()
{
if (!Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects.OuterSingleton, Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects.OuterSingleton;
}
template<> LYRAGAME_API UClass* StaticClass<UAnimNotify_LyraContextEffects>()
{
return UAnimNotify_LyraContextEffects::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UAnimNotify_LyraContextEffects);
UAnimNotify_LyraContextEffects::~UAnimNotify_LyraContextEffects() {}
// End Class UAnimNotify_LyraContextEffects
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics
{
static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = {
{ FLyraContextEffectAnimNotifyVFXSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyVFXSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyVFXSettings), 817972917U) },
{ FLyraContextEffectAnimNotifyAudioSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyAudioSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyAudioSettings), 2521679084U) },
{ FLyraContextEffectAnimNotifyTraceSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyTraceSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyTraceSettings), 2936355306U) },
{ FLyraContextEffectAnimNotifyPreviewSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyPreviewSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyPreviewSettings), 1783893619U) },
};
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UAnimNotify_LyraContextEffects, UAnimNotify_LyraContextEffects::StaticClass, TEXT("UAnimNotify_LyraContextEffects"), &Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAnimNotify_LyraContextEffects), 2277929134U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_535087911(TEXT("/Script/LyraGame"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ClassInfo),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ScriptStructInfo),
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,97 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
struct FGameplayTag;
struct FLyraContextEffectAnimNotifyAudioSettings;
struct FLyraContextEffectAnimNotifyTraceSettings;
struct FLyraContextEffectAnimNotifyVFXSettings;
#ifdef LYRAGAME_AnimNotify_LyraContextEffects_generated_h
#error "AnimNotify_LyraContextEffects.generated.h already included, missing '#pragma once' in AnimNotify_LyraContextEffects.h"
#endif
#define LYRAGAME_AnimNotify_LyraContextEffects_generated_h
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_17_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics; \
static class UScriptStruct* StaticStruct();
template<> LYRAGAME_API UScriptStruct* StaticStruct<struct FLyraContextEffectAnimNotifyVFXSettings>();
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_31_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics; \
static class UScriptStruct* StaticStruct();
template<> LYRAGAME_API UScriptStruct* StaticStruct<struct FLyraContextEffectAnimNotifyAudioSettings>();
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_49_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics; \
static class UScriptStruct* StaticStruct();
template<> LYRAGAME_API UScriptStruct* StaticStruct<struct FLyraContextEffectAnimNotifyTraceSettings>();
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_70_GENERATED_BODY \
friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics; \
static class UScriptStruct* StaticStruct();
template<> LYRAGAME_API UScriptStruct* StaticStruct<struct FLyraContextEffectAnimNotifyPreviewSettings>();
#if WITH_EDITOR
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_RPC_WRAPPERS_NO_PURE_DECLS_EOD \
DECLARE_FUNCTION(execSetParameters);
#else // WITH_EDITOR
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_RPC_WRAPPERS_NO_PURE_DECLS_EOD
#endif // WITH_EDITOR
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUAnimNotify_LyraContextEffects(); \
friend struct Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics; \
public: \
DECLARE_CLASS(UAnimNotify_LyraContextEffects, UAnimNotify, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \
DECLARE_SERIALIZER(UAnimNotify_LyraContextEffects) \
static const TCHAR* StaticConfigName() {return TEXT("Game");} \
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_ENHANCED_CONSTRUCTORS \
private: \
/** Private move- and copy-constructors, should never be used */ \
UAnimNotify_LyraContextEffects(UAnimNotify_LyraContextEffects&&); \
UAnimNotify_LyraContextEffects(const UAnimNotify_LyraContextEffects&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAnimNotify_LyraContextEffects); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAnimNotify_LyraContextEffects); \
DEFINE_DEFAULT_CONSTRUCTOR_CALL(UAnimNotify_LyraContextEffects) \
NO_API virtual ~UAnimNotify_LyraContextEffects();
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_93_PROLOG
#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_RPC_WRAPPERS_NO_PURE_DECLS_EOD \
FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_INCLASS_NO_PURE_DECLS \
FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAGAME_API UClass* StaticClass<class UAnimNotify_LyraContextEffects>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,98 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraGame/UI/Frontend/ApplyFrontendPerfSettingsAction.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeApplyFrontendPerfSettingsAction() {}
// Begin Cross Module References
GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction();
LYRAGAME_API UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction();
LYRAGAME_API UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction_NoRegister();
UPackage* Z_Construct_UPackage__Script_LyraGame();
// End Cross Module References
// Begin Class UApplyFrontendPerfSettingsAction
void UApplyFrontendPerfSettingsAction::StaticRegisterNativesUApplyFrontendPerfSettingsAction()
{
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UApplyFrontendPerfSettingsAction);
UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction_NoRegister()
{
return UApplyFrontendPerfSettingsAction::StaticClass();
}
struct Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
#if !UE_BUILD_SHIPPING
{ "Comment", "/**\n * GameFeatureAction responsible for telling the user settings to apply frontend/menu specific performance settings\n */" },
#endif
{ "DisplayName", "Use Frontend Perf Settings" },
{ "IncludePath", "UI/Frontend/ApplyFrontendPerfSettingsAction.h" },
{ "ModuleRelativePath", "UI/Frontend/ApplyFrontendPerfSettingsAction.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "GameFeatureAction responsible for telling the user settings to apply frontend/menu specific performance settings" },
#endif
};
#endif // WITH_METADATA
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UApplyFrontendPerfSettingsAction>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
UObject* (*const Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UGameFeatureAction,
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::ClassParams = {
&UApplyFrontendPerfSettingsAction::StaticClass,
nullptr,
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
nullptr,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
0,
0,
0x002810A0u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::Class_MetaDataParams), Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction()
{
if (!Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction.OuterSingleton, Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction.OuterSingleton;
}
template<> LYRAGAME_API UClass* StaticClass<UApplyFrontendPerfSettingsAction>()
{
return UApplyFrontendPerfSettingsAction::StaticClass();
}
UApplyFrontendPerfSettingsAction::UApplyFrontendPerfSettingsAction(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {}
DEFINE_VTABLE_PTR_HELPER_CTOR(UApplyFrontendPerfSettingsAction);
UApplyFrontendPerfSettingsAction::~UApplyFrontendPerfSettingsAction() {}
// End Class UApplyFrontendPerfSettingsAction
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UApplyFrontendPerfSettingsAction, UApplyFrontendPerfSettingsAction::StaticClass, TEXT("UApplyFrontendPerfSettingsAction"), &Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UApplyFrontendPerfSettingsAction), 3626913931U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_3821545779(TEXT("/Script/LyraGame"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,56 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "UI/Frontend/ApplyFrontendPerfSettingsAction.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef LYRAGAME_ApplyFrontendPerfSettingsAction_generated_h
#error "ApplyFrontendPerfSettingsAction.generated.h already included, missing '#pragma once' in ApplyFrontendPerfSettingsAction.h"
#endif
#define LYRAGAME_ApplyFrontendPerfSettingsAction_generated_h
#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUApplyFrontendPerfSettingsAction(); \
friend struct Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics; \
public: \
DECLARE_CLASS(UApplyFrontendPerfSettingsAction, UGameFeatureAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \
DECLARE_SERIALIZER(UApplyFrontendPerfSettingsAction)
#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_ENHANCED_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
LYRAGAME_API UApplyFrontendPerfSettingsAction(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
private: \
/** Private move- and copy-constructors, should never be used */ \
UApplyFrontendPerfSettingsAction(UApplyFrontendPerfSettingsAction&&); \
UApplyFrontendPerfSettingsAction(const UApplyFrontendPerfSettingsAction&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UApplyFrontendPerfSettingsAction); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UApplyFrontendPerfSettingsAction); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UApplyFrontendPerfSettingsAction) \
LYRAGAME_API virtual ~UApplyFrontendPerfSettingsAction();
#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_19_PROLOG
#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_INCLASS_NO_PURE_DECLS \
FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_ENHANCED_CONSTRUCTORS \
private: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAGAME_API UClass* StaticClass<class UApplyFrontendPerfSettingsAction>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,203 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "LyraGame/GameModes/AsyncAction_ExperienceReady.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeAsyncAction_ExperienceReady() {}
// Begin Cross Module References
COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister();
ENGINE_API UClass* Z_Construct_UClass_UBlueprintAsyncActionBase();
LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady();
LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady_NoRegister();
LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature();
UPackage* Z_Construct_UPackage__Script_LyraGame();
// End Cross Module References
// Begin Delegate FExperienceReadyAsyncDelegate
struct Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" },
};
#endif // WITH_METADATA
static const UECodeGen_Private::FFunctionParams FuncParams;
};
const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "ExperienceReadyAsyncDelegate__DelegateSignature", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) };
UFunction* Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::FuncParams);
}
return ReturnFunction;
}
void FExperienceReadyAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& ExperienceReadyAsyncDelegate)
{
ExperienceReadyAsyncDelegate.ProcessMulticastDelegate<UObject>(NULL);
}
// End Delegate FExperienceReadyAsyncDelegate
// Begin Class UAsyncAction_ExperienceReady Function WaitForExperienceReady
struct Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics
{
struct AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms
{
UObject* WorldContextObject;
UAsyncAction_ExperienceReady* ReturnValue;
};
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "BlueprintInternalUseOnly", "true" },
#if !UE_BUILD_SHIPPING
{ "Comment", "// Waits for the experience to be determined and loaded\n" },
#endif
{ "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Waits for the experience to be determined and loaded" },
#endif
{ "WorldContext", "WorldContextObject" },
};
#endif // WITH_METADATA
static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject;
static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static const UECodeGen_Private::FFunctionParams FuncParams;
};
const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ExperienceReady_NoRegister, METADATA_PARAMS(0, nullptr) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_WorldContextObject,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_ReturnValue,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers) < 2048);
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ExperienceReady, nullptr, "WaitForExperienceReady", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::Function_MetaDataParams) };
static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms) < MAX_uint16);
UFunction* Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady()
{
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::FuncParams);
}
return ReturnFunction;
}
DEFINE_FUNCTION(UAsyncAction_ExperienceReady::execWaitForExperienceReady)
{
P_GET_OBJECT(UObject,Z_Param_WorldContextObject);
P_FINISH;
P_NATIVE_BEGIN;
*(UAsyncAction_ExperienceReady**)Z_Param__Result=UAsyncAction_ExperienceReady::WaitForExperienceReady(Z_Param_WorldContextObject);
P_NATIVE_END;
}
// End Class UAsyncAction_ExperienceReady Function WaitForExperienceReady
// Begin Class UAsyncAction_ExperienceReady
void UAsyncAction_ExperienceReady::StaticRegisterNativesUAsyncAction_ExperienceReady()
{
UClass* Class = UAsyncAction_ExperienceReady::StaticClass();
static const FNameNativePtrPair Funcs[] = {
{ "WaitForExperienceReady", &UAsyncAction_ExperienceReady::execWaitForExperienceReady },
};
FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs));
}
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ExperienceReady);
UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady_NoRegister()
{
return UAsyncAction_ExperienceReady::StaticClass();
}
struct Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
#if !UE_BUILD_SHIPPING
{ "Comment", "/**\n * Asynchronously waits for the game state to be ready and valid and then calls the OnReady event. Will call OnReady\n * immediately if the game state is valid already.\n */" },
#endif
{ "IncludePath", "GameModes/AsyncAction_ExperienceReady.h" },
{ "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Asynchronously waits for the game state to be ready and valid and then calls the OnReady event. Will call OnReady\nimmediately if the game state is valid already." },
#endif
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnReady_MetaData[] = {
#if !UE_BUILD_SHIPPING
{ "Comment", "// Called when the experience has been determined and is ready/loaded\n" },
#endif
{ "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" },
#if !UE_BUILD_SHIPPING
{ "ToolTip", "Called when the experience has been determined and is ready/loaded" },
#endif
};
#endif // WITH_METADATA
static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnReady;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
static UObject* (*const DependentSingletons[])();
static constexpr FClassFunctionLinkInfo FuncInfo[] = {
{ &Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady, "WaitForExperienceReady" }, // 2633865634
};
static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048);
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UAsyncAction_ExperienceReady>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
};
const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::NewProp_OnReady = { "OnReady", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ExperienceReady, OnReady), Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnReady_MetaData), NewProp_OnReady_MetaData) }; // 1589972845
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::NewProp_OnReady,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers) < 2048);
UObject* (*const Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UBlueprintAsyncActionBase,
(UObject* (*)())Z_Construct_UPackage__Script_LyraGame,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::ClassParams = {
&UAsyncAction_ExperienceReady::StaticClass,
nullptr,
&StaticCppClassTypeInfo,
DependentSingletons,
FuncInfo,
Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
UE_ARRAY_COUNT(FuncInfo),
UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers),
0,
0x008000A0u,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::Class_MetaDataParams)
};
UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady()
{
if (!Z_Registration_Info_UClass_UAsyncAction_ExperienceReady.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ExperienceReady.OuterSingleton, Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UAsyncAction_ExperienceReady.OuterSingleton;
}
template<> LYRAGAME_API UClass* StaticClass<UAsyncAction_ExperienceReady>()
{
return UAsyncAction_ExperienceReady::StaticClass();
}
DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ExperienceReady);
UAsyncAction_ExperienceReady::~UAsyncAction_ExperienceReady() {}
// End Class UAsyncAction_ExperienceReady
// Begin Registration
struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UAsyncAction_ExperienceReady, UAsyncAction_ExperienceReady::StaticClass, TEXT("UAsyncAction_ExperienceReady"), &Z_Registration_Info_UClass_UAsyncAction_ExperienceReady, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ExperienceReady), 70995253U) },
};
};
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_3656380995(TEXT("/Script/LyraGame"),
Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_Statics::ClassInfo),
nullptr, 0,
nullptr, 0);
// End Registration
PRAGMA_ENABLE_DEPRECATION_WARNINGS

View File

@ -0,0 +1,67 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
// IWYU pragma: private, include "GameModes/AsyncAction_ExperienceReady.h"
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
class UAsyncAction_ExperienceReady;
class UObject;
#ifdef LYRAGAME_AsyncAction_ExperienceReady_generated_h
#error "AsyncAction_ExperienceReady.generated.h already included, missing '#pragma once' in AsyncAction_ExperienceReady.h"
#endif
#define LYRAGAME_AsyncAction_ExperienceReady_generated_h
#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_14_DELEGATE \
LYRAGAME_API void FExperienceReadyAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& ExperienceReadyAsyncDelegate);
#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_RPC_WRAPPERS \
DECLARE_FUNCTION(execWaitForExperienceReady);
#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_INCLASS \
private: \
static void StaticRegisterNativesUAsyncAction_ExperienceReady(); \
friend struct Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics; \
public: \
DECLARE_CLASS(UAsyncAction_ExperienceReady, UBlueprintAsyncActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \
DECLARE_SERIALIZER(UAsyncAction_ExperienceReady)
#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UAsyncAction_ExperienceReady(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ExperienceReady) \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ExperienceReady); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ExperienceReady); \
private: \
/** Private move- and copy-constructors, should never be used */ \
UAsyncAction_ExperienceReady(UAsyncAction_ExperienceReady&&); \
UAsyncAction_ExperienceReady(const UAsyncAction_ExperienceReady&); \
public: \
NO_API virtual ~UAsyncAction_ExperienceReady();
#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_20_PROLOG
#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_RPC_WRAPPERS \
FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_INCLASS \
FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
template<> LYRAGAME_API UClass* StaticClass<class UAsyncAction_ExperienceReady>();
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS

Some files were not shown because too many files have changed in this diff Show More