如何在UE4中动态渲染四边形?

时间:2015-04-14 13:00:40

标签: unreal-engine4

对于answers.unrealengine.com,有一些手动的答案,但他们似乎缺乏任何细节或例子。

具体而言,详细地说,如果你想实现一组在3D游戏世界中渲染的动态纹理四边形,你会怎么做?

对于用例,请考虑使用Spriter动画的2dish侧卷轴。 2D动画很容易从XML加载,但是如何在场景中动态渲染这组2D纹理,旋转和缩放四边形?

1 个答案:

答案 0 :(得分:3)

您遇到的问题是产生网格还是获得正确的方向? (即正投影,面向相机)

产生网格很容易,可以通过蓝图或代码完成。

在蓝图中,您将设置某些先决条件,然后根据条件选择生成actor。 实际的编码解决方案看起来大致相同。

如果是关于方向,那么这个答案对你有帮助,可以在UnrealEngine论坛上找到:

https://answers.unrealengine.com/questions/62126/how-do-i-render-a-dynamic-mesh-with-orthographic-p.html

编辑:

经过大量的头发拉动和文档浏览,这里的代码使事情有效。

ADynamicMeshSpawner::ADynamicMeshSpawner()
{
     // Set this actor to call Tick() every frame.  You can turn this off to improve performance if you don't need it.
     PrimaryActorTick.bCanEverTick = true;

    // Using a SphereComponent is not particularly necessary or relevant, but the cube refused to spawn without a root component to attach to, or so I surmise. Yay Unreal. =/
    USphereComponent* CubeComponent = CreateDefaultSubobject<USphereComponent>(TEXT("RootComponent"));
    RootComponent = CubeComponent;
    CubeComponent->InitSphereRadius(40.0f);
    CubeComponent->SetCollisionProfileName(TEXT("Pawn"));

    // Create and position a mesh component so we can see where our cube is
    UStaticMeshComponent* CubeVisual = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("VisualRepresentation"));
    CubeVisual->AttachTo(RootComponent);
    static ConstructorHelpers::FObjectFinder<UStaticMesh> SphereVisualAsset(TEXT("StaticMesh'/Game/StarterContent/Shapes/Shape_Cube.Shape_Cube'"));
    if (SphereVisualAsset.Succeeded())
    {
        CubeVisual->SetStaticMesh(SphereVisualAsset.Object);
        CubeVisual->SetRelativeLocation(FVector(-200.0f, 0.0f, 100.0f));
        CubeVisual->SetWorldScale3D(FVector(2.0f));
    }
    // Create a material to be applied on the StaticMeshComponent
    static ConstructorHelpers::FObjectFinder<UMaterial> Material(TEXT("Material'/Game/StarterContent/Materials/M_Tech_Hex_Tile_Pulse.M_Tech_Hex_Tile_Pulse'"));

    if (Material.Object != NULL)
    {
        TheMaterial = (UMaterial*)Material.Object;
    }

    CubeVisual->SetMaterial(0, TheMaterial);
}

头文件如下所示:

UCLASS()
class MYPROJECT_API ADynamicMeshSpawner : public AActor
{
    GENERATED_BODY()

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

    // Called when the game starts or when spawned
    virtual void BeginPlay() override;

    // Called every frame
    virtual void Tick( float DeltaSeconds ) override;
    // Pointer to the material that needs to be used
    UMaterial* TheMaterial;
};

最终输出在编辑器中显示如下:

A glorious cube spawned from code!

我进行了设置,以便我的班级实例&#39; DynamicMeshSpawner&#39;每当我点击P&#39; P&#39;在键盘上。创建此类的实例时,它会调用构造函数,该构造函数会在应用了材质的情况下生成多维数据集。我使用SpawnActor节点在BluePrints中生成了类实例产生的东西。

Implemented in the level blueprint

产生东西所需的条件显然取决于应用程序。

此方法适用于普通材质,但不适用于材质实例。我相信您必须更改TheMaterial的类型,ConstructorHelper调用以及从材质引用到TheMaterial的转换,以使其正常工作。

我确信这也适用于动画素材,这意味着需要将2D动画转换为某种材质。

也许以下链接会有所帮助。

https://forums.unrealengine.com/showthread.php?6744-Flipbook-material-to-recreate-an-animated-gif

编辑2:

下面是一组非常好的关于如何在Unreal中以程序方式创建对象的示例。将它留给后人,以防万一有人来看。

https://github.com/SiggiG/ProceduralMeshes/