Skip to content
Open

4.17 #41

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Plugins/BrickGrid/BrickGrid.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"VersionName" : "1.0",
"CreatedBy" : "Andrew Scheidecker",
"CreatedByURL" : "http://www.scheidecker.net",
"MinEngineVersion" : 1579795,
"MinEngineVersion" : "4.17",
"Description" : "A component that renders a 3D grid of cubes.",
"CategoryPath" : "Rendering.Components",

Expand All @@ -18,4 +18,4 @@
"BlacklistPlatforms" : [ "HTML5" ]
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ struct FInt3
};

/** A region of the brick grid. */
USTRUCT()
USTRUCT(BlueprintType)
struct FBrickRegion
{
GENERATED_USTRUCT_BODY()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class FBrickChunkVertexFactory : public FLocalVertexFactory
FaceIndex = InFaceIndex;

// Initialize the vertex factory's stream components.
DataType NewData;
FDataType NewData;
NewData.PositionComponent = STRUCTMEMBER_VERTEXSTREAMCOMPONENT(&VertexBuffer, FBrickVertex, X, VET_UByte4N);
NewData.TextureCoordinates.Add(STRUCTMEMBER_VERTEXSTREAMCOMPONENT(&VertexBuffer, FBrickVertex, X, VET_UByte4N));
NewData.ColorComponent = STRUCTMEMBER_VERTEXSTREAMCOMPONENT(&VertexBuffer, FBrickVertex, X, VET_Color);
Expand All @@ -139,7 +139,7 @@ class FBrickChunkVertexFactory : public FLocalVertexFactory
ENQUEUE_UNIQUE_RENDER_COMMAND_TWOPARAMETER(
InitBrickChunkVertexFactory,
FBrickChunkVertexFactory*,VertexFactory,this,
DataType,NewData,NewData,
FDataType,NewData,NewData,
{
VertexFactory->SetData(NewData);
});
Expand All @@ -149,7 +149,7 @@ class FBrickChunkVertexFactory : public FLocalVertexFactory
{
return IsStaticBatchVisible(View.ViewMatrices.GetViewOrigin(),Batch) ? 1 : 0;
}
virtual uint64 GetStaticBatchElementShadowVisibility(const class FSceneView& View, const FLightSceneProxy* LightSceneProxy, const struct FMeshBatch* Batch) const override
virtual uint64 GetStaticBatchElementShadowVisibility(const class FSceneView& View, const FLightSceneProxy* LightSceneProxy, const struct FMeshBatch* Batch)
{
return IsStaticBatchVisible(LightSceneProxy->GetPosition(),Batch) ? 1 : 0;
}
Expand Down
4 changes: 2 additions & 2 deletions Plugins/BrickTerrainGeneration/BrickTerrainGeneration.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"VersionName" : "1.0",
"CreatedBy" : "Andrew Scheidecker",
"CreatedByURL" : "http://www.scheidecker.net",
"MinEngineVersion" : 1579795,
"MinEngineVersion" : "4.17",
"Description" : "A component that generates procedural terrain for a BrickGrid",
"CategoryPath" : "Rendering.Components",

Expand All @@ -18,4 +18,4 @@
"BlacklistPlatforms" : [ "HTML5" ]
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ public BrickTerrainGeneration(ReadOnlyTargetRules Target) : base(Target)
"BrickGrid"
}
);

PrivateDependencyModuleNames.AddRange(
new string[]
{
"SimplexNoise"
"SimplexNoise",
"BrickGrid"
}
);
}
Expand Down
4 changes: 2 additions & 2 deletions Plugins/ConsoleAPI/ConsoleAPI.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"VersionName" : "1.0",
"CreatedBy" : "Andrew Scheidecker",
"CreatedByURL" : "http://www.scheidecker.net/",
"EngineVersion" : 1579795,
"EngineVersion" : "4.17",
"Description" : "A plugin that allows Blueprint to register/deregister console commands.",
"Category" : "Blueprint",

Expand All @@ -17,4 +17,4 @@
"Type" : "Runtime"
}
]
}
}
4 changes: 2 additions & 2 deletions Plugins/SimplexNoise/SimplexNoise.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"VersionName" : "1.0",
"CreatedBy" : "Andrew Scheidecker",
"CreatedByURL" : "http://www.scheidecker.net/",
"EngineVersion" : 1579795,
"EngineVersion" : "4.17",
"Description" : "A plugin that provides a simplex noise function that is callable from Blueprint.",
"Category" : "Blueprint",

Expand All @@ -17,4 +17,4 @@
"Type" : "Runtime"
}
]
}
}