I am trying to learn all the ins and outs of the engine before I try to make a game from scratch. I am a programmer and the level design is all very foreign to me. I’m trying to create a body of water. I used the landscaping tool to basically make a crevice where I want a lake to go. Now I want to fill that lake with water so that the player can swim through it. I tried adding a water volume (physics volume) and nothing happened except reduced fall speed (which i set), and when I fell to the bottom I could not move any longer.
So this really has two parts:
How do I make the physics volume correctly simulate water?
How do I create a decent looking body of water in/around that water/physics volume?
I cant answer your question, but have more to add to it I suppose.
I’d like to create reactive water. Something that looks like an ocean, but also is reactive to objects passing over and through it. GTA ocean water to put is short. I’ve tried planes with textures. I’ve tried cube meshes with an insane poly count on the top surface triangulated as nicely as I could. Still, all I get is a good poly ripple effect with no physics. How can I make that poly reactive?
Ok, so I figure this out. In the FPS sample/starter content they never tied forward movement in with pitch. You need pitch to be able to swim up and down. Just add pitch in and you’re fine.
In the C++ project you can find this in the character class in the MoveForward method.
Thanks. I’ll take a look at those. They all sound like they have something to get me going in the right direction. The render target work seems the most promising towards what I’m shooting for.
Although this question is already resolved, I would just like to ask if it’s possible to add pitch in Blueprint. If it is, how can I do that? I’m also having the same issue that was on here originally.