Confimred cog is working

Still need to test UE_ImGui and get the other stuff
This commit is contained in:
2024-04-09 19:14:19 -04:00
parent c1f114b21b
commit 4210e2703f
12 changed files with 118 additions and 1693 deletions

15
scripts/editor.ps1 Normal file
View File

@ -0,0 +1,15 @@
Clear-Host
$path_scripts = $PSScriptRoot
$path_helpers = join-path $path_scripts 'helpers'
$path_root = split-path -Parent -Path $path_scripts
$path_ue = join-path $path_root 'UE'
$path_project = join-path $path_root 'Project'
$ue_editor = join-path $path_ue Engine\Binaries\Win64\UnrealEditor.exe
$surgo_uproject = join-path $path_project 'Surgo.uproject'
$feditor_log = '-log'
& $ue_editor $surgo_uproject $feditor_log

View File

@ -8,7 +8,7 @@ $path_project = join-path $path_root 'Project'
$surgo_uproject = join-path $path_project 'Surgo.uproject'
$UBT = join-path $path_ue 'Engine\Binaries\DotNET\UnrealBuildTool\UnrealBuildTool.exe'
$UBT = join-path $path_ue 'Engine\Binaries\Win64\UnrealEditor.exe'
$fubt_project = '-project'
$fubt_projectfiles = '-projectfiles'