Unreal Engine

From Andreida
Revision as of 12:33, 29 February 2016 by Andreas (talk | contribs)

Currently using UE4 (4.10.4)

Links

Blender

C++

Variable names

If you want to use real variable names but have nice names in the UE editor too, then use meta/DisplayName

UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Camera, Meta = (DisplayName = "First Person Camera Component") )
    UCameraComponent* m_pFirstPersonCameraComponent;

Logging

In game output of your logging, like chat text:

if (GEngine)
{
     GEngine->AddOnScreenDebugMessage(-1, 5, FColor::Blue, TEXT("AFPSCharacter is being used") );
}

Misc

Source control

The minimum you have to put under source control:

/Config
/Content
/Source
Project.uproject