-
I built this simple project trying to use your implementation of TestFramework to render my game state. But i'm recieving a error:
There are 2 main functions, one is a copy of JoltPhysicsHelloWorld, and it works well. The other is trying to use Application from TestFramework.
I would like to know if you have any tip to solve that or if you know the best way to make TestFramework work with JoltPhysicsHelloWorld? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Looks like you're trying to compile on Linux in which case When running cmake for the first time you should see something like:
if not, then you can't compile |
Beta Was this translation helpful? Give feedback.
Looks like you're trying to compile on Linux in which case
Renderer::sCreate
will only exist ifJPH_ENABLE_VULKAN
is defined. My guess is that it couldn't find the Vulkan SDK so it left the define undefined.When running cmake for the first time you should see something like:
if not, then you can't compile
TestFramework
since it has no renderer.