#UnrealEngine4

🏳️‍🌈🎃🇧🇷Luana🇧🇷🎃🏳️‍🌈luana@wetdry.world
2025-03-12

Are there any resources out there on modding Unreal Engine 4 games?

I know it’s relatively easy to decrypt the asset files and stuff, and maybe even to decompile the game, but then how would I get the edited stuff back into the game (and in a distributable way)?

Should I expect the game to be able to load the edited asset file without encryption alongside to the encrypted ones, since I probably wouldn’t be able to encrypt it with the same key as them, or nah?

#GameModding #UnrealEngine #UE4 #UnrealEngine4 #Gamedev

Sam Seltzer-Johnstonsbseltzer@peoplemaking.games
2025-01-16

Backported latest BlueprintAssist from UE 5.5 to UE 4.25 for giggles and shits as a test case for my VersionMacros project. Wasn't too bad. Automatic TObjectPtr conversions save the day! github.com/sbseltzer/VersionMa

#UnrealEngine #UnrealEngine4 #unrealengine5 #UE4 #UE5 #UnrealDev #GameDev #IndieGameDev

Sam Seltzer-Johnstonsbseltzer@peoplemaking.games
2025-01-12

I've made some updates to this github.com/sbseltzer/VersionMa

Now auto-backports TObjectPtr to raw pointers in UE4 builds. Also allows you to define the fake macro replacements in an actual header file instead of the sketchy prebuild configuration.

#UnrealEngine #UnrealEngine4 #UnrealEngine5 #UE4 #UE5 #GameDev #IndieGameDev

Sam Seltzer-Johnstonsbseltzer@peoplemaking.games
2025-01-07

Hey #UnrealEngine code plugin devs, I'm releasing the code I use for my plugins to make #UE4 & #UE5 support a lot easier.

github.com/sbseltzer/VersionMa

Includes better macros for checking engine version and automatic prebuild scripts to work around the preprocessor limitations in UnrealHeaderTool, allowing you to `#if` out blocks of code that contain Unreal "magic macros". This allows you to maintain backwards compatibility without forsaking modern Unreal features. Includes installation instructions and examples of using it.

Feedback is appreciated! I'd also appreciate Linux users to verify it works for them.

#GameDev #UnrealEngine4 #UnrealEngine5 #UnrealDev #IndieGameDev #IndieDev #Programming #CPP

2024-07-19

Mechwarrior: Kampfkolosse des 31. Jahrhunderts - von Timeras

Wenn ihr auf Action, Explosionen, tonnenschwere Kampf“roboter“ und eine offene Spielwelt steht, in der ihr entscheidet, wohin die Reise geht, dann seid ihr bei Mechwarrior genau richtig.

https://www.videospielgeschichten.de/mechwarrior-kampfkolosse-des-31-jahrhunderts/

#BattleTech #Mechwarrior #Mercenaries #PiranhaGames #Simulation #UnrealEngine4

:rss: 4Gamer.net − 注目の記事のみ4gamer@rss-mstdn.studiofreesia.com
2024-05-27

ゲームづくり初心者からプロまで楽しめるイベント「ゲームメーカーズ スクランブル2024」レポート。さまざまな講演や制作体験を無料で実施
4gamer.net/games/210/G021013/2

#4gamer #Unreal_Engine #フォートナイト #アンリアルエンジン #Unreal_Technology #Unreal_Engine_4 #UnrealEngine4 #UE4

:rss: 4Gamer.net − 注目の記事のみ4gamer@rss-mstdn.studiofreesia.com
2024-04-02
:rss: 4Gamer.net − 注目の記事のみ4gamer@rss-mstdn.studiofreesia.com
2024-03-22

【GDC 2024】「Unreal Engine 5.4」でより美しく効率的なゲーム開発を。Epic Gamesが独自イベントで多数の新要素を紹介
4gamer.net/games/210/G021013/2

#4gamer #Unreal_Engine #フォートナイト #アンリアルエンジン #Unreal_Technology #Unreal_Engine_4 #UnrealEngine4 #UE4 #GDC_2024 #Game_Developers_Conference

:rss: 4Gamer.net − 注目の記事のみ4gamer@rss-mstdn.studiofreesia.com
2024-03-21

【GDC 2024】「Unreal Engine 5.4」でより美しく効率的なゲーム開発を。Epic Gamesが独自イベントで多数の新要素を紹介
4gamer.net/games/210/G021013/2

#4gamer #Unreal_Engine #フォートナイト #アンリアルエンジン #Unreal_Technology #Unreal_Engine_4 #UnrealEngine4 #UE4 #GDC_2024 #Game_Developers_Conference

:rss: 4Gamer.net − 注目の記事のみ4gamer@rss-mstdn.studiofreesia.com
2024-02-16

今回のテーマは「おす」。Unreal Engineを使用したゲーム制作コンテスト「第21回UE5ぷちコン」のエントリー受付がスタート
4gamer.net/games/210/G021013/2

#4gamer #Unreal_Engine #アンリアルエンジン #Unreal_Technology #Unreal_Engine_4 #UnrealEngine4 #UE4

L'année dernière, j'ai essayé l'Unreal Engine 4 pour la première fois de ma vie, pour tester la 3D. Et vous savez ce que j'ai essayé de modéliser ??

Des boites MEGADRIVE !!! Bhé oui !

#Megadrive #Sega #UnrealEngine #Cover #BoxMegadrive #UnrealEngine4

Une modélisation en 3D sous Unreal Engine 4 de 3 boites de jeux Megadrive, dont Tiny Toon Buster's Hidden Treasure, Ecco The Dolphin et Castle of Illusion.
Sam Seltzer-Johnstonsbseltzer@peoplemaking.games
2023-07-12

#UnrealTips: Toggle Node Purity! Gets and Casts have both pure and impure forms. Right click the node and you'll see an option for it.

Stop using IsValid where possible. Convert get nodes to impure get nodes if you need to branch on their validity.

Need to check if something can be casted as a bool? Or maybe you don't care if the cast fails? Convert it to a pure cast node!

Performance Note: Impure nodes get re-evaluated for each exec node input pin that depends upon them, so if the outputs of the pure node are relatively expensive (such as casting or non-trivial functions) and getting reused a lot in the same execution chain, consider using a macro to explicitly cache it (I've added an image), or just stick with the impure cast.

I'm not saying you should always change node purity, but doing so can make your graphs a lot more readable!

(and don't forget to boost if you want others to see this!)

#GameDev #UnrealDev #Blueprint #UE #UnrealEngine #UE4 #UE5 #UnrealEngine4 #UnrealEngine5

Drop down menu on a cast node highlighting the "Convert to pure cast" optionDrop down menu for a get node highlighting the "Convert to Validated Get" option.Screenshot of an impure get node and a pure cast nodeA useful macro for caching a local temp variable if you need to optimize the use of a pure node.

When you think you start have some idea about how materials works in unreal engine... Bam! Substrate Materials! 🙃 #UnrealEngine5 #Indiedev

Found this little video with the basics:
youtube.com/watch?v=fKIfWF2mXx

#UE4 #UE5 #UnrealEngine #UnrealEngine4 #UnrealEngine5 #Gamedev #Indiedev

Did more level design to get some fun and take some nice screenshots 😲

#UE4 #UE5 #UnrealEngine #UnrealEngine4 #UnrealEngine5 #Gamedev #Indiedev

Doing some donuts around a new prop like a master. Look that donuts! 😎

#UE4 #UE5 #UnrealEngine #UnrealEngine4 #UnrealEngine5 #Gamedev #Indiedev

Did some visuals tweaks to give a more "sunny" feeling and increasing the overall detail.

#UE4 #UE5 #UnrealEngine #UnrealEngine4 #UnrealEngine5 #Gamedev #Indiedev

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst