What Are You Working On? Community Screenshots & Videos

Nice work everyone! Medieval pack is looking sweet!

Meanwhile I’m working on getting some of my older experiments out to the community - made a hologram effect with some custom depth culling during Unreal 4 Beta along with some other materials that use Custom Depth so I am writing an article about it to explain how you can use it for your own .

Tutorial will be out soon!

Edit: It’s out! ://www.tomlooman/the-many-uses-of-custom-depth-in-unreal-4/

man…Not sure I’ll find a place for it in my project but it’s always cool to see how people go about solving things in the Engine…Thanks for Sharing…

A few weeks back, I wrapped up work on a 5-day level design challenge, and my final result was titled Desert Oasis: .unrealengine/showthread.php?30132-Desert-Outpost-A-UE4-Scene

://i62.tinypic/1zm00w5.

Additionally, I recently wrapped up a small blueprint study which can be found in more detail : ://millansingh/312004/4349964/projects/ue4-blueprint-study-security-clearance-demo

For now, I will leave teaser image to encourage you guys to click on the link above.

://i61.tinypic/2rgp5rq.

@ fragfest2012 : Scene!!! 4 thumbs up for you man!!!

Just a quick volcano eruption I decided to make using one of my latest shaders.
=6XcFajJKqsQ

The shader for the lava is actually supposed to be for blood, but i tweaked it a bit to fit lava.

Looks sweet!

Made a very dirty mockup for a portal effect, nothing functional yet just checking out RenderTargets in UE4.

://www.tomlooman//uploads/2014/09/switch_portal_RT.

is the gif of what i’m working on right now.
://gfycat/WelllitAbleIndianhare

Pretty much working on my Escher-esque game, Relative Madness.

The material depends on the rotation of the object, as I’ve asked some of the UE dev’s whilst at pax, you can’t access the lighting pass in materials… sigh.

904fa40a55e3355327efe870c38e01f134396a55.jpeg

Some pretty cool things in . =) Looking forward to being able to post my own WIPs.

Me and my brother have been working on game throughout the summer. Everything is in blueprints.

?v=QdKc0MJ-S40

Just a quick lil thing

:///rRlvjRc.jpg

Video – > ://www.gfycat/DeliciousBitterBeagle

making random optical illusions

Made a start on some new content for my tutorials on github. Since I built some SW:TOR inspired fresnel lighting during beta and never did anything with it - I figured I should just share it in the tutorial repository.

It’s not uploaded yet, I’ll double check tomorrow if I missed anything - it won’t be a fancy tutorial, just sharing the content for the community.

is what the level looks like at the moment:

Screen shot from our almost ready Alpha Game “”.

Large based shooter set in afghan and other locales. Based on our combined experience developing project reality BF2 mod.

As you can see not fully polished up yet but mostly there… Maps will be minimum 2km - 8km areas.

Optomization of draw calls has been the key so far!

Well even if Saturday just passed :

Working on a suburban project, early wip.



2dd1ce8206254cdaa9dbbb02d8c18bd4a94513fd.jpeg

Looks good, are you rendering to the surface directly? IIRC for Portals as they are in “Portal” you need to render to screensized rendertargets which are not directly drawn to the modelsurface. Which then looks like :
(Did in another WAY simpler and older engine):

?v=OGD6HJMs5-0

Thanks! I’ll try that once I get back to eventually.

Keep me updated on . While i own UE4 since it’s first -Release, i had not much time to work with it and lack basic knowledge which keeps me from doing in UE4.

My first attempt was to rescale FOV and camera rotation on the RT based on relative position to the portal. I might be thinking about it the wrong way - I’d like to get back to in a few weeks. :slight_smile:

Yes you do^^. if you render to texture, the user will always see the pixels in closeup and perspective is never correct way.

Basic Concepts:
Rendering:
The Portal renders nothing special. Just a given value for each pixel of it’s surface into a seperated screen buffer(shared by all portals). The Portal itself remains (theoreticall) invisible. The camera which is attached to the portal renders it’s content to an invisible screensized rendertarget. Each portal has it’s unique per pixel value and Rendertarget. A Postprocess runs overall pixels of the shared screen bufer and for each value it finds(Value <> 0) it picks the corresponding invisible rendertarget and drasw the corresponding pixel onto the screen.

Camera:
Each Camera, which is attached to a portal, MOVES and ROTATES relative to the player camera at the source portal. Playercamera is calculatet to relative position and rotation to the sourceportal, and relative data is then calculatet to absolute position and rotation based on the targetportal.

Because cameras of portals move and rotate, you need to setup a clipplane at the eventhorizon of the given portal for the given Portalcamera. The PortalCamera is usually behind the portal and collides with objects/walls behind it, otherwhise.

If a detailed rundown of is required, or asked by someone, tell me and i’ll see what i can do. (mostly concept presented on another engine implementation as shown in my video above, but no UE4 implementation. At least not yet as i lack knowledge)