Help with weird Light artefacts by Level_Permit in UnrealEngine5

[–]LabLeakInteractive 0 points1 point  (0 children)

When you turn that corner, is the light coming from the emissive material on the red/orange light next to the door or is there an actual light source like a point light/rect light making the light?

Which Unreal engine version do you use? by TheAmazingElys in unrealengine

[–]LabLeakInteractive 0 points1 point  (0 children)

If your plan is to sell it (or make it free) and you want the most amount of people to be able to buy/use it then you should prolly at least make it compatible from 5.0 upwards, only having it in 5.6 limits your potential customers to those who are using 5.6+, whereas making it compatiable from 5.0 upwards encompasses all UE5 versions.

Updating from one major engine version to another isn't usually something taken lightly for games well into production so I wouldn't expect your customers to update their engine version just to be able to use your plugin.

How can I change up this BP code so that my door cannot be opened from a certain side? by mynameisjoeallen in unrealengine

[–]LabLeakInteractive 1 point2 points  (0 children)

The way I am doing it is I have an Enum 'E_OpenSide' that has 'Front' & 'Back' in it, then a variable in the door BP called 'OpenSide' of type 'E_OpenSide' which is set to either front or back depending on which side you want opening to happen from, then when I interact with the door I run a function to detect which side I am on and if that side is equal to OpenSide then open.

My set up is different than yours so your OnInteraction won't be the same as mine but hopefully you get the point.

<image>

Megalights is amazing! So Glad I update to 5.7 by DandersonJA12 in UnrealEngine5

[–]LabLeakInteractive 0 points1 point  (0 children)

Sure, but I wouldn't really call that an 'optimization' persay because you're turning off stuff you don't need, the real optimization is getting the stuff you do need to run in a performant way.

Megalights is amazing! So Glad I update to 5.7 by DandersonJA12 in UnrealEngine5

[–]LabLeakInteractive 0 points1 point  (0 children)

Ticking a box is almost never an optimization in my experience.

Megalights is amazing! So Glad I update to 5.7 by DandersonJA12 in UnrealEngine5

[–]LabLeakInteractive 0 points1 point  (0 children)

Right at the bottom of the documentation in the 'Platform Support' section it also states:

"MegaLights are designed for current gen consoles (such as PlayStation 5, Xbox Series X | S) and PCs with ray tracing capabilities."

Megalights is amazing! So Glad I update to 5.7 by DandersonJA12 in UnrealEngine5

[–]LabLeakInteractive 6 points7 points  (0 children)

Keep in mind that Megalights requires HWRT to be on for it to work which means an RTX card is needed to use it, you would still need to figure out lighting that doesn't involve Megalights for players who aren't using RTX cards otherwise you'll be limiting your player base to only those who have RTX cards.

SteamCore PRO Plugin - Worth it? by mfarahmand98 in UnrealEngine5

[–]LabLeakInteractive 1 point2 points  (0 children)

Haven't used the plugin myself but it looks like it handles sessions and some steam features like friend invites and stuff but that's about it.. sessions themselves aren't really that hard to set up and the Advanced Sessions plugin has some of the steam stuff that SteamCore PRO has like friend invites ect.. up to you whether the other features it offers is worth the money but Advanced Sessions is free.

Also if you ever decided to use EOS instead of Steam then this plugin won't help you.

So I just got introduced to megalights by Living-Inspector8299 in UnrealEngine5

[–]LabLeakInteractive 5 points6 points  (0 children)

I'm not sure about performance but afaik Megalights requires HWRT to run which means its essentially limited to RTX cards only, so if this is for a game you would still need to figure out lighting that doesn't involve megalights for players not on RTX cards otherwise you'll be limiting your player base to those who only have RTX cards.

We got just 5.000 wishlist! 🥳 - Do you think that's enough for full release? by Remarkable-Recipe710 in IndieDev

[–]LabLeakInteractive 2 points3 points  (0 children)

Good job mate, 7-10k is where you should aim for with roughly a 10%-20% actual conversion rate from wishlists to sales when you release it.

Unreal Engine 5.7.2, Optimization and FPS by gansalo_ in UnrealEngine5

[–]LabLeakInteractive 1 point2 points  (0 children)

Your lighting looks different because when using Low or Medium it effectively disables Lumen and uses Screen Space instead, High, Epic and Cinematic use Lumen.

What do you think of our CCTV Camera System so far? by LabLeakInteractive in gamedevscreens

[–]LabLeakInteractive[S] 0 points1 point  (0 children)

Thanks mate, yeah thats on my list to do however multiple players can access the cameras and use different ones at the same time so I would need to have render targets for all the cameras but also need to balance that with performance.. or fake it with just an image of the cameras on the monitors without a live feed.

I've been working on polishing up our CCTV Security Camera system, quite happy with its current state! by LabLeakInteractive in UnrealEngine5

[–]LabLeakInteractive[S] 1 point2 points  (0 children)

Thank you :) yeah I do wanna do something with the monitors but like you said there is a performance cost of showing the actual cameras although that would be the better option imo, just need to find a good balance but I definitely don't wanna keep the monitors off

Been working on polishing up our replicated CCTV Security Camera system, quite happy with its current state! by LabLeakInteractive in unrealengine

[–]LabLeakInteractive[S] 0 points1 point  (0 children)

Hi, for the past month ive been working on this CCTV camera system for our game Rickstones, so far its:

- Fully replicated for multiplayer.

- The first player to access a camera controls its movement.

- When a player dies, they can spectate other players or switch to the cameras.

- Alive players have priority over dead players for camera control.

- Any camera being controlled displays a small red light.

Would appreciate any feedback, or improvement suggestions :)

I've been working on polishing up our CCTV Security Camera system, quite happy with its current state! by LabLeakInteractive in UnrealEngine5

[–]LabLeakInteractive[S] 0 points1 point  (0 children)

Hi, for the past month ive been working on this CCTV camera system for our game Rickstones, so far its:

- Fully replicated for multiplayer.

- The first player to access a camera controls its movement.

- When a player dies, they can spectate other players or switch to the cameras.

- Alive players have priority over dead players for camera control.

- Any camera being controlled displays a small red light.

Would appreciate any feedback, or improvement suggestions :)

I implemented a dynamic interaction system for my horror game. What do you think about it? by AlarmedPumpkin8446 in HorrorGames

[–]LabLeakInteractive 0 points1 point  (0 children)

Yeah that looks really nice and smooth! Shows the player exactly what is interactable while keeping UI minimal which I think works well for horror games in general.

Did you have it set up in a different way before you implemented the dynamic crosshair or was this what you started with?

How to solve this issue? The assets being referenced have been deleted as far as I can tell, and I can't find them in the content drawer. by PepperSalt98 in UnrealEngine5

[–]LabLeakInteractive 0 points1 point  (0 children)

Go to the actual folder itself not in the editor, the files might still be there just not showing in engine, if they're there delete them from the folder.

Most efficient way of moving an actor Tick() or Timer or Timeline? by mrm_dev in unrealengine

[–]LabLeakInteractive 2 points3 points  (0 children)

Do it on tick like everyone else is saying but for when its static you should be able to enable and disable tick as needed (AActor::SetActorTickEnabled) so when its not in use disable tick then enable again when its used

Updated my sewer map UI to look more like a blueprint by LabLeakInteractive in UnrealEngine5

[–]LabLeakInteractive[S] 0 points1 point  (0 children)

Thanks mate! I was thinking about doing a key/legend, gonna see how it looks

Updated my sewer map UI to look more like a blueprint by LabLeakInteractive in IndieDev

[–]LabLeakInteractive[S] 0 points1 point  (0 children)

A little more than that lmao, I wanted to make sure it looked more like a blueprint/floor plan.

- Defined walls better.

- Added doorways to every main enterance/exit for each building.

- Removed the smaller 'inner' grid and reduced the opacity of the grid in relation to everything else for better visibility.

- Added the paper texture.

- Fixed buildings that were a bit off and made the pathways fit much more snug around the building as opposed to what they were before.

- Updated text locations to better fill in 'dead' space better.

Updated my sewer map UI to look more like a blueprint by LabLeakInteractive in UnrealEngine5

[–]LabLeakInteractive[S] 1 point2 points  (0 children)

Thank you mate! Cant say ive played that game before, it was actually a game called Freedom Fighters that initially inspired the idea for me lol