Wiki Code Tutorials

[=;1699]
[FONT=Comic Sans MS]New Tutorial: Dynamic Arrays

Dynamic Arrays
https://wiki.unrealengine./Dynamic_Arrays_in_UE4_C%2B%2B

Hee hee your welcome SaxonRah!

UE4 C++ is so much fun!

:slight_smile:

[/]

So essentially i have little bit of code that is
[]
const int MazeSize = 21;
AStaticMeshActor* grid[MazeSize][MazeSize];
[/]
are you telling me i can assign MazeSize’s value inside a blueprint ? O_O ?

EDIT -
Nvm doesnt look like it. If you have any ideas I’d love to know. I probably should just use a vector for x and y instead.