Interestingly enough... I don't know if you noticed but a lot of details were lost on #UE5 renders. And I discovered why. I accidentally forced #SubstancePainter to export png in 16 bit. So remember to always use 8bit pngs.
Interestingly enough... I don't know if you noticed but a lot of details were lost on #UE5 renders. And I discovered why. I accidentally forced #SubstancePainter to export png in 16 bit. So remember to always use 8bit pngs.
Stumbled upon this today, you can safely remove elements from a TMap by using the RemoveCurrent() function of its iterator implementation !
Useful to remove stale delegates while iterating for execution as an example.
Another useful #unrealengine plugin if you want to use Editor icons in Editor Utility Widget Blueprint instead of Slate. Credits to @ryan_dowlingsoka
https://github.com/Ryan-DowlingSoka/RedTechArtTools/wiki/Editor-Icon-Widget
#UETips #UETip #UE5 #ue4 #unreal4 #Unreal5 #unrealeditor #unrealdev
New Interchange pipeline in #UnrealEngine lets you define your own ways of importing assets. If you go to Project Settings -> Engine -> Interchange category, you can add custom pipelines into Pipeline Stacks.
Over time this one turned out as a best practice for me when it comes to working with actor references in blueprints in #UnrealEngine. The macro is setup quickly and can be extended later on easily. Check it out! 💥
💡 Follow for more #UnrealTips
Quick #UETip. Having performance issues in Editor viewport? Adjust the resolution and screen percentage for Editor Viewport from Editor Preferences -> Performance -> Viewport Resolution category.
Ideally, variables should not be accessed by external objects directly. Instead, Getter and Setter functions should be established to retrieve and set the value.
This massively helps with future extendibility and debugging.
A feature that snuck past a lot of folks in UE5.1 is that you can now enable the Waveform Editor plugin to chop up/clean up raw audio in the engine. It's a little thing but it's nice having one less excuse to leave the engine to clean something up! #UETips
A good trick I've enjoyed lately when developing a new event or API that I'm unsure what the signature should look like.
Wrap your args in a struct ! The arguments order stops mattering, makes it easy to add or swap out new parameters !
Use the stat unit console command to display helpful performance statistics within the viewport.
Alternatively, you can use the stat unitgraph console command to display those same metrics along with a live graph of the metrics.
Utilize the Camera Position material node as an anchor for your masks. For example, if you pair it with the Absolute World Position, Camera Direction Vector, and the Sphere Mask nodes, you can mask out a consistent location based on the forward vector of the camera in world-space.
This masking method is helpful for adjusting the World Position Offset of foliage, fading out walls when the character is behind them, etc.
Info + Example
https://unrealdirective.com/tip/camera-based-masking
Divide the final emissive color by the EyeAdaption node to keep the materials emissive consistent across different exposure levels.
You can Shift-RMB to copy and Shift-LMB to paste in #UnrealEngine Details Panel!? #UETips
(Via @Sindriava)
2) Using Python and a small workaround in C++, you can create simple nodes to repopulate StringTables and Datatables. I used this in the past to allow automatic imports from designers spreadsheets #UETips #gamedev #UE5
https://dev.epicgames.com/community/snippets/bxl/populating-stringtables-and-datatables-with-python-and-a-little-c-function