Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

unreal engine c++

#include "GameFramework/Actor.h"
#include "MyActor.generated.h"

UCLASS()
class AMyActor : public AActor
{
    GENERATED_BODY()

public:
    // Sets default values for this actor's properties
    AMyActor();

    // Called every frame
    virtual void Tick( float DeltaSeconds ) override;

protected:
    // Called when the game starts or when spawned
    virtual void BeginPlay() override;
};
Source by docs.unrealengine.com #
 
PREVIOUS NEXT
Tagged: #unreal #engine
ADD COMMENT
Topic
Name
1+9 =