Originally posted by VictorLerp
View Post
Announcement
Collapse
No announcement yet.
How to enable Chaos
Collapse
This is a sticky topic.
X
X
-
NilsonLima repliedtheProfessor The Content Examples project is separate and not found at GitHub, which is only the engine code. The Content Examples is found at the Learn tab at Epic's Launcher (you can see the latest one there up to UE4.22). Once the UE4.23 releases the project will receive an update marking it as 4.23 compatible and the examples with Chaos will be there, not in preview unfortunately.
Leave a comment:
-
theProfessor repliedOriginally posted by order66 View Post
You are absolutely right. When Chaos comes out of its experimental state it will be part of the launcher. Until then you will always have to compile the version to be able to use it.
I would definitely expect to need to compile it in 4.24 and 4.25, too.
Leave a comment:
-
order66 repliedOriginally posted by CitizenMM View Post
Unless I misread awhile back in this thread, Chaos will not be available via the launcher in 4.23. You must compile from source to use it until it's officially released in a later version. Don't quote me on this, though.
I would definitely expect to need to compile it in 4.24 and 4.25, too.
- 1 like
Leave a comment:
-
CitizenMM repliedOriginally posted by theProfessor View PostStill no fracture editor in P8.
Leave a comment:
-
order66 repliedOriginally posted by mxnko View PostI am having the same problem when I follow the instructions here. This is my UE4Editor.Target.cs:
Code:using UnrealBuildTool; using System.Collections.Generic; public class UE4EditorTarget : TargetRules { public UE4EditorTarget( TargetInfo Target ) : base(Target) { Type = TargetType.Editor; bCompileChaos = true; BuildEnvironment = TargetBuildEnvironment.Unique; bBuildAllModules = true; ExtraModuleNames.Add("UE4Game"); } }
Code:Fatal error: [File:C:/Users/max/Documents/GitHub/UnrealEngine/423/Engine/Source/Runtime/RenderCore/Private/RenderingThread.cpp] [Line: 836] Rendering thread exception: Assertion failed: !bInitializedSerializationHistory [File:C:/Users/max/Documents/GitHub/UnrealEngine/423/Engine/Source/Runtime/RenderCore/Private/Shader.cpp] [Line: 168] Shader type was loaded after engine init, use ELoadingPhase::PostConfigInit on your module to cause it to load earlier. Unhandled Exception: EXCEPTION_ACCESS_VIOLATION writing address 0x5327cde8 0x00007ff9e27d5eb7 UE4Editor-RenderCore.dll!FRenderResource::InitResource() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\RenderCore\Private\RenderResource.cpp:82] 0x00007ff9e28376ab UE4Editor-RenderCore.dll!TGraphTask<TEnqueueUniqueRenderCommandType<`BeginInitResource'::`2'::InitCommandName,<lambda_ca51434da6012349da95a9abb2880eb9> > >::ExecuteTask() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Public\Async\TaskGraphInterfaces.h:847] 0x00007ff9c2255465 UE4Editor-Core.dll!FNamedTaskThread::ProcessTasksNamedThread() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Private\Async\TaskGraph.cpp:686] 0x00007ff9c2255813 UE4Editor-Core.dll!FNamedTaskThread::ProcessTasksUntilQuit() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Private\Async\TaskGraph.cpp:583] 0x00007ff9e286fd6b UE4Editor-RenderCore.dll!RenderingThreadMain() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\RenderCore\Private\RenderingThread.cpp:340] 0x00007ff9e287834e UE4Editor-RenderCore.dll!FRenderingThread::Run() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\RenderCore\Private\RenderingThread.cpp:471] 0x00007ff9c26a863f UE4Editor-Core.dll!FRunnableThreadWin::Run() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Private\Windows\WindowsRunnableThread.cpp:96] 0x00007ff9c269ec11 UE4Editor-Core.dll!FRunnableThreadWin::GuardedRun() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Private\Windows\WindowsRunnableThread.cpp:53] 0x00007ffa32f57974 KERNEL32.DLL!UnknownFunction [] 0x00007ffa3569a271 ntdll.dll!UnknownFunction []
Code:public class UE4EditorTarget : TargetRules { public UE4EditorTarget( TargetInfo Target ) : base(Target) { Type = TargetType.Editor; BuildEnvironment = TargetBuildEnvironment.Shared; bBuildAllModules = true; ExtraModuleNames.Add("UE4Game"); bCompileChaos = true; } }
Leave a comment:
-
mxnko repliedI am having the same problem when I follow the instructions here. This is my UE4Editor.Target.cs:
Code:using UnrealBuildTool; using System.Collections.Generic; public class UE4EditorTarget : TargetRules { public UE4EditorTarget( TargetInfo Target ) : base(Target) { Type = TargetType.Editor; bCompileChaos = true; BuildEnvironment = TargetBuildEnvironment.Unique; bBuildAllModules = true; ExtraModuleNames.Add("UE4Game"); } }
Code:Fatal error: [File:C:/Users/max/Documents/GitHub/UnrealEngine/423/Engine/Source/Runtime/RenderCore/Private/RenderingThread.cpp] [Line: 836] Rendering thread exception: Assertion failed: !bInitializedSerializationHistory [File:C:/Users/max/Documents/GitHub/UnrealEngine/423/Engine/Source/Runtime/RenderCore/Private/Shader.cpp] [Line: 168] Shader type was loaded after engine init, use ELoadingPhase::PostConfigInit on your module to cause it to load earlier. Unhandled Exception: EXCEPTION_ACCESS_VIOLATION writing address 0x5327cde8 0x00007ff9e27d5eb7 UE4Editor-RenderCore.dll!FRenderResource::InitResource() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\RenderCore\Private\RenderResource.cpp:82] 0x00007ff9e28376ab UE4Editor-RenderCore.dll!TGraphTask<TEnqueueUniqueRenderCommandType<`BeginInitResource'::`2'::InitCommandName,<lambda_ca51434da6012349da95a9abb2880eb9> > >::ExecuteTask() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Public\Async\TaskGraphInterfaces.h:847] 0x00007ff9c2255465 UE4Editor-Core.dll!FNamedTaskThread::ProcessTasksNamedThread() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Private\Async\TaskGraph.cpp:686] 0x00007ff9c2255813 UE4Editor-Core.dll!FNamedTaskThread::ProcessTasksUntilQuit() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Private\Async\TaskGraph.cpp:583] 0x00007ff9e286fd6b UE4Editor-RenderCore.dll!RenderingThreadMain() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\RenderCore\Private\RenderingThread.cpp:340] 0x00007ff9e287834e UE4Editor-RenderCore.dll!FRenderingThread::Run() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\RenderCore\Private\RenderingThread.cpp:471] 0x00007ff9c26a863f UE4Editor-Core.dll!FRunnableThreadWin::Run() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Private\Windows\WindowsRunnableThread.cpp:96] 0x00007ff9c269ec11 UE4Editor-Core.dll!FRunnableThreadWin::GuardedRun() [C:\Users\max\Documents\GitHub\UnrealEngine\423\Engine\Source\Runtime\Core\Private\Windows\WindowsRunnableThread.cpp:53] 0x00007ffa32f57974 KERNEL32.DLL!UnknownFunction [] 0x00007ffa3569a271 ntdll.dll!UnknownFunction []
Leave a comment:
-
order66 repliedOriginally posted by scratscrat View PostAnybody know howto generate hit or overlap results with geometry collections? They seem to respond only to fields. And for example I can't make any object stand above a geometry collection.
Leave a comment:
-
THEAETIK repliedI downloaded preview 7 from the launcher, I could see all the following plugins and enabled them- ChaosEditor
- Planar Cut
- Editable Mesh
- Geometry
Restarted the editor
I can't seem to get the fracture editor in the modes tab. I guess it only works with the Github release branch code you compile yourself then?
EDIT: Looks like Victor already answered a similar question..
"You'll have to compile the engine from GitHub to use Chaos until it's out of Early Access, which will take a couple of engine versions."
Not sure why we can see / enable the plugins in preview though.Last edited by THEAETIK; 08-25-2019, 07:42 AM.
Leave a comment:
-
Ali_TeamRevived repliedAnybody know howto generate hit or overlap results with geometry collections? They seem to respond only to fields. And for example I can't make any object stand above a geometry collection.
Leave a comment:
-
chronoss2008 repliednvm had to link the github and epic , hope this never gets hacked either of them caus ehten you open up both to trouble , thats the problem with this kinda stuff....
update 54: ya linking said account also leads to 404 if i click the link on first page....i go up and its nto even in asid repository now.....
solved ok ther eis a step missing that i missed and was not in the steps GITHUB sent two emails after you do that where YOU JOIN a github repository to get the build and once you do the join form said email you get access.
so people that dont know your verification email look right before that one for it.
Last edited by chronoss2008; 08-23-2019, 02:30 PM.
Leave a comment:
-
mattknoff repliedOriginally posted by NilsonLima View Post
Will it work with blueprint only projects at the final release ?
Originally posted by VictorLerp View Post
5. Go to ProjectSettings -> Physics -> ChaosSettings, and set DefaultThreadingModel to DedicatedThread. This is temporary, and won't be required after full release.
NOTE: This will enable Chaos for all of your Blueprint and C++ projects. If you'd like to enable Chaos per project, you will have to add the lines under step 2 to your project's Target.cs file and create a C++ project (it won't work with a Blueprint project).
Leave a comment:
-
theProfessor repliedIs there anyway to get the content examples for 4.23 before the release of 4.23? The video was fair. I would give it a C+.
Leave a comment:
Leave a comment: