game-development

游戏引擎开发 - UE5/Unity/跨引擎架构

View on GitHub
Author 743175724
Namespace @743175724/professional-development-agents
Category game-dev
Version 1.0.0
Stars 0
Downloads 3
self.md verified
Table of content

游戏引擎开发 - UE5/Unity/跨引擎架构

Installation

npx claude-plugins install @743175724/professional-development-agents/game-development

Contents

Folders: agents, commands, skills

Included Skills

This plugin includes 1 skill definition:

unreal-gameplay-framework

Actor、Pawn、GameMode核心类

View skill definition

Unreal Engine Gameplay Framework

Core Classes

Component Pattern

UCLASS()
class AMyCharacter : public ACharacter {
    GENERATED_BODY()

    UPROPERTY(VisibleAnywhere)
    UStaticMeshComponent* MeshComp;

    UPROPERTY(VisibleAnywhere)
    UBoxComponent* TriggerBox;

public:
    AMyCharacter() {
        MeshComp = CreateDefaultSubobject<UStaticMeshComponent>("Mesh");
        TriggerBox = CreateDefaultSubobject<UBoxComponent>("Trigger");
    }
};

Gameplay Ability System

Best Practices

Source

View on GitHub

Tags: game-dev unreal-engineunitygame-developmentue5