// This function is only used within constructors to create new instances of our components. Outside of the constructor we use NewObject<T>(); CameraComp = CreateDefaultSubobject<UCameraComponent>("CameraComp"); // We can now safely call functions on the component CameraComp->SetupAttachment(SpringArmComp);
// Called to bind functionality to input voidASCharacter::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent) { Super::SetupPlayerInputComponent(PlayerInputComponent);
APawn* MyPawn = GetPawn(); ASCharacter* MyCharacter = Cast<ASCharacter>(MyPawn); if (MyCharacter) // verify the cast succeeded before calling functions { // Respawn() is defined in ASCharacter, and doesn't exist in the base class APawn. Therefore we must first Cast to the appropriate class. MyCharacter->Respawn(); }
// Add interface functions to this class. This is the class that will be inherited to implement this interface. public: UFUNCTION(BlueprintCallable, BlueprintNativeEvent) voidInteract(APawn* InstigatorPawn); };
// 实现接口 UCLASS() classACTIONROGUELIKE_API ASItemChest : public AActor, public ISGameplayInterface // 'inherit' from interface { GENERATED_BODY()
// declared as _Implementation since we defined the function in interface as BlueprintNativeEvent voidInteract_Implementation(APawn* InstigatorPawn); }
// 是否实现接口 if (MyActor->Implements<USGameplayInterface>()) { }
// 调用接口 ISGameplayInterface::Execute_Interact(MyActor, MyParam1); // 还有其他方法可以调用此函数,例如将 Actor 转换为接口类型并直接调用该函数。 // 但是,当接口在 Blueprint 而不是 C++ 中添加/继承到您的类时,这完全会失败,因此建议完全避免这种情况。
UPROPERTY(EditAnywhere) // Expose to Blueprint TSubclassOf<AProjectileActor> ProjectileClass; // The class to assign in Blueprint, eg. BP_MyMagicProjectile.
// The simple logging without additional info about the context UE_LOG(LogAI, Log, TEXT("Just a simple log print")); // Putting actual data and numbers here is a lot more useful though! UE_LOG(LogAI, Warning, TEXT("X went wrong in Actor %s"), *GetName());
您可以通过 GetDefault<T> 轻松获取 C++ 中的 CDO。您应该注意不要意外地对 CDO 进行更改,因为这会渗透到为该类创建的任何新实例中。
1 2 3 4 5
// Example from: SSaveGameSubsystem.cpp (in Initialize()) const USSaveGameSettings* Settings = GetDefault<USSaveGameSettings>();
// Access default value from class CurrentSlotName = Settings->SaveSlotName;
Asserts (Debugging) 断言
1 2 3 4 5 6 7
check(MyValue == 1); // treated as fatal error if statement is 'false' check(MyActorPointer);
// convenient to break here when the pointer is nullptr we should investigate immediately if (ensure(MyActorPointer)) // non-fatal, execution is allowed to continue, useful to encapsulate in if-statements { }