
Unreal C++ for Unity Developers #4
Can You Read This Code? When you open inventory system code in an Unreal project, you see something like this. // InventoryComponent.h UCLASS() class MYGAME_API UInventoryComponent : public UActo...

Can You Read This Code? When you open inventory system code in an Unreal project, you see something like this. // InventoryComponent.h UCLASS() class MYGAME_API UInventoryComponent : public UActo...

Introduction This document is the 1st part of the Internet Infrastructure — A Client Developer’s Curiosity series. As game developers, we are quite familiar with how the rendering pipeline wo...

Introduction On February 5, 2026, Anthropic released Claude Opus 4.6. In my previous post (AI Usage for Game Developers Based on Real Data), I shared 47 days of usage data. The first half of that ...

Can You Read This Code? When you open code for a character equipping a weapon in an Unreal project, you see something like this. // MyCharacter.cpp void AMyCharacter::EquipWeapon(AWeapon* NewWeap...

Introduction On January 5, 2026, I fully integrated Claude Code into a Unity mobile game project. This isn’t just another “AI writes code” marketing pitch; I’m sharing quantitative data from 47 da...

Can You Read This Code? When you create a new class in an Unreal project, two files are created. // ─── MyWeapon.h ─── #pragma once #include "CoreMinimal.h" #include "GameFramework/Actor.h" #inc...

Can You Read This Code? When you first open an Unreal project, you encounter code like this: // MyCharacter.h #pragma once #include "CoreMinimal.h" #include "GameFramework/Character.h" #include "...

I. Why a Custom Tool Was Necessary The Pain of Manually Managing Thousands of Assets Developing a mobile survivor-genre game, the number of assets managed via Addressables grew exponentially. Cha...

Introduction For game developers, shaders often feel like a “realm of magic.” You adjust a slider in Unity’s Material Inspector and objects shimmer, change color, or become translucent—yet what ex...

What Is Claude Code? Claude Code is an agentic coding tool developed by Anthropic. It runs directly in the terminal (CLI) and can handle almost every development task through natural language, i...