How to make an @editable of just a single creative_prop_asset ?

Hello there, I am attempting to make an @editable variable of type creative_prop_asset, but when I type the following code in it gives me the error “Invalid access of epic_internal”

@editable var Prop : creative_prop_asset = creative_prop_asset{}

The variable is supposed to be a single parameter of creative_prop_asset, and I know you could do this: (@editable var Prop : []creative_prop_asset = array{}) to get an editable of array of creative_prop_asset but I wish to not have an array for this variable.

You can only assign it to DefaultCreativePropAsset

meatandmeat is correct, but to give a specific example:

    @editable
    CardPropAssets: creative_prop_asset = DefaultCreativePropAsset

That should give you what you’re looking for.

1 Like