Problem with child class

Hi i have problem with child class, becouse in my child class some components are None or some propertise are None

Here i have problem with array elements, in child class i can’t change none to other value
Parent class:
image

Child class:

C++
image

have you set them to be instance editable?

something im not sure about, but I believe blueprintreadwrite is going to prevet editing in the blueprint editor.

Hmm, is the array declared as ‘protected’ or ‘private’? The ‘private’ access modifier will not let you edit those variables/use functions in child classes. So make sure it is set to ‘protected’